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