Amazon DynamoDB · Schema

AttributeDefinition

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
AttributeName string A name for the attribute
AttributeType string The data type for the attribute: S (String), N (Number), B (Binary)
View JSON Schema on GitHub

JSON Schema

dynamodb-attribute-definition-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "AttributeDefinition",
  "type": "object",
  "properties": {
    "AttributeName": {
      "type": "string",
      "description": "A name for the attribute"
    },
    "AttributeType": {
      "type": "string",
      "description": "The data type for the attribute: S (String), N (Number), B (Binary)"
    }
  }
}