ocpp-standard-schema
Version:
Contains OCPP JSON schemas for validation purposes
23 lines (22 loc) • 446 B
JSON
{
"title": "DataTransferResponse",
"type": "object",
"properties": {
"status": {
"type": "string",
"enum": [
"Accepted",
"Rejected",
"UnknownMessageId",
"UnknownVendorId"
]
},
"data": {
"type": "string"
}
},
"additionalProperties": false,
"required": [
"status"
]
}