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

search_runs.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: c1db2c9f15cba8067e2aced36fbf1674f33558b7 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
  "type": "object",
  "required": [
    "runs",
    "next_page_token"
  ],
  "properties": {
    "runs": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "info",
          "data"
        ],
        "properties": {
          "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_uri": {
                "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"
                ]
              }
            }
          },
          "data": {
            "type": "object"
          }
        }
      }
    },
    "next_page_token": {
      "type": "string"
    }
  }
}