-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathvehicleRange.json
37 lines (37 loc) · 1000 Bytes
/
vehicleRange.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
{
"id": "vehicleRange",
"version": 1,
"status": "proposed",
"name": "Vehicle Range",
"ephemeral": false,
"attributes": {
"estimatedRemainingRange": {
"schema": {
"title": "Distance",
"type": "object",
"properties": {
"value": {
"title": "PositiveNumber",
"type": "number",
"minimum": 0
},
"unit": {
"type": "string",
"enum": [
"mi",
"km",
"m"
]
}
},
"additionalProperties": false,
"required": [
"value",
"unit"
]
},
"enumCommands": []
}
},
"commands": []
}