forked from FacultadInformatica-LinkedData/Curso2021-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDanielRodriguezRguez.jsonld
More file actions
44 lines (44 loc) · 1.09 KB
/
Copy pathDanielRodriguezRguez.jsonld
File metadata and controls
44 lines (44 loc) · 1.09 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":{
"xsd":"http://www.w3.org/2001/XMLSchema#",
"clase": "http://www.ontologies.org/ontologies/Class#",
"includes":"clase:includes",
"hasOwner":"clase:hasOwner",
"hasMeasurement":"clase:hasMeasuremet",
"hasTemperature":"clase:hasTemperature",
"atTime":"clase:atTime",
"hasName":"clase:hasName"
},
"@id":"clase:Class01",
"@type":"clase:Class",
"includes":[
{
"@id":"clase:Sensor029",
"@type":"clase:Sensor",
"hasMeasurement":{
"@id":"Measurement8401",
"@type":"clase:Measurement",
"hasTemperature":{
"@type":"xsd:long",
"@value":"29"
},
"atTime":{
"@type":"xsd:dateTime",
"@value":"2010-06-12T12:00:12"
}
}
},
{
"@id":"clase:Computer101",
"@type":"clase:Computer",
"hasOwner":{
"@id":"User10A",
"@type":"clase:User",
"hasName":{
"@type":"xsd:string",
"@value":"Pedro"
}
}
}
]
}