generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy patharuizgar21-fromRDFtoJSON-LD.jsonld
More file actions
46 lines (46 loc) · 1.21 KB
/
aruizgar21-fromRDFtoJSON-LD.jsonld
File metadata and controls
46 lines (46 loc) · 1.21 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
45
46
{
"@context": {
"pr": "http://ex.org/#",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"pr:hasTemperature": {
"@type": "xsd:integer"
},
"pr:atTime": {
"@type": "xsd:dateTime"
},
"pr:hasName": {
"@type": "xsd:string"
},
"pr:Class01": "http://ex.org/#Class01",
"pr:Computer101": "http://ex.org/#Computer101",
"pr:Measurement8401": "http://ex.org/#Measurement8401",
"pr:Sensor029": "http://ex.org/#Sensor029",
"pr:User10A": "http://ex.org/#User10A",
"pr:includes": "http://ex.org/#includes",
"pr:hasOwner": "http://ex.org/#hasOwner",
"pr:hasMeasurement": "http://ex.org/#hasMeasurement"
},
"@id": "class01",
"@type": "class",
"@includes": [
{
"@id": "Sensor029",
"@type": "sensor",
"hasMeasurement": [
{
"@id": "Measurement8401",
"@type": "measurement",
"atTime": [{ "@id": "2010-06-12T12:00:12", "@type": "time" }],
"hasTemperature": [{ "@type": "temperature", "@id": "29" }]
}
]
},
{
"@type": "computer",
"@id": "Computer101",
"hasOwner": [
{ "@type": "user", "@id": "User10A", "hasName": [{ "@id": "Pedro" }] }
]
}
]
}