forked from MassRobotics-AMR/AMR_Interop_Standard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AMR_Interop_Standard.json
241 lines (238 loc) · 7.65 KB
/
AMR_Interop_Standard.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
{
"definitions": {
"quaternion": {
"description": "Quaternion representation of an angle",
"type": "object",
"required": ["x", "y", "z", "w"],
"properties": {
"x": { "type": "number" },
"y": { "type": "number" },
"z": { "type": "number" },
"w": { "type": "number" }
},
"additionalProperties": false
},
"location": {
"description": "Location of an object or AMR",
"type": "object",
"required": ["x", "y", "angle", "planarDatum"],
"properties": {
"x": { "type": "number" },
"y": { "type": "number" },
"z": {
"type": "number",
"default" : 0
},
"angle" : { "$ref": "#/definitions/quaternion" },
"planarDatum": {
"description": "Id of planarDatum AMR is referencing",
"type": "string",
"format": "uuid",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
}
},
"additionalProperties": false
},
"predictedLocation": {
"description": "Predicted future location of an object or AMR",
"type": "object",
"required": ["timestamp", "x", "y", "angle"],
"properties": {
"timestamp": {
"description": "Predicted UTC time AMR will reach this location",
"type": "string",
"format": "date-time"
},
"x": { "type": "number" },
"y": { "type": "number" },
"z": {
"type": "number",
"default" : 0
},
"angle" : { "$ref": "#/definitions/quaternion" },
"planarDatumUUID": {
"description": "Only necessary if different from AMRs current planarDatum",
"type": "string",
"format": "uuid",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
}
},
"additionalProperties": false
}
},
"identityReport": {
"type": "object",
"required": ["uuid", "timestamp", "manufacturerName", "robotModel", "robotSerialNumber", "baseRobotEnvelope"],
"properties": {
"uuid": {
"description": "UUID specified by RFC4122 that all subsequent messages should reference",
"type": "string",
"format": "uuid",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"timestamp": { "type": "string", "format": "date-time" },
"manufacturerName": { "type": "string" },
"robotModel": { "type": "string" },
"robotSerialNumber": {
"description": "Unique robot identifier that ideally can be physically linked to the AMR",
"type": "string" },
"baseRobotEnvelope": {
"description": "Footprint of robot based on orientation - centered on current location.",
"type": "object",
"required": ["x", "y"],
"properties": {
"x": { "type": "number" },
"y": { "type": "number" },
"z": {
"type": "number",
"default" : 0
}
},
"additionalProperties": false
},
"maxSpeed": {
"description": "Max robot speed in m/s",
"type": "number"
},
"maxRunTime": {
"description": "Estimated Runtime in hours",
"type": "number"
},
"emergencyContactInformation": {
"description": "Emergency Contact - preferrably phone number",
"type": "string"
},
"chargerType": {
"description": "Type of charger",
"type": "string"
},
"supportVendorName": {
"description": "Vendor that supplied robot",
"type": "string"
},
"supportVendorContactInformation": {
"description": "Contect information for vendor",
"type": "string"
},
"productDocumentation": {
"description": "Link to product documenation",
"type": "string",
"format": "uri"
},
"thumbnailImage": {
"description": "Link to thumbnail graphic stored as PNG",
"type": "string",
"format": "uri"
},
"cargoType": {
"description": "Discription of cargo",
"type": "string"
},
"cargoMaxVolume": {
"description": "Max volume of cargo in meters",
"type": "object",
"required": ["x", "y"],
"properties": {
"x": { "type": "number" },
"y": { "type": "number" },
"z": {
"type": "number",
"default" : 0
}
},
"additionalProperties": false
},
"cargoMaxWeight": {
"description": "Max weight of cargo in kg",
"type": "string"
}
},
"additionalProperties": false
},
"statusReport": {
"type": "object",
"required": ["uuid", "timestamp", "operationalState", "location" ],
"properties": {
"uuid": {
"description": "UUID specified in the identityAndCapability message",
"type": "string",
"format": "uuid",
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
},
"timestamp": { "type": "string", "format": "date-time" },
"operationalState": {
"description": "Current action the robot is performing",
"type": "string",
"enum": ["navigating", "idle", "disabled", "offline", "charging", "waitingHumanEvent", "waitingExternalEvent", "waitingInternalEvent", "manualOverride"]
},
"location": {
"description": "Current Location of AMR",
"$ref": "#/definitions/location"
},
"velocity": {
"description": "Current velocity of AMR",
"type": "object",
"required": ["linear"],
"properties": {
"linear": {
"description": "Linear velocity in m/s in heading direction, forward is postive",
"type": "number"
},
"angular" : {
"description": "Angular velocity in quaternions per second",
"$ref": "#/definitions/quaternion"
}
},
"additionalProperties": false
},
"batteryPercentage" : {
"description": "Percentage of battery remaining",
"type": "number",
"minimum": 0,
"maximum": 100
},
"remainingRunTime" : {
"description": "Estimated remaining runtime in hours",
"type": "number",
"minimum": 0
},
"loadPercentageStillAvailable" : {
"description": "Percentage of capacity still available",
"type": "number",
"minimum": 0,
"maximum": 100
},
"errorCodes" : {
"description": "List of current error states - should be omitted for normal operation",
"type": "array",
"items": {
"type": "string"
},
"uniqueItems": true
},
"destinations" : {
"description": "Target destination(s) of AGV",
"type": "array",
"items": {
"$ref": "#/definitions/predictedLocation"
},
"maxItems": 10,
"uniqueItems": true
},
"path" : {
"description": "Short term path of AGV ~10 sec",
"type": "array",
"items": {
"$ref": "#/definitions/predictedLocation"
},
"maxItems": 10,
"uniqueItems": true
}
},
"additionalProperties": false
},
"oneOf": [
{ "$ref": "#/identityReport" },
{ "$ref": "#/statusReport" }
]
}