Amazon DynamoDB · Schema

Tag

Tag schema from Amazon DynamoDB API

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

Name Type Description
Key string The key of the tag
Value string The value of the tag
View JSON Schema on GitHub

JSON Schema

dynamodb-openapi-tag-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dynamodb/refs/heads/main/json-schema/dynamodb-openapi-tag-schema.json",
  "title": "Tag",
  "description": "Tag schema from Amazon DynamoDB API",
  "type": "object",
  "properties": {
    "Key": {
      "type": "string",
      "description": "The key of the tag",
      "minLength": 1,
      "maxLength": 128
    },
    "Value": {
      "type": "string",
      "description": "The value of the tag",
      "minLength": 0,
      "maxLength": 256
    }
  },
  "required": [
    "Key",
    "Value"
  ]
}