Amazon SimpleDB · JSON Structure

Amazon Simpledb Replaceable Attribute Structure

Type: object Properties: 3 Required: 2
Cloud StorageData StorageDatabaseNoSQL

ReplaceableAttribute is a JSON Structure definition published by Amazon SimpleDB, describing 3 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

Name Value Replace

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-simpledb/refs/heads/main/json-structure/amazon-simpledb-replaceable-attribute-structure.json",
  "name": "ReplaceableAttribute",
  "description": "",
  "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"
  ]
}