{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ModelVersionRequest", "title": "ModelVersionRequest", "type": "object", "properties": { "version": { "type": "string" }, "description": { "type": "string" }, "status": { "type": "string", "enum": [ "draft", "staging", "production", "archived" ] }, "artifact_path": { "type": "string" }, "metrics": { "type": "object", "additionalProperties": { "type": "number" } }, "parameters": { "type": "object", "additionalProperties": { "type": "string" } } }, "required": [ "version" ] }