{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "conversation kind social_media_post",
  "type": "object",
  "properties": {
    "title": {
      "description": "Title of the post",
      "type": "string"
    },
    "channel": {
      "description": "Channel where the post was published",
      "type": "string"
    },
    "owner": {
      "description": "Organization that owns the channel",
      "type": "string"
    },
    "tags": {
      "description": "Tags associated with the post",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "category": {
      "description": "Category the post belongs to",
      "type": "string"
    },
    "url": {
      "description": "The URL that links to the original post",
      "type": "string"
    }
  }
}
