debian-mirror-gitlab/spec/fixtures/api/schemas/ml/update_run.json
2023-03-04 22:38:38 +05:30

63 lines
No EOL
1.1 KiB
JSON

{
"type": "object",
"required": [
"run_info"
],
"properties": {
"run_info": {
"type": "object",
"required": [
"run_id",
"run_uuid",
"user_id",
"experiment_id",
"status",
"start_time",
"artifact_uri",
"lifecycle_stage"
],
"optional": [
"end_time"
],
"properties": {
"run_id": {
"type": "string"
},
"run_uuid": {
"type": "string"
},
"experiment_id": {
"type": "string"
},
"artifact_location": {
"type": "string"
},
"start_time": {
"type": "integer"
},
"end_time": {
"type": "integer"
},
"user_id": {
"type": "string"
},
"status": {
"type": "string",
"enum": [
"RUNNING",
"SCHEDULED",
"FINISHED",
"FAILED",
"KILLED"
]
},
"lifecycle_stage": {
"type": "string",
"enum": [
"active"
]
}
}
}
}
}