Fixes to OCA OCPP 2.0.1 JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / StartTransaction.json
CommitLineData
b52c969d 1{
98fc1389 2 "$schema": "http://json-schema.org/draft-07/schema#",
b0342994 3 "$id": "urn:OCPP:1.6:2019:12:StartTransactionRequest",
b52c969d
JB
4 "title": "StartTransactionRequest",
5 "type": "object",
6 "properties": {
7 "connectorId": {
8 "type": "integer"
9 },
10 "idTag": {
11 "type": "string",
12 "maxLength": 20
13 },
14 "meterStart": {
15 "type": "integer"
16 },
17 "reservationId": {
18 "type": "integer"
19 },
20 "timestamp": {
21 "type": "string",
22 "format": "date-time"
23 }
24 },
25 "additionalProperties": false,
26 "required": ["connectorId", "idTag", "meterStart", "timestamp"]
27}