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

get_latest_versions.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: cb2308fa637f826b265308de6b53d7407722f488 (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
{
  "type": "object",
  "required": [
    "model_versions"
  ],
  "properties": {
    "model_versions": {
      "type": "array",
      "items": [
        {
          "type": "object",
          "required": [
            "name",
            "version",
            "creation_timestamp",
            "last_updated_timestamp",
            "user_id",
            "current_stage",
            "description",
            "source",
            "run_id",
            "status",
            "status_message",
            "metadata",
            "run_link",
            "aliases"
          ],
          "properties": {
            "name": {
              "type": "string"
            },
            "version": {
              "type": "string"
            },
            "creation_timestamp": {
              "type": "integer"
            },
            "last_updated_timestamp": {
              "type": "integer"
            },
            "user_id": {
              "type": "null"
            },
            "current_stage": {
              "type": "string"
            },
            "description": {
              "type": "string"
            },
            "source": {
              "type": "string"
            },
            "run_id": {
              "type": "string"
            },
            "status": {
              "type": "string"
            },
            "status_message": {
              "type": "string"
            },
            "metadata": {
              "type": "array",
              "items": {
              }
            },
            "run_link": {
              "type": "string"
            },
            "aliases": {
              "type": "array",
              "items": {
              }
            }
          }
        }
      ]
    }
  }
}