{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-schema/amazon-simpledb-deletable-item-schema.json", "title": "DeletableItem", "description": "DeletableItem schema from Amazon SimpleDB API", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "xml": { "name": "ItemName" } } ] }, "Attributes": { "$ref": "#/components/schemas/DeletableAttributeList" } }, "required": [ "Name" ] }