gitlab-org--gitlab-foss/app/validators/json_schemas/http_integration_payload_at...

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
}
}
}