summaryrefslogtreecommitdiff
path: root/app/validators/json_schemas/http_integration_payload_attribute_mapping.json
blob: a194daf5e453fe2ae725e0d99807b8ca9e6fe538 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "type": "object",
  "patternProperties": {
    ".*": {
      "type": "object",
      "required": ["path", "type"],
      "properties": {
        "path": { "type": "array" },
        "type": { "type": "string" },
        "label": { "type": ["string", "null"] }
      },
      "additionalProperties": false
    }
  }
}