Convex · Schema

Project

BackendDatabaseFunctionsReal-TimeReactiveServerlessTypeScript

Properties

Name Type Description
id integer Unique integer identifier for the project.
slug string Human-readable URL-safe identifier for the project within the team.
name string Display name of the project.
team_id integer ID of the team that owns this project.
View JSON Schema on GitHub

JSON Schema

convex-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Project",
  "title": "Project",
  "type": "object",
  "required": [
    "id",
    "slug",
    "name",
    "team_id"
  ],
  "properties": {
    "id": {
      "type": "integer",
      "format": "int64",
      "description": "Unique integer identifier for the project."
    },
    "slug": {
      "type": "string",
      "description": "Human-readable URL-safe identifier for the project within the team."
    },
    "name": {
      "type": "string",
      "description": "Display name of the project."
    },
    "team_id": {
      "type": "integer",
      "format": "int64",
      "description": "ID of the team that owns this project."
    }
  }
}