Gleap · Schema

MessageTemplateDTO

Customer FeedbackBug ReportingIn-App SupportFeature RequestsRoadmapsLive ChatAI AgentsSession ReplayHelp CenterTicketingUser FeedbackSoftware-as-a-Service

Properties

Name Type Description
title string
content object
lexorank string
isPublic boolean
users array
attachments array
actions array
View JSON Schema on GitHub

JSON Schema

message-template-d-t-o.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MessageTemplateDTO",
  "type": "object",
  "properties": {
    "title": {
      "type": "string"
    },
    "content": {},
    "lexorank": {
      "type": "string"
    },
    "isPublic": {
      "type": "boolean"
    },
    "users": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "attachments": {
      "items": {},
      "type": "array"
    },
    "actions": {
      "items": {
        "properties": {
          "data": {},
          "type": {
            "type": "string"
          }
        },
        "required": [
          "type"
        ],
        "type": "object"
      },
      "type": "array"
    }
  },
  "required": [
    "title",
    "content",
    "lexorank"
  ]
}