gitlab-ce/app/validators/json_schemas/web_hooks_url_variables.json

15 lines
332 B
JSON

{
"$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
}
}
}