generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathAlbertoguz-fromRDFtoJSON-LD
More file actions
42 lines (39 loc) · 926 Bytes
/
Albertoguz-fromRDFtoJSON-LD
File metadata and controls
42 lines (39 loc) · 926 Bytes
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
42
{
"@context":{
"people":"https://oeg.fi.upm.es/ontologies/people/",
"class":"https://oeg.fi.upm.es/ontologies/classes/",
"items":"https://oeg.fi.upm.es/ontologies/items/",
"rdfs":"http://www.w3.org/2000/01/rdf-schema#",
"xsd":"http://www.w3.org/2001/XMLSchema#",
"actions":"https://oeg.fi.upm.es/ontologies/actions/",
"temperature":"xsd:float",
"time":"xsd:dateTime",
"name":"rdfs:label"
},
"@id":"class:/class01",
"@type":"class",
"includes":[
{
"@id":"items:Sensor029",
"@type":"items",
"hasMeasurement":{
"@id":"measurement:/measurement8401",
"@type":"measurement",
"temperature":29,
"atTime":{
"@type:"time",
"time:"2010-06-12T12:00:12"
}
}
},
{
"@id":"items:/computer101",
"@type":"items",
"hasOwner":{
"@id":"people:User10A",
"@type":"people",
"name":"Pedro"
}
}
]
}