Amazon DynamoDB · Schema

BatchGetItemInput

BatchGetItemInput schema from Amazon DynamoDB API

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

Name Type Description
RequestItems object A map of table names to keys and attributes to retrieve
View JSON Schema on GitHub

JSON Schema

dynamodb-openapi-batch-get-item-input-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-input-schema.json",
  "title": "BatchGetItemInput",
  "description": "BatchGetItemInput schema from Amazon DynamoDB API",
  "type": "object",
  "properties": {
    "RequestItems": {
      "type": "object",
      "description": "A map of table names to keys and attributes to retrieve",
      "additionalProperties": {
        "type": "object",
        "properties": {
          "Keys": {
            "type": "array",
            "description": "The primary keys for items to retrieve",
            "items": {
              "type": "object",
              "additionalProperties": {
                "$ref": "#/components/schemas/AttributeValue"
              }
            }
          },
          "ProjectionExpression": {
            "type": "string"
          },
          "ConsistentRead": {
            "type": "boolean"
          },
          "ExpressionAttributeNames": {
            "type": "object",
            "additionalProperties": {
              "type": "string"
            }
          }
        }
      }
    }
  },
  "required": [
    "RequestItems"
  ]
}