| 12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "$schema": "http://json-schema.org/draft-04/schema#",
- "id": "urn:OCPP:1.6:2019:12:StopTransactionResponse",
- "title": "StopTransactionResponse",
- "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"
- ]
- }
- },
- "additionalProperties": false
- }
|