-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathLocation_Subject.json
More file actions
48 lines (48 loc) · 995 Bytes
/
Location_Subject.json
File metadata and controls
48 lines (48 loc) · 995 Bytes
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
{
"@context": {
"@vocab": "http://www.example.org/data-vocabulary#",
"observedAt": {
"@id": "http://www.w3.org/2005/Incubator/ssn/ssnx/ssn#observationSamplingTime",
"@type": "http://www.w3.org/2001/XMLSchema#dateTime"
},
"hasLocation": {
"@id": "http://example.org/property-vocabulary#hasLocation",
}
},
"@graph": [
{
"@id": "_:1",
"observedAt": "2015-01-01T01:00:00",
"@graph": [
{
"@id": "_:Subject_A",
"hasLocation": "X"
}
]
},
{
"@id": "_:2",
"observedAt": "2015-01-01T01:01:00",
"@graph": [
{
"@id": "_:Subject_A",
"hasLocation": "X"
},
{
"@id": "_:Subject_B",
"hasLocation": "Y"
}
]
},
{
"@id": "_:3",
"observedAt": "2015-01-01T01:02:00",
"@graph": [
{
"@id": "_:Subject_B",
"hasLocation": "X"
}
]
}
]
}