Amazon SimpleDB · Schema

ReplaceableItem

Cloud StorageData StorageDatabaseNoSQL

Properties

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

JSON Schema

amazon-simpledb-replaceable-item-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-item-schema.json",
  "title": "ReplaceableItem",
  "description": "",
  "type": "object",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "xml": {
            "name": "ItemName"
          },
          "description": "The name of the replaceable item."
        }
      ]
    },
    "Attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ReplaceableAttributeList"
        },
        {
          "description": "The list of attributes for a replaceable item."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Attributes"
  ]
}