Amazon DynamoDB · Schema
ScanOutput
ScanOutput schema from Amazon DynamoDB API
DatabaseDocument StoreKey-ValueNoSQLServerless
Properties
| Name | Type | Description |
|---|---|---|
| Items | array | An array of item attributes that match the scan criteria |
| Count | integer | The number of items in the response |
| ScannedCount | integer | The number of items evaluated before any filter is applied |
| LastEvaluatedKey | object | The primary key of the item where the operation stopped |
JSON Schema
{
"$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-scan-output-schema.json",
"title": "ScanOutput",
"description": "ScanOutput schema from Amazon DynamoDB API",
"type": "object",
"properties": {
"Items": {
"type": "array",
"description": "An array of item attributes that match the scan criteria",
"items": {
"type": "object",
"additionalProperties": {
"$ref": "#/components/schemas/AttributeValue"
}
}
},
"Count": {
"type": "integer",
"description": "The number of items in the response"
},
"ScannedCount": {
"type": "integer",
"description": "The number of items evaluated before any filter is applied"
},
"LastEvaluatedKey": {
"type": "object",
"description": "The primary key of the item where the operation stopped",
"additionalProperties": {
"$ref": "#/components/schemas/AttributeValue"
}
}
}
}