{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-schema/openapi-list-keys-output-schema.json",
"title": "ListKeysOutput",
"description": "ListKeysOutput schema from Amazon Payment Cryptography",
"type": "object",
"properties": {
"Keys": {
"allOf": [
{
"$ref": "#/components/schemas/KeySummaryList"
},
{
"description": "The list of keys created within the caller's Amazon Web Services account and Amazon Web Services Region."
}
]
},
"NextToken": {
"allOf": [
{
"$ref": "#/components/schemas/NextToken"
},
{
"description": "The token for the next set of results, or an empty or null value if there are no more results."
}
]
}
},
"required": [
"Keys"
]
}