@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
28 lines (27 loc) • 757 B
JSON
{
"title": "BootNotificationResponse",
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/BootNotificationResponseStatus"
},
"currentTime": {
"type": "string",
"format": "date-time"
},
"interval": {
"type": "integer"
}
},
"additionalProperties": false,
"required": ["status", "currentTime", "interval"],
"$id": "BootNotificationResponse",
"definitions": {
"BootNotificationResponseStatus": {
"type": "string",
"additionalProperties": false,
"enum": ["Accepted", "Pending", "Rejected"],
"tsEnumNames": ["Accepted", "Pending", "Rejected"]
}
}
}