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.

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