Amazon DynamoDB · JSON Structure

Dynamodb Openapi Tag Structure

Tag schema from Amazon DynamoDB API

Type: object Properties: 2 Required: 2
DatabaseDocument StoreKey-ValueNoSQLServerless

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

Properties

Key Value

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dynamodb/refs/heads/main/json-structure/dynamodb-openapi-tag-structure.json",
  "name": "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"
  ]
}