31 lines
714 B
JSON
31 lines
714 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"id": "urn:OCPP:1.6:2019:12:BootNotificationResponse",
|
|
"title": "BootNotificationResponse",
|
|
"type": "object",
|
|
"properties": {
|
|
"status": {
|
|
"type": "string",
|
|
"additionalProperties": false,
|
|
"enum": [
|
|
"Accepted",
|
|
"Pending",
|
|
"Rejected"
|
|
]
|
|
},
|
|
"currentTime": {
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"interval": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"required": [
|
|
"status",
|
|
"currentTime",
|
|
"interval"
|
|
]
|
|
}
|