Theneo · Schema

Theneo Project

A Project represents an API documentation project on the Theneo platform, containing imported API specifications and published documentation.

API DocumentationDeveloper PortalDeveloper ToolsDocumentation PlatformAIAI Co-PilotMCPPlatform

Properties

Name Type Description
id string The unique identifier of the project.
name string The name of the project.
slug string The URL-friendly slug of the project.
workspaceId string The identifier of the workspace this project belongs to.
description string A description of the project.
published boolean Whether the project documentation is published.
createdAt string The timestamp when the project was created.
updatedAt string The timestamp when the project was last updated.
View JSON Schema on GitHub

JSON Schema

project.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://github.com/api-evangelist/theneo/blob/main/json-schema/project.json",
  "title": "Theneo Project",
  "description": "A Project represents an API documentation project on the Theneo platform, containing imported API specifications and published documentation.",
  "type": "object",
  "required": ["name"],
  "properties": {
    "id": {
      "type": "string",
      "description": "The unique identifier of the project."
    },
    "name": {
      "type": "string",
      "description": "The name of the project."
    },
    "slug": {
      "type": "string",
      "description": "The URL-friendly slug of the project."
    },
    "workspaceId": {
      "type": "string",
      "description": "The identifier of the workspace this project belongs to."
    },
    "description": {
      "type": "string",
      "description": "A description of the project."
    },
    "published": {
      "type": "boolean",
      "description": "Whether the project documentation is published."
    },
    "createdAt": {
      "type": "string",
      "format": "date-time",
      "description": "The timestamp when the project was created."
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time",
      "description": "The timestamp when the project was last updated."
    }
  }
}