Unified.to · Schema

KmsComment

IntegrationsUnified API

Properties

Name Type Description
content string
content_type string
created_at string
id string
page_id string
parent_id string
raw object
type string
updated_at string
user_id string
View JSON Schema on GitHub

JSON Schema

unified-to-kmscomment-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/KmsComment",
  "title": "KmsComment",
  "properties": {
    "content": {
      "type": "string"
    },
    "content_type": {
      "enum": [
        "HTML",
        "MARKDOWN",
        "TEXT",
        "OTHER"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "created_at": {
      "format": "date-time",
      "type": "string"
    },
    "id": {
      "type": "string"
    },
    "page_id": {
      "type": "string"
    },
    "parent_id": {
      "type": "string"
    },
    "raw": {
      "additionalProperties": true,
      "type": "object"
    },
    "type": {
      "enum": [
        "PAGE_INLINE",
        "PAGE"
      ],
      "type": "string",
      "x-speakeasy-unknown-values": "allow"
    },
    "updated_at": {
      "format": "date-time",
      "type": "string"
    },
    "user_id": {
      "type": "string"
    }
  },
  "required": [
    "content"
  ],
  "type": "object"
}