{ "$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 KeyARN of the key that will decrypt or unwrap a TR-31 key block during import." } ] } }, "required": [ "WrappedKeyBlock", "WrappingKeyIdentifier" ] }