{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PublicKeyResponse", "title": "PublicKeyResponse", "properties": { "publicKey": { "description": "The public key to be used for encrypting the symmetric session key.", "type": "string" }, "publicKeyExpiryDate": { "description": "The expiry date of the public key.", "type": "string" } }, "required": [ "publicKey", "publicKeyExpiryDate" ], "type": "object" }