generated from FacultadInformatica-LinkedData/Template-Curso
-
Notifications
You must be signed in to change notification settings - Fork 98
Expand file tree
/
Copy pathGNajeral-fromRDFtoJSON-LD.jsonld
More file actions
49 lines (46 loc) · 1.35 KB
/
GNajeral-fromRDFtoJSON-LD.jsonld
File metadata and controls
49 lines (46 loc) · 1.35 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
{
"@context": {
"c": "http://www.tarea2/class01",
"s": "http://www.tarea2/sensor029",
"pc": "http://www.tarea2/computer101",
"m": "http://www.tarea2/measurement8401",
"u": "http://www.tarea2/user10A",
"xsd": "http://www.w3.org/2001/XMLSchema#"
},
"@id": "c:class01",
"@type" : "c",
"c:includes": [
{
"@id": "s:sensor029",
"@type": "s",
"s:hasMeasurement":
{
"@id": "m:measurement8401",
"@type": "m",
"m:hasTemeperature":
{
"@id": "xsd:29",
"@type": "xsd:integer"
},
"m:atDate":
{
"@id": "xsd:2010-06-12T12:00:12",
"@type": "xsd:date"
}
}
},
{
"@id": "pc:computer101",
"@type": "pc",
"pc:hasOwner":
{
"@id": "u:user10A",
"@type": "u",
"u:hasName":
{
"@id": "pedro"
}
}
}
]
}