-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschema.json
More file actions
39 lines (39 loc) · 1.43 KB
/
schema.json
File metadata and controls
39 lines (39 loc) · 1.43 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
{
"$schema": "http://json-schema.org/schema#",
"$id": "https://smart-data-models.github.io/data-models/specs/WaterNetwork/Pattern/schema.json",
"title": "WaterNetwork - Pattern",
"description": "This entity contains a harmonised description of a generic pattern made for the Water Network Management domain. This entity is primarily associated with the water management vertical and related IoT applications.",
"type": "object",
"definitions": {},
"allOf": [
{
"properties": {
"type": {
"type": "string",
"enum": [
"Pattern"
],
"description": "NGSI-LD Entity Type"
},
"multipliers": {
"$ref": "../WaterNetworkManagement-schema.json#/definitions/ngsildProperty"
},
"timeStep": {
"$ref": "../WaterNetworkManagement-schema.json#/definitions/ngsildProperty"
},
"description": {
"$ref": "../WaterNetworkManagement-schema.json#/definitions/ngsildProperty"
},
"tag": {
"$ref": "../WaterNetworkManagement-schema.json#/definitions/ngsildProperty"
}
}
}
],
"required": [
"id",
"type",
"multipliers",
"timeStep"
]
}