{ "$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" ] }