mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 12:55:29 +00:00
21 lines
459 B
JSON
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"]
|
|
}
|
|
}
|