forked from FacultadInformatica-LinkedData/Curso2022-2023
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlvaroAlonso-0-fromRDFtoJSON-LD.jsonld
More file actions
44 lines (42 loc) · 1.01 KB
/
Copy pathAlvaroAlonso-0-fromRDFtoJSON-LD.jsonld
File metadata and controls
44 lines (42 loc) · 1.01 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
42
43
44
{
"@context":{
"student":"https://oeg.fi.upm.es/ontologies/student/",
"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",
"hasTemperature":{
"@type":"temperature",
"temperature":"29"
},
"atTime":{
"@type":"time",
"time":"2010-06-12T12:00:12"
}
}
},
{
"@id":"items:/Computer101",
"@type":"items",
"hasOwner":{
"@id":"student:User10A",
"@type":"student",
"name":"Pedro"
}
}
]
}