{ "$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-replaceable-attribute-schema.json", "title": "ReplaceableAttribute", "description": "", "type": "object", "properties": { "Name": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The name of the replaceable attribute." } ] }, "Value": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "The value of the replaceable attribute." } ] }, "Replace": { "allOf": [ { "$ref": "#/components/schemas/Boolean" }, { "description": "A flag specifying whether or not to replace the attribute/value pair or to add a new attribute/value pair. The default setting is false." } ] } }, "required": [ "Name", "Value" ] }