{ "$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-get-public-key-certificate-output-schema.json", "title": "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" ] }