debian-mirror-gitlab/spec/fixtures/api/schemas/ml/get_experiment.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
633 B
JSON
Raw Normal View History

2022-10-11 01:57:18 +05:30
{
"type": "object",
"required": [
"experiment"
],
"properties": {
"experiment": {
"type": "object",
2022-11-25 23:54:43 +05:30
"required": [
2022-10-11 01:57:18 +05:30
"experiment_id",
"name",
"artifact_location",
"lifecycle_stage"
],
2022-11-25 23:54:43 +05:30
"properties": {
"experiment_id": {
"type": "string"
},
"name": {
"type": "string"
},
"artifact_location": {
"type": "string"
},
"lifecycle_stage": {
"type": {
"enum": [
"active",
"deleted"
]
}
}
2022-10-11 01:57:18 +05:30
}
}
}
2022-11-25 23:54:43 +05:30
}