generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathJAVSIE-fromRDFtoJSON-LD.jsonld
More file actions
40 lines (40 loc) · 1.07 KB
/
JAVSIE-fromRDFtoJSON-LD.jsonld
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"@context":{
"ppl":"https://oeg.fi.upm.es/ontologies/people/",
"cls":"https://oeg.fi.upm.es/ontologies/classes/",
"itms":"https://oeg.fi.upm.es/ontologies/items/",
"rdfs":"http://www.w3.org/2000/01/rdf-schema#",
"xsd":"http://www.w3.org/2001/XMLSchema#",
"act":"https://oeg.fi.upm.es/ontologies/actions/",
"temperature":"xsd:float",
"time":"xsd:dateTime",
"name":"rdfs:label"
},
"@id":"cls:Class01",
"@type":"cls",
"act:includes":[
{
"@id":"itms:Sensor029",
"@type":"itms",
"act:hasMeasurement":{
"act:hasTemperature":{
"temperature":"29.00"
},
"act:atTime":{
"time":"2010-06-12T12:00:12"
}
}
},
{
"@id":"itms:Computer101",
"@type":"itms",
"act:hasOwner":{
"@id":"ppl:alumnos/Pedro",
"@type":"ppl",
"act:hasName":{
"name":"Pedro"
}
}
}
]
}