Gleap · Schema

EmailTemplateDto

Customer FeedbackBug ReportingIn-App SupportFeature RequestsRoadmapLive ChatAI AgentsSession ReplayHelp CenterTicketingUser FeedbackSaaS

Properties

Name Type Description
title string
htmlContent object
View JSON Schema on GitHub

JSON Schema

email-template.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "EmailTemplateDto",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "htmlContent": {
      "$ref": "#/components/schemas/Translatable"
    }
  },
  "required": [
    "title",
    "htmlContent"
  ]
}