{
"$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-restore-key-output-schema.json",
"title": "RestoreKeyOutput",
"description": "RestoreKeyOutput schema from Amazon Payment Cryptography",
"type": "object",
"properties": {
"Key": {
"allOf": [
{
"$ref": "#/components/schemas/Key"
},
{
"description": "The key material of the restored key. The KeyState will change to CREATE_COMPLETE and value for DeletePendingTimestamp gets removed. "
}
]
}
},
"required": [
"Key"
]
}