{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "version": "1.0.0",
    "type": "object",
    "additionalProperties": false,
    "description": "JSON Schema for attachments that have failed validation and were not added to an application.",
    "required": [
        "data"
    ],
    "properties": {
        "data": {
            "type": "object",
            "additionalProperties": false,
            "required": [
                "attachment_id"
            ],
            "properties": {
                "attachment_id": {
                    "type": "integer",
                    "description": "Unique identifier for the attachment"
                }
            }
        }
    }
}