Galileo · Schema

Galileo Project

A Galileo project: the top-level grouping for datasets, experiments, traces, prompts, and log streams.

AI EvaluationAI ObservabilityGenAIGuardrailsAgentic AILLMTracingExperimentsPromptsDatasets

Properties

Name Type Description
id string Unique identifier of the project.
name string Human-readable project name.
type string Project type (e.g. gen_ai, agent).
created_at string
updated_at string
created_by string User id of the project creator.
View JSON Schema on GitHub

JSON Schema

galileo-ai-project-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/galileo-ai/main/json-schema/galileo-ai-project-schema.json",
  "title": "Galileo Project",
  "description": "A Galileo project: the top-level grouping for datasets, experiments, traces, prompts, and log streams.",
  "type": "object",
  "required": ["id", "name"],
  "properties": {
    "id": {
      "type": "string",
      "format": "uuid",
      "description": "Unique identifier of the project."
    },
    "name": {
      "type": "string",
      "description": "Human-readable project name."
    },
    "type": {
      "type": "string",
      "description": "Project type (e.g. gen_ai, agent)."
    },
    "created_at": { "type": "string", "format": "date-time" },
    "updated_at": { "type": "string", "format": "date-time" },
    "created_by": { "type": "string", "description": "User id of the project creator." }
  },
  "additionalProperties": true
}