Document360 · Schema

Document360 Category

A category that organizes articles within a Document360 knowledge base project version.

DocumentationKnowledge BaseSaaS

Properties

Name Type Description
id string Unique identifier for the category.
title string Title of the category.
order integer Display order of the category within its parent.
parentCategoryId string Identifier of the parent category, if nested.
projectVersionId string Identifier of the project version containing the category.
View JSON Schema on GitHub

JSON Schema

document360-category-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/document360/refs/heads/main/json-schema/document360-category-schema.json",
  "title": "Document360 Category",
  "description": "A category that organizes articles within a Document360 knowledge base project version.",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the category."
    },
    "title": {
      "type": "string",
      "description": "Title of the category."
    },
    "order": {
      "type": "integer",
      "description": "Display order of the category within its parent."
    },
    "parentCategoryId": {
      "type": "string",
      "description": "Identifier of the parent category, if nested."
    },
    "projectVersionId": {
      "type": "string",
      "description": "Identifier of the project version containing the category."
    }
  },
  "required": ["id", "title"]
}