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: 27b251a059fd7b241e8579488bba0651877c84b6 (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": 2048
    }
  }
}