summaryrefslogtreecommitdiff
path: root/app/validators/json_schemas/web_hooks_url_variables.json
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
    }
  }
}