Files
showbridge-go/schema/routes.schema.json
2026-03-08 09:22:57 -05:00

21 lines
459 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://showbridge.io/routes.schema.json",
"title": "Routes",
"description": "route configurations",
"type": "array",
"items": {
"type": "object",
"properties": {
"input": {
"type": "string",
"minLength": 1
},
"processors": {
"$ref": "https://showbridge.io/processors.schema.json"
}
},
"required": ["input"]
}
}