Tag schema from Amazon DynamoDB API
{ "$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" ] }