ocpp-standard-schema
Version:
Contains OCPP JSON schemas for validation purposes
26 lines (25 loc) • 504 B
JSON
{
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"Accepted",
"Rejected"
]
},
"currentTime": {
"type": "string",
"format": "date-time"
},
"heartbeatInterval": {
"type": "integer"
}
},
"additionalProperties": false,
"required": [
"status",
"currentTime",
"heartbeatInterval"
]
}