Welcome to mirror list, hosted at ThFree Co, Russian Federation.

update_run.json « ml « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b429444120f1134567f03e505d1a93c95121546a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
  "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": { "enum" : ["RUNNING", "SCHEDULED", "FINISHED", "FAILED", "KILLED"] } },
        "lifecycle_stage": { "type": { "enum" : ["active"] } }
      }
    }
  }
}