{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-iot-events/refs/heads/main/json-schema/iot-events-input-definition-schema.json",
"title": "InputDefinition",
"description": "The definition of the input.",
"type": "object",
"properties": {
"attributes": {
"allOf": [
{
"$ref": "#/components/schemas/Attributes"
},
{
"description": "The attributes from the JSON payload that are made available by the input. Inputs are derived from messages sent to the AWS IoT Events system using <code>BatchPutMessage</code>. Each such message contains a JSON payload, and those attributes (and their paired values) specified here are available for use in the <code>condition</code> expressions used by detectors that monitor this input. "
}
]
}
},
"required": [
"attributes"
]
}