@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.
21 lines (20 loc) • 581 B
JSON
{
"title": "UnlockConnectorResponse",
"type": "object",
"properties": {
"status": {
"$ref": "#/definitions/UnlockConnectorResponseStatus"
}
},
"additionalProperties": false,
"required": ["status"],
"$id": "UnlockConnectorResponse",
"definitions": {
"UnlockConnectorResponseStatus": {
"type": "string",
"additionalProperties": false,
"enum": ["Unlocked", "UnlockFailed", "NotSupported"],
"tsEnumNames": ["Unlocked", "UnlockFailed", "NotSupported"]
}
}
}