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

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: 2418f44b21fe4beddf7a8fab6b64b80729546c60 (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
{
  "type": "object",
  "required": [
    "run"
  ],
  "properties": {
    "run": {
      "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_location": { "type": "string" },
            "start_time": { "type": "integer" },
            "end_time": { "type": "integer" },
            "user_id": "",
            "status": { "type": { "enum" : ["RUNNING", "SCHEDULED", "FINISHED", "FAILED", "KILLED"] } },
            "lifecycle_stage": { "type": { "enum" : ["active"] } }
          }
        },
        "data": {
          "type": "object"
        }
      }
    }
  }
}