debian-mirror-gitlab/spec/fixtures/api/schemas/ml/get_experiment.json
2022-11-25 23:54:43 +05:30

36 lines
No EOL
633 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"
]
}
}
}
}
}
}