| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:StartTransactionResponse",
- "title": "StartTransactionResponse",
- "type": "object",
- "properties": {
- "idTagInfo": {
- "type": "object",
- "properties": {
- "expiryDate": {
- "type": "string",
- "format": "date-time"
- },
- "parentIdTag": {
- "type": "string",
- "maxLength": 20
- },
- "status": {
- "type": "string",
- "additionalProperties": false,
- "enum": [
- "Accepted",
- "Blocked",
- "Expired",
- "Invalid",
- "ConcurrentTx"
- ]
- }
- },
- "additionalProperties": false,
- "required": [
- "status"
- ]
- },
- "transactionId": {
- "type": "integer"
- }
- },
- "additionalProperties": false,
- "required": [
- "idTagInfo",
- "transactionId"
- ]
- }
|