Amazon DynamoDB · Schema

BatchGetItemOutput

BatchGetItemOutput schema from Amazon DynamoDB API

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

Name Type Description
Responses object A map of table names to lists of items retrieved
UnprocessedKeys object A map of unprocessed keys, to be retried
View JSON Schema on GitHub

JSON Schema

dynamodb-openapi-batch-get-item-output-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-batch-get-item-output-schema.json",
  "title": "BatchGetItemOutput",
  "description": "BatchGetItemOutput schema from Amazon DynamoDB API",
  "type": "object",
  "properties": {
    "Responses": {
      "type": "object",
      "description": "A map of table names to lists of items retrieved",
      "additionalProperties": {
        "type": "array",
        "items": {
          "type": "object",
          "additionalProperties": {
            "$ref": "#/components/schemas/AttributeValue"
          }
        }
      }
    },
    "UnprocessedKeys": {
      "type": "object",
      "description": "A map of unprocessed keys, to be retried"
    }
  }
}