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

project_mirror.json « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0f626c04f24dca8d70dfabc1fadbc200d92f94e2 (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
{
  "type": "object",
  "required": [
    "id",
    "url",
    "update_status",
    "last_update_at",
    "last_update_started_at",
    "last_successful_update_at",
    "last_error"
  ],
  "properties": {
    "id": {
      "type": "integer"
    },
    "url": {
      "type": "string"
    },
    "update_status": {
      "type": "string"
    },
    "last_update_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_update_started_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_successful_update_at": {
      "type": [
        "string",
        "null"
      ]
    },
    "last_error": {
      "type": [
        "string",
        "null"
      ]
    }
  },
  "additionalProperties": false
}