-
Notifications
You must be signed in to change notification settings - Fork 0
/
template_entity.json
127 lines (127 loc) · 3.97 KB
/
template_entity.json
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"entities": [
{
"id": "<id>",
"type": "Entity",
"name": {
"type": "Property",
"value": "Name of my entity"
},
"description": {
"type": "Property",
"value": "A short description of my entity"
},
"stationCode": {
"type": "Property",
"value": "BSS002JAWM"
},
"ammonium": [
{
"type": "Property",
"value": 0.34,
"observedAt": "2023-04-01T12:00:00Z",
"unitCode": "M1",
"datasetId": "urn:ngsi-ld:Dataset:Bottom"
},
{
"type": "Property",
"value": 0.41,
"observedAt": "2023-04-01T13:00:00Z",
"unitCode": "M1",
"datasetId": "urn:ngsi-ld:Dataset:Surface"
}
],
"dissolvedOxygen": {
"type": "Property",
"sandreCode": {
"type": "Property",
"value": "1311"
},
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z",
"unitCode": "M1"
},
"waterTemperature": [
{
"type": "Property",
"value": 10.9,
"observedAt": "2022-12-09T13:40:00Z",
"unitCode": "CEL",
"datasetId": "urn:ngsi-ld:Dataset:Bottom"
},
{
"type": "Property",
"value": 12.9,
"observedAt": "2022-12-09T13:40:00Z",
"unitCode": "CEL",
"datasetId": "urn:ngsi-ld:Dataset:Surface"
}
],
"salinity": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"airTemperature": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"nitrate": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"precipitation": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"windDirection": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"windSpeed": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"norovirus": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"conductivity": {
"type": "Property",
"value": 8.9,
"observedAt": "2023-04-01T10:00:00Z"
},
"servesDataset": {
"type": "Relationship",
"object": "urn:ngsi-ld:Dataset:SurfaceWaterMonitoring"
},
"location": {
"type": "GeoProperty",
"value": {
"type": "Point",
"coordinates": [
3.53452158,
43.48562782
]
}
},
"address": {
"type": "JsonProperty",
"json": {
"addressCountry": "FR",
"addressLocality": "Nantes"
}
},
"dataProvider": {
"type": "Property",
"value": "My-Sensor"
}
}
]
}