Dixa · Schema

Message

Customer ServiceConversationalOmnichannelCXHelp DeskChatKnowledge Base

Properties

Name Type Description
id string
authorId string
externalId string
createdAt string
attributes object
View JSON Schema on GitHub

JSON Schema

message.json Raw ↑
{
  "title": "Message",
  "type": "object",
  "required": [
    "id",
    "authorId",
    "createdAt",
    "attributes"
  ],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "authorId": {
      "type": "string",
      "format": "uuid"
    },
    "externalId": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "attributes": {
      "$ref": "#/components/schemas/Attributes"
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}