forked from FacultadInformatica-LinkedData/Curso2021-2022
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMarcoAS99-fromRDFtoJSON-LD.jsonld
More file actions
65 lines (65 loc) · 1.69 KB
/
Copy pathMarcoAS99-fromRDFtoJSON-LD.jsonld
File metadata and controls
65 lines (65 loc) · 1.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"@context": {
"rec": "http://www.oeg-upm.net/Tarea01/Recursos/",
"xsd": "http://www.w3.org/2001/XMLSchema#",
"voc": "http://www.oeg-upm.net/Tarea01/Vocab/",
"hasName": "voc:hasName",
"includes": "voc:includes",
"hasMeasurement": "voc:hasMeasurement",
"atTime": "voc:atTime",
"hasTemperature": "voc:hasTemperature",
"hasOwner": "voc:hasOwner"
},
"rec": [
{
"@id": "rec:Class01",
"@type": "rec",
"includes": [
{
"@id": "rec:Computer101",
"@type": "rec"
},
{
"@id": "rec:Sensor029",
"@type": "rec"
}
]
},
{
"@id": "rec:Measurement8401",
"@type": "rec",
"hasTemperature": {
"@value": 29,
"@type": "xsd:integer"
},
"atTime": {
"@value": "2010-06-12T12:00:12",
"@type": "xsd:dateTime"
}
},
{
"@id": "rec:Computer101",
"@type": "rec",
"hasOwner": {
"@id": "rec:User10A",
"@type": "rec"
}
},
{
"@id": "rec:Sensor029",
"@type": "rec",
"hasMeasurement": {
"@id": "rec:Measurement8401",
"@type": "rec"
}
},
{
"@id": "rec:User10A",
"@type": "rec",
"hasName": {
"@value": "Pedro",
"@type": "xsd:string"
}
}
]
}