Box · Schema

Comment (Base)

Base representation of a comment.

Cloud StorageCollaborationContent ManagementDocumentsEnterpriseFile Sharing

Properties

Name Type Description
id string The unique identifier for this comment.
type string `comment`
View JSON Schema on GitHub

JSON Schema

box-comment-base-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Comment--Base",
  "title": "Comment (Base)",
  "type": "object",
  "x-box-resource-id": "comment--base",
  "x-box-sanitized": true,
  "x-box-tag": "comments",
  "x-box-variants": [
    "base",
    "standard",
    "full"
  ],
  "x-box-variant": "base",
  "description": "Base representation of a comment.",
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier for this comment.",
      "example": "11446498"
    },
    "type": {
      "type": "string",
      "description": "`comment`",
      "example": "comment",
      "enum": [
        "comment"
      ]
    }
  }
}