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

http_integration_payload_attribute_mapping.json « json_schemas « validators « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7aebc9591693f0075005df57f69dfaaf0affedba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "patternProperties": {
    ".*": {
      "type": "object",
      "required": ["path", "type"],
      "properties": {
        "path": { "type": "array" },
        "type": { "type": "string" },
        "label": { "type": ["string", "null"] }
      },
      "additionalProperties": false
    }
  }
}