Common Room · Schema

MarkdownContent

Community IntelligenceGo-to-MarketMember SignalsGitHubSlackDiscordLinkedInSales IntelligenceContact ManagementWebhooks

Properties

Name Type Description
type string
value string Markdown content of the activity
View JSON Schema on GitHub

JSON Schema

common-room-core-markdowncontent-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api.commonroom.io/schemas/core/markdowncontent",
  "title": "MarkdownContent",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "enum": [
        "markdown"
      ]
    },
    "value": {
      "type": "string",
      "description": "Markdown content of the activity"
    }
  },
  "required": [
    "type",
    "value"
  ]
}