UNPKG

@citrineos/base

Version:

The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.

35 lines (34 loc) 1.05 kB
{ "title": "StopTransactionResponse", "type": "object", "properties": { "idTagInfo": { "type": "object", "properties": { "expiryDate": { "type": "string", "format": "date-time" }, "parentIdTag": { "type": "string", "maxLength": 20 }, "status": { "$ref": "#/definitions/StopTransactionResponseStatus" } }, "additionalProperties": false, "required": ["status"] } }, "additionalProperties": false, "$id": "StopTransactionResponse", "definitions": { "StopTransactionResponseStatus": { "type": "string", "additionalProperties": false, "enum": ["Accepted", "Blocked", "Expired", "Invalid", "ConcurrentTx"], "tsEnumNames": ["Accepted", "Blocked", "Expired", "Invalid", "ConcurrentTx"] } } }