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

web_hooks_url_variables.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ea504d114e30944216b0c7dd204181803eb94114 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "description": "WebHook#url_variables",
  "type": "object",
  "additionalProperties": false,
  "maxProperties": 20,
  "patternProperties": {
    "^[A-Za-z]+[0-9]*(?:[._-][A-Za-z0-9]+)*$": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100
    }
  }
}