{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/anrok/main/json-schema/customer-certificate-file.json", "title": "CustomerCertificateFile", "type": "object", "properties": { "name": { "description": "File name", "type": "string", "examples": [ "cert.png" ] }, "contentsBase64": { "description": "Base64 encoded certificate image contents", "type": "string", "examples": [ "Y2VydC5wbmc=" ] } }, "required": [ "name", "contentsBase64" ] }