Migrate all JSON schemas to draft-06 or higher
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / DataTransferResponse.json
CommitLineData
91a7d3ea 1{
b0342994
JB
2 "$schema": "http://json-schema.org/draft-07/schema",
3 "$id": "urn:OCPP:1.6:2019:12:DataTransferResponse",
91a7d3ea
JB
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}