debian-mirror-gitlab/app/validators/json_schemas/http_integration_payload_attribute_mapping.json
2021-04-29 21:17:54 +05:30

17 lines
377 B
JSON

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