{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateVerifiableCredentialTemplateRequestContent", "title": "CreateVerifiableCredentialTemplateRequestContent", "type": "object", "additionalProperties": false, "required": [ "name", "dialect", "presentation", "type", "well_known_trusted_issuers" ], "properties": { "name": { "type": "string", "minLength": 1, "maxLength": 255 }, "type": { "type": "string", "minLength": 1, "maxLength": 255 }, "dialect": { "type": "string", "maxLength": 255, "pattern": "^simplified/1.0$" }, "presentation": { "$ref": "#/components/schemas/MdlPresentationRequest" }, "custom_certificate_authority": { "type": [ "string", "null" ], "minLength": 1, "maxLength": 4096 }, "well_known_trusted_issuers": { "type": "string", "minLength": 1, "maxLength": 255, "pattern": "^aamva$" } } }