-
Notifications
You must be signed in to change notification settings - Fork 0
/
to-be-signed-payload.json
46 lines (45 loc) · 1.04 KB
/
to-be-signed-payload.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"transactionId": {
"type": "string",
"description": "Transaction identifier (of max length 50) entered by
manufacturer, which is also returned as part of response as is and is
useful for linking transactions full round trip across system"
},
"operationBusinessIdentifier": {
"type": "string",
"description": "Operator BusinessUnique Identifier to be linked to the
drone device"
},
"drone": {
"type": "object",
"properties": {
"deviceId": {
"type": "string",
"description": "Unique Drone’s Device Id"
},
"droneTypeId": {
"type": "integer",
"description": "Drone Type Id for the particular drone model in
Digital Sky"
},
"publicKey": {
"type": "string",
"description": "Public Key of the drone in Base64 encoding"
}
},
"required": [
"deviceId",
"droneTypeId",
"publicKey"
]
}
},
"required": [
"transactionId",
"operationBusinessIdentifier",
"drone"
]
}