{
    "$schema": "http://json-schema.org/draft-06/schema#",
    "$id": "urn:OCPP:Cp:1.6:2020:3:ExtendedTriggerMessage.req",
    "definitions": {
        "MessageTriggerEnumType": {
            "type": "string",
            "enum": [
                "BootNotification",
                "LogStatusNotification",
                "FirmwareStatusNotification",
                "Heartbeat",
                "MeterValues",
                "SignChargePointCertificate",
                "StatusNotification"
            ]
        }
    },
    "type": "object",
    "additionalProperties": false,
    "properties": {
        "requestedMessage": {
            "$ref": "#/definitions/MessageTriggerEnumType"
        },
        "connectorId": {
            "type": "integer"
        }
    },
    "required": [
        "requestedMessage"
    ]
}
