{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/X509CertificateCredential", "title": "X509CertificateCredential", "type": "object", "additionalProperties": false, "required": [ "credential_type", "pem" ], "properties": { "credential_type": { "$ref": "#/components/schemas/X509CertificateCredentialTypeEnum" }, "name": { "type": "string", "description": "Friendly name for a credential.", "default": "", "maxLength": 128 }, "pem": { "type": "string", "description": "PEM-formatted X509 certificate. Must be JSON escaped.", "default": "-----BEGIN CERTIFICATE-----\r\nMIIBIjANBg...\r\n-----END CERTIFICATE-----\r\n", "minLength": 1, "maxLength": 4096 } } }