DeleteKeyInput 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-delete-key-input-schema.json", "title": "DeleteKeyInput", "description": "DeleteKeyInput schema from Amazon Payment Cryptography", "type": "object", "properties": { "DeleteKeyInDays": { "allOf": [ { "$ref": "#/components/schemas/DeleteKeyInputDeleteKeyInDaysInteger" }, { "description": "The waiting period for key deletion. The default value is seven days." } ] }, "KeyIdentifier": { "allOf": [ { "$ref": "#/components/schemas/KeyArnOrKeyAliasType" }, { "description": "The <code>KeyARN</code> of the key that is scheduled for deletion." } ] } }, "required": [ "KeyIdentifier" ] }