tools.ozone.communication.defs

ozone-lexicons.bsky.social

Documentation

templateView object

No description available.

Properties

contentMarkdown string Required

Subject of the message, used in emails.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

disabled boolean Required

No description available.

id string Required

No description available.

lang string language Optional

Message language.

lastUpdatedBy string did Required

DID of the user who last updated the template.

name string Required

Name of the template.

subject string Optional

Content of the template, can contain markdown and variable placeholders.

updatedAt string datetime Required

An RFC 3339 formatted timestamp.

View raw schema
{
  "type": "object",
  "required": [
    "id",
    "name",
    "contentMarkdown",
    "disabled",
    "lastUpdatedBy",
    "createdAt",
    "updatedAt"
  ],
  "properties": {
    "id": {
      "type": "string"
    },
    "lang": {
      "type": "string",
      "format": "language",
      "description": "Message language."
    },
    "name": {
      "type": "string",
      "description": "Name of the template."
    },
    "subject": {
      "type": "string",
      "description": "Content of the template, can contain markdown and variable placeholders."
    },
    "disabled": {
      "type": "boolean"
    },
    "createdAt": {
      "type": "string",
      "format": "datetime"
    },
    "updatedAt": {
      "type": "string",
      "format": "datetime"
    },
    "lastUpdatedBy": {
      "type": "string",
      "format": "did",
      "description": "DID of the user who last updated the template."
    },
    "contentMarkdown": {
      "type": "string",
      "description": "Subject of the message, used in emails."
    }
  }
}

Lexicon Garden

@