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.

53 lines
1,013 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": {
2023-03-04 22:38:38 +05:30
"type": "string",
"enum": [
"active",
"deleted"
]
},
"tags": {
"type": "array",
"items": {
"type": "object",
"required": [
"key",
"value"
],
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
}
2022-11-25 23:54:43 +05:30
}
}
2022-10-11 01:57:18 +05:30
}
}
}
2022-11-25 23:54:43 +05:30
}