generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 100
/
Copy pathjessicagarciaperez-fromRDFtoJSON-LD.jsonld
43 lines (43 loc) · 1.39 KB
/
jessicagarciaperez-fromRDFtoJSON-LD.jsonld
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
{
"@context": {
"base": "http://example.org/assignment2a#",
"vocab": "http://example.org/assignment2a/vocab#",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@id": "http://example.org/assignment2a/Class01",
"@type": "base:Class",
"vocab:includes": [
{
"@id": "http://example.org/assignment2a/Sensor029",
"@type": "base:Sensor",
"vocab:hasMeasurement": [
{
"@id": "http://example.org/assignment2a/Measurement8401",
"@type": "base:Measurement",
"vocab:hasTemperature": {
"@type": "xsd:Integer",
"@value": "29"
},
"vocab:atTime": {
"@type": "xsd:DateTime",
"@value": "2010-06-12T12:00:12"
}
}
]
},
{
"@id": "http://example.org/assignment2a/Computer101",
"@type": "base:Computer",
"vocab:hasOwner": [
{
"@id": "http://example.org/assignment2a/User10A",
"@type": "base:User",
"vocab:hasName": {
"@type": "xsd:String",
"@value": "Pedro"
}
}
]
}
]
}