debian-mirror-gitlab/app/validators/json_schemas/http_integration_payload_attribute_mapping.json

17 lines
377 B
JSON
Raw Normal View History

2021-02-22 17:27:13 +05:30
{
2021-04-29 21:17:54 +05:30
"$schema": "http://json-schema.org/draft-07/schema#",
2021-02-22 17:27:13 +05:30
"type": "object",
"patternProperties": {
".*": {
"type": "object",
"required": ["path", "type"],
"properties": {
"path": { "type": "array" },
2021-03-08 18:12:59 +05:30
"type": { "type": "string" },
"label": { "type": ["string", "null"] }
2021-02-22 17:27:13 +05:30
},
"additionalProperties": false
}
}
}