Add missing OCPP 1.6 command payload OCA JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / ReserveNow.json
1 {
2 "$schema": "http://json-schema.org/draft-07/schema#",
3 "$id": "urn:OCPP:1.6:2019:12:ReserveNowRequest",
4 "title": "ReserveNowRequest",
5 "type": "object",
6 "properties": {
7 "connectorId": {
8 "type": "integer"
9 },
10 "expiryDate": {
11 "type": "string",
12 "format": "date-time"
13 },
14 "idTag": {
15 "type": "string",
16 "maxLength": 20
17 },
18 "parentIdTag": {
19 "type": "string",
20 "maxLength": 20
21 },
22 "reservationId": {
23 "type": "integer"
24 }
25 },
26 "additionalProperties": false,
27 "required": ["connectorId", "expiryDate", "idTag", "reservationId"]
28 }