Amazon SimpleDB · Schema

DeleteAttributesRequest

DeleteAttributesRequest schema from Amazon SimpleDB API

Cloud StorageData StorageDatabaseNoSQL

Properties

Name Type Description
DomainName object
ItemName object
Attributes object
Expected object
View JSON Schema on GitHub

JSON Schema

amazon-simpledb-delete-attributes-request-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-delete-attributes-request-schema.json",
  "title": "DeleteAttributesRequest",
  "description": "DeleteAttributesRequest schema from Amazon SimpleDB API",
  "type": "object",
  "properties": {
    "DomainName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the domain in which to perform the operation."
        }
      ]
    },
    "ItemName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the item. Similar to rows on a spreadsheet, items represent individual objects that contain one or more value-attribute pairs."
        }
      ]
    },
    "Attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/DeletableAttributeList"
        },
        {
          "description": "A list of Attributes. Similar to columns on a spreadsheet, attributes represent categories of data that can be assigned to items."
        }
      ]
    },
    "Expected": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UpdateCondition"
        },
        {
          "description": "The update condition which, if specified, determines whether the specified attributes will be deleted or not. The update condition must be satisfied in order for this request to be processed and the attributes to be deleted."
        }
      ]
    }
  },
  "required": [
    "DomainName",
    "ItemName"
  ]
}