-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpgisbert-fromRDFtoJSON-LD.jsonld
More file actions
41 lines (41 loc) · 1.45 KB
/
pgisbert-fromRDFtoJSON-LD.jsonld
File metadata and controls
41 lines (41 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"@context": {
"pred": "http://www.w3.org/namespaces/pred#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"pc": "http://www.w3.org/namespaces/ontology/computer#",
"sns": "http://www.w3.org/namespaces/ontology/sensor#",
"class": "http://www.w3.org/namespaces/ontology/class#",
"msr": "http://www.w3.org/namespaces/ontology/measurement#",
"user": "http://www.w3.org/namespaces/ontology/user#"
},
"@graph": [
{
"@id": "class:Class01",
"pred:includes": [
{
"@id": "sensor:Sensor029",
"pred:hasMeasurement": {
"@id": "msr:Measurement8401",
"pred:hasTemperature": {
"@value": "29",
"@type": "xsd:integer"
},
"pred:atTime": {
"@value": "2010-06-12T10:00:12",
"@type": "xsd:dateTime"
}
}
},
{
"@id": "pc:Computer101",
"pred:hasOwner": {
"@id": "user:User10A",
"pred:hasName": {
"@value": "Pedro"
}
}
}
]
}
]
}