Tettra · Schema

Category

A Tettra category used to organize pages and questions.

Knowledge ManagementAITeam CollaborationWikiSlack IntegrationQ&A BotInternal Documentation

Properties

Name Type Description
id integer Unique identifier for the category.
name string Name of the category.
url string URL of the category in Tettra.
View JSON Schema on GitHub

JSON Schema

category.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/tettra/main/json-schema/category.json",
  "title": "Category",
  "description": "A Tettra category used to organize pages and questions.",
  "type": "object",
  "properties": {
    "id": {
      "type": "integer",
      "description": "Unique identifier for the category."
    },
    "name": {
      "type": "string",
      "description": "Name of the category."
    },
    "url": {
      "type": "string",
      "format": "uri",
      "description": "URL of the category in Tettra."
    }
  },
  "required": ["id", "name"]
}