Archbee · JSON Structure

Archbee Api Page Request Structure

Type: object Properties: 4 Required: 1
API DocumentationDocumentation PlatformKnowledge BaseTechnical WritingDeveloper Docs

PageRequest is a JSON Structure definition published by Archbee, describing 4 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

title content status parentId

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "title"
  ],
  "properties": {
    "title": {
      "type": "string",
      "description": "Page title",
      "example": "Quick Start Guide"
    },
    "content": {
      "type": "string",
      "description": "Page content in Markdown",
      "example": "# Quick Start\n\nWelcome to our API..."
    },
    "status": {
      "type": "string",
      "description": "Page status",
      "enum": [
        "draft",
        "published"
      ],
      "example": "draft"
    },
    "parentId": {
      "type": "string",
      "description": "Parent page ID for nested pages",
      "example": "pg_parent123"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/archbee/refs/heads/main/json-structure/archbee-api-page-request-structure.json",
  "name": "PageRequest"
}