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

system_hook.json « v4 « public_api « schemas « api « fixtures « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3fe3e0d658e7572d48f207427089c8c9a120a952 (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
{
  "type": "object",
  "required": [
    "id",
    "url",
    "created_at",
    "push_events",
    "tag_push_events",
    "merge_requests_events",
    "repository_update_events",
    "enable_ssl_verification",
    "alert_status",
    "disabled_until"
  ],
  "properties": {
    "id": { "type": "integer" },
    "url": { "type": "string" },
    "created_at": { "type": "string" },
    "push_events": { "type": "boolean" },
    "tag_push_events": { "type": "boolean" },
    "merge_requests_events": { "type": "boolean" },
    "repository_update_events": { "type": "boolean" },
    "enable_ssl_verification": { "type": "boolean" },
    "alert_status": { "type": "string", "enum": ["executable", "disabled", "temporarily_disabled"] },
    "disabled_until": { "type": ["string", "null"] }
  },
  "additionalProperties": false
}