Add OCPP DataTransfer request support
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / DataTransferResponse.json
1 {
2 "$schema": "http://json-schema.org/draft-04/schema#",
3 "id": "urn:OCPP:1.6:2019:12:DataTransferResponse",
4 "title": "DataTransferResponse",
5 "type": "object",
6 "properties": {
7 "status": {
8 "type": "string",
9 "additionalProperties": false,
10 "enum": ["Accepted", "Rejected", "UnknownMessageId", "UnknownVendorId"]
11 },
12 "data": {
13 "type": "string"
14 }
15 },
16 "additionalProperties": false,
17 "required": ["status"]
18 }