{
    "type": "object",
    "properties": {
        "connectorId": {
            "type": "integer",
            "minimum": 0
        },
        "status": {
            "type": "string",
            "enum": [
                "Available",
                "Occupied",
                "Reserved",
                "Unavailable",
                "Faulted"
            ]
        },
        "errorCode": {
            "type": "string",
            "enum": [
                "ConnectorLockFailure",
                "GroundFailure",
                "HighTemperature",
                "Mode3Error",
                "NoError",
                "OtherError",
                "OverCurrentFailure",
                "PowerMeterFailure",
                "PowerSwitchFailure",
                "ReaderFailure",
                "ResetFailure",
                "UnderVoltage",
                "WeakSignal"
            ]
        },
        "info": {
            "type": "string",
            "maxLength": 50
        },
        "timestamp": {
            "type": "string",
            "format": "date-time"
        },
        "vendorId": {
            "type": "string",
            "maxLength": 255
        },
        "vendorErrorCode": {
            "type": "string",
            "maxLength": 50
        }
    },
    "additionalProperties": false,
    "required": [
        "connectorId",
        "status",
        "errorCode"
    ]
}
