llamaindex · Schema

CreateProjectRequest

Request body for creating a new project.

Properties

Name Type Description
name string Human-readable name for the new project.
View JSON Schema on GitHub

JSON Schema

llamaindex-createprojectrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/CreateProjectRequest",
  "title": "CreateProjectRequest",
  "type": "object",
  "description": "Request body for creating a new project.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "type": "string",
      "description": "Human-readable name for the new project."
    }
  }
}