RestoreKeyOutput

RestoreKeyOutput schema from Amazon Payment Cryptography

CryptographyFinancial ServicesPayment ProcessingPCI

Properties

Name Type Description
Key object
View JSON Schema on GitHub

JSON Schema

openapi-restore-key-output-schema.json Raw ↑
{
  "$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"
  ]
}