Amazon SimpleDB · Schema

ReplaceableAttribute

Cloud StorageData StorageDatabaseNoSQL

Properties

Name Type Description
Name object
Value object
Replace object
View JSON Schema on GitHub

JSON Schema

amazon-simpledb-replaceable-attribute-schema.json Raw ↑
{
  "$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 <code>false</code>."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Value"
  ]
}