debian-mirror-gitlab/spec/fixtures/api/schemas/ml/get_experiment.json
2022-10-11 01:57:18 +05:30

23 lines
501 B
JSON

{
"type": "object",
"required": [
"experiment"
],
"properties": {
"experiment": {
"type": "object",
"required" : [
"experiment_id",
"name",
"artifact_location",
"lifecycle_stage"
],
"properties" : {
"experiment_id": { "type": "string" },
"name": { "type": "string" },
"artifact_location": { "type": "string" },
"lifecycle_stage": { "type": { "enum" : ["active", "deleted"] } }
}
}
}
}