{
"$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-provisioned-throughput-schema.json",
"title": "ProvisionedThroughput",
"description": "Represents the provisioned throughput settings for a table or index",
"type": "object",
"properties": {
"ReadCapacityUnits": {
"type": "integer",
"description": "The maximum number of strongly consistent reads per second",
"minimum": 1
},
"WriteCapacityUnits": {
"type": "integer",
"description": "The maximum number of writes per second",
"minimum": 1
}
},
"required": [
"ReadCapacityUnits",
"WriteCapacityUnits"
]
}