Archbee · JSON Structure

Archbee Api Space Request Structure

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

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

Properties

name visibility description

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

JSON Structure

Raw ↑
{
  "type": "object",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Space name",
      "example": "API Reference"
    },
    "visibility": {
      "type": "string",
      "description": "Space visibility",
      "enum": [
        "public",
        "private",
        "password-protected"
      ],
      "example": "public"
    },
    "description": {
      "type": "string",
      "description": "Space description",
      "example": "API reference documentation"
    }
  },
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/archbee/refs/heads/main/json-structure/archbee-api-space-request-structure.json",
  "name": "SpaceRequest"
}