forked from fluidos-project/REAR-data-models
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnode-identity.schema.json
More file actions
35 lines (35 loc) · 893 Bytes
/
node-identity.schema.json
File metadata and controls
35 lines (35 loc) · 893 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "NodeIdentity",
"properties": {
"Domain": {
"type": "string",
"description": "Domain of the node."
},
"NodeID": {
"type": "string",
"description": "ID of the node."
},
"IP": {
"type": "string",
"description": "IP of the node."
},
"AdditionalInformation": {
"type": "object",
"description": "Additional information about the node.",
"properties": {
"LiqoID": {
"type": "string",
"description": "Liqo ID of the node."
}
}
}
},
"required": [
"Domain",
"NodeID",
"IP"
],
"additionalProperties": false
}