{ "$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 }