Amazon Payment Cryptography · JSON Structure

Openapi Get Public Key Certificate Output Structure

GetPublicKeyCertificateOutput schema from Amazon Payment Cryptography

Type: object Properties: 2 Required: 2
CryptographyFinancial ServicesPayment ProcessingPCI

GetPublicKeyCertificateOutput is a JSON Structure definition published by Amazon Payment Cryptography, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

KeyCertificate KeyCertificateChain

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-payment-cryptography/refs/heads/main/json-structure/openapi-get-public-key-certificate-output-structure.json",
  "name": "GetPublicKeyCertificateOutput",
  "description": "GetPublicKeyCertificateOutput schema from Amazon Payment Cryptography",
  "type": "object",
  "properties": {
    "KeyCertificate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateType"
        },
        {
          "description": "The public key component of the asymmetric key pair in a certificate (PEM) format. It is signed by the root certificate authority (CA) within your service account. The certificate expires in 90 days."
        }
      ]
    },
    "KeyCertificateChain": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CertificateType"
        },
        {
          "description": "The certificate chain that signed the public key certificate of the asymmetric key pair. This is the root certificate authority (CA) within your service account."
        }
      ]
    }
  },
  "required": [
    "KeyCertificate",
    "KeyCertificateChain"
  ]
}