{ "$schema": "http://json-schema.org/draft-07/schema#", "title": "ContentBlockDetailByKeyResponse", "description": "", "type": "object", "properties": { "name": { "type": "string" }, "type": { "enum": [ "docx", "html" ], "type": "string" }, "schema": { "type": "array", "items": { "$ref": "#/components/schemas/TemplateSchema" } } }, "required": [ "name", "schema", "type" ] }