Archbee · JSON Structure

Archbee Api Page Structure

Type: object Properties: 8
API DocumentationDocumentation PlatformKnowledge BaseTechnical WritingDeveloper Docs

Page is a JSON Structure definition published by Archbee, describing 8 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

id title slug status content spaceId parentId updatedAt

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

JSON Structure

Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique page identifier",
      "example": "pg_abc123"
    },
    "title": {
      "type": "string",
      "description": "Page title",
      "example": "Getting Started"
    },
    "slug": {
      "type": "string",
      "description": "URL-friendly page identifier",
      "example": "getting-started"
    },
    "status": {
      "type": "string",
      "description": "Page publication status",
      "enum": [
        "draft",
        "published",
        "archived"
      ],
      "example": "published"
    },
    "content": {
      "type": "string",
      "description": "Page content in Markdown",
      "example": "# Getting Started\n\nWelcome to our API..."
    },
    "spaceId": {
      "type": "string",
      "description": "Parent space identifier",
      "example": "sp_abc123"
    },
    "parentId": {
      "type": "string",
      "description": "Parent page identifier (if nested)",
      "example": "pg_parent123"
    },
    "updatedAt": {
      "type": "datetime",
      "description": "Last update timestamp",
      "example": "2026-04-19T10:00:00Z"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/archbee/refs/heads/main/json-structure/archbee-api-page-structure.json",
  "name": "Page"
}