mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-27 05:15:47 +00:00
25 lines
548 B
JSON
25 lines
548 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",
|
|
"minLength": 1
|
|
},
|
|
"processors": {
|
|
"$ref": "https://showbridge.io/processors.schema.json"
|
|
},
|
|
"output": {
|
|
"type": "string",
|
|
"minLength": 1
|
|
}
|
|
},
|
|
"required": ["input", "output"]
|
|
}
|
|
}
|