Archbee · Schema
Page
API DocumentationDocumentation PlatformKnowledge BaseTechnical WritingDeveloper Docs
Properties
| Name | Type | Description |
|---|---|---|
| id | string | Unique page identifier |
| title | string | Page title |
| slug | string | URL-friendly page identifier |
| status | string | Page publication status |
| content | string | Page content in Markdown |
| spaceId | string | Parent space identifier |
| parentId | string | Parent page identifier (if nested) |
| updatedAt | string | Last update timestamp |
JSON Schema
{
"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": "string",
"format": "date-time",
"description": "Last update timestamp",
"example": "2026-04-19T10:00:00Z"
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/archbee/refs/heads/main/json-schema/archbee-api-page-schema.json",
"title": "Page"
}