{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CertificatePinned", "title": "CertificatePinned", "type": "object", "properties": { "certificate_chain": { "type": "array", "description": "The certificate chain in .PEM format.", "readOnly": false, "writeOnly": false, "items": { "$ref": "#/components/schemas/Certificate" } } }, "required": [ "certificate_chain" ] }