mirror of
https://github.com/jwetzell/showbridge-go.git
synced 2026-04-26 12:55:29 +00:00
26 lines
610 B
JSON
26 lines
610 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://showbridge.io/config.schema.json",
|
|
"title": "Config",
|
|
"description": "showbridge configuration",
|
|
"type": "object",
|
|
"properties": {
|
|
"api": {
|
|
"type": "object",
|
|
"properties": {
|
|
"port": {
|
|
"type": "integer",
|
|
"description": "Port for the API server to listen on"
|
|
}
|
|
},
|
|
"required": ["port"]
|
|
},
|
|
"modules": {
|
|
"$ref": "https://showbridge.io/modules.schema.json"
|
|
},
|
|
"routes": {
|
|
"$ref": "https://showbridge.io/routes.schema.json"
|
|
}
|
|
}
|
|
}
|