ImportTr31KeyBlock

Parameter information for key material import using TR-31 standard.

CryptographyFinancial ServicesPayment ProcessingPCI

Properties

Name Type Description
WrappedKeyBlock object
WrappingKeyIdentifier object
View JSON Schema on GitHub

JSON Schema

openapi-import-tr31-key-block-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-import-tr31-key-block-schema.json",
  "title": "ImportTr31KeyBlock",
  "description": "Parameter information for key material import using TR-31 standard.",
  "type": "object",
  "properties": {
    "WrappedKeyBlock": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Tr31WrappedKeyBlock"
        },
        {
          "description": "The TR-34 wrapped key block to import."
        }
      ]
    },
    "WrappingKeyIdentifier": {
      "allOf": [
        {
          "$ref": "#/components/schemas/KeyArnOrKeyAliasType"
        },
        {
          "description": "The <code>KeyARN</code> of the key that will decrypt or unwrap a TR-31 key block during import."
        }
      ]
    }
  },
  "required": [
    "WrappedKeyBlock",
    "WrappingKeyIdentifier"
  ]
}