Amazon SimpleDB · Schema

DeletableAttribute

Cloud StorageData StorageDatabaseNoSQL

Properties

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

JSON Schema

amazon-simpledb-deletable-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-deletable-attribute-schema.json",
  "title": "DeletableAttribute",
  "description": "",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the attribute."
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The value of the attribute."
        }
      ]
    }
  },
  "required": [
    "Name"
  ]
}