{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ClientEncryptionKey", "title": "ClientEncryptionKey", "type": [ "object", "null" ], "description": "Encryption used for WsFed responses with this client.", "additionalProperties": true, "properties": { "pub": { "type": "string", "description": "Encryption Public RSA Key." }, "cert": { "type": "string", "description": "Encryption certificate for public key in X.509 (.CER) format." }, "subject": { "type": "string", "description": "Encryption certificate name for this certificate in the format `/CN={domain}`." } } }