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

remote_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: 87bde189db52f59846f665a97a308eecc1fbc15c (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
{
  "type": "object",
  "required": [
    "id",
    "enabled",
    "url",
    "update_status",
    "last_update_at",
    "last_update_started_at",
    "last_successful_update_at",
    "last_error",
    "only_protected_branches"
  ],
  "properties": {
    "id": { "type": "integer" },
    "enabled": { "type": "boolean" },
    "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"] },
    "only_protected_branches": { "type": "boolean" },
    "keep_divergent_refs": { "type": ["boolean", "null"] }
  },
  "additionalProperties": false
}