Fixes to OCA OCPP 2.0.1 JSON schemas
[e-mobility-charging-stations-simulator.git] / src / assets / json-schemas / ocpp / 1.6 / StartTransactionResponse.json
CommitLineData
844e496b 1{
98fc1389 2 "$schema": "http://json-schema.org/draft-07/schema#",
b0342994 3 "$id": "urn:OCPP:1.6:2019:12:StartTransactionResponse",
844e496b
JB
4 "title": "StartTransactionResponse",
5 "type": "object",
6 "properties": {
7 "idTagInfo": {
8 "type": "object",
9 "properties": {
10 "expiryDate": {
11 "type": "string",
12 "format": "date-time"
13 },
14 "parentIdTag": {
15 "type": "string",
16 "maxLength": 20
17 },
18 "status": {
19 "type": "string",
20 "additionalProperties": false,
21 "enum": ["Accepted", "Blocked", "Expired", "Invalid", "ConcurrentTx"]
22 }
23 },
24 "additionalProperties": false,
25 "required": ["status"]
26 },
27 "transactionId": {
28 "type": "integer"
29 }
30 },
31 "additionalProperties": false,
32 "required": ["idTagInfo", "transactionId"]
33}