Amazon SimpleDB · JSON Structure

Amazon Simpledb Item Structure

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

Item 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 AlternateNameEncoding Attributes

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-item-structure.json",
  "name": "Item",
  "description": "",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the item."
        }
      ]
    },
    "AlternateNameEncoding": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": ""
        }
      ]
    },
    "Attributes": {
      "allOf": [
        {
          "$ref": "#/components/schemas/AttributeList"
        },
        {
          "description": "A list of attributes."
        }
      ]
    }
  },
  "required": [
    "Name",
    "Attributes"
  ]
}