Archbee · Schema

Space

API DocumentationDocumentation PlatformKnowledge BaseTechnical WritingDeveloper Docs

Properties

Name Type Description
id string Unique space identifier
name string Space display name
slug string URL-friendly space identifier
visibility string Space visibility
description string Space description
pageCount integer Number of pages in the space
createdAt string Space creation timestamp
View JSON Schema on GitHub

JSON Schema

archbee-api-space-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique space identifier",
      "example": "sp_abc123"
    },
    "name": {
      "type": "string",
      "description": "Space display name",
      "example": "Developer Docs"
    },
    "slug": {
      "type": "string",
      "description": "URL-friendly space identifier",
      "example": "developer-docs"
    },
    "visibility": {
      "type": "string",
      "description": "Space visibility",
      "enum": [
        "public",
        "private",
        "password-protected"
      ],
      "example": "public"
    },
    "description": {
      "type": "string",
      "description": "Space description",
      "example": "Main developer documentation"
    },
    "pageCount": {
      "type": "integer",
      "description": "Number of pages in the space",
      "example": 42
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "Space creation timestamp",
      "example": "2026-01-15T10: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-space-schema.json",
  "title": "Space"
}