Files
showbridge-go/schema/routes.schema.json
2026-02-08 09:45:22 -06:00

23 lines
500 B
JSON

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