| 123456789101112131415161718192021222324252627282930 |
- {
- "$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"
- ]
- }
|