Amazon SimpleDB · JSON Structure

Amazon Simpledb Attribute Structure

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

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

Properties

Name AlternateNameEncoding Value AlternateValueEncoding

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-attribute-structure.json",
  "name": "Attribute",
  "description": "",
  "properties": {
    "Name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The name of the attribute."
        }
      ]
    },
    "AlternateNameEncoding": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": ""
        }
      ]
    },
    "Value": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": "The value of the attribute."
        }
      ]
    },
    "AlternateValueEncoding": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": ""
        }
      ]
    }
  },
  "required": [
    "Name",
    "Value"
  ]
}