Refer to the exhibit.
{
"Tables": [
{
"TableName": "Orders",
"KeySchema": [
{"AttributeName": "order_id", "KeyType": "HASH"},
{"AttributeName": "customer_id", "KeyType": "RANGE"}
],
"AttributeDefinitions": [
{"AttributeName": "order_id", "AttributeType": "S"},
{"AttributeName": "customer_id", "AttributeType": "S"},
{"AttributeName": "order_date", "AttributeType": "S"}
],
"GlobalSecondaryIndexes": [
{
"IndexName": "CustomerDateIndex",
"KeySchema": [
{"AttributeName": "customer_id", "KeyType": "HASH"},
{"AttributeName": "order_date", "KeyType": "RANGE"}
],
"Projection": {"ProjectionType": "ALL"}
}
]
}
]
}