Outline · Schema

NavigationNode

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
id string Unique identifier for the document.
title string
url string
children array
View JSON Schema on GitHub

JSON Schema

navigationnode.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "NavigationNode",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the document.",
      "format": "uuid"
    },
    "title": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "children": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/NavigationNode"
      }
    }
  }
}