Archbee · Schema

SpaceList

API DocumentationDocumentation PlatformKnowledge BaseTechnical WritingDeveloper Docs

Properties

Name Type Description
spaces array
totalCount integer Total number of spaces
View JSON Schema on GitHub

JSON Schema

archbee-api-space-list-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "spaces": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {},
          "name": {},
          "slug": {},
          "visibility": {},
          "description": {},
          "pageCount": {},
          "createdAt": {}
        }
      }
    },
    "totalCount": {
      "type": "integer",
      "description": "Total number of spaces",
      "example": 3
    }
  },
  "$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-list-schema.json",
  "title": "SpaceList"
}