Validate response PDU (#137)
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / BootNotificationResponse.json
1 {
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "id": "urn:OCPP:1.6:2019:12:BootNotificationResponse",
4 "title": "BootNotificationResponse",
5 "type": "object",
6 "properties": {
7 "status": {
8 "type": "string",
9 "additionalProperties": false,
10 "enum": ["Accepted", "Pending", "Rejected"]
11 },
12 "currentTime": {
13 "type": "string",
14 "format": "date-time"
15 },
16 "interval": {
17 "type": "integer"
18 }
19 },
20 "additionalProperties": false,
21 "required": ["status", "currentTime", "interval"]
22 }