Input for creating or updating an experiment
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ExperimentInput", "title": "ExperimentInput", "type": "object", "description": "Input for creating or updating an experiment", "properties": { "project_id": { "type": "integer", "format": "int64", "description": "The project this experiment belongs to" }, "name": { "type": "string", "description": "Human-readable name of the experiment" }, "description": { "type": "string", "description": "Description of the experiment" }, "status": { "type": "string", "description": "Current status", "enum": [ "active", "paused", "not_started", "archived" ] } } }