{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "TemplateInfo", "type": "object", "description": "Information about a Mandrill template.", "properties": { "slug": { "type": "string", "description": "The URL-safe slug for the template." }, "name": { "type": "string", "description": "The display name of the template." }, "labels": { "type": "array", "description": "Labels applied to the template for organization." }, "code": { "type": "string", "description": "The HTML code of the template." }, "subject": { "type": "string", "description": "The default subject line." }, "from_email": { "type": "string", "description": "The default from address." }, "from_name": { "type": "string", "description": "The default from name." }, "text": { "type": "string", "description": "The default text content." }, "publish_name": { "type": "string", "description": "The name of the published version." }, "publish_code": { "type": "string", "description": "The HTML code of the published version." }, "publish_subject": { "type": "string", "description": "The subject of the published version." }, "publish_from_email": { "type": "string", "description": "The from address of the published version." }, "publish_from_name": { "type": "string", "description": "The from name of the published version." }, "publish_text": { "type": "string", "description": "The text content of the published version." }, "published_at": { "type": "string", "description": "When the template was last published." }, "created_at": { "type": "string", "description": "When the template was created." }, "updated_at": { "type": "string", "description": "When the template was last updated." } } }