RestoreKeyOutput schema from Amazon Payment Cryptography
{ "$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 <code>KeyState</code> will change to <code>CREATE_COMPLETE</code> and value for <code>DeletePendingTimestamp</code> gets removed. " } ] } }, "required": [ "Key" ] }