29 lines
894 B
JSON
29 lines
894 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://gateway.emissary.cadoles.com/spec.json",
|
|
"title": "GatewaySpec",
|
|
"description": "Emissary 'Gateway' specification",
|
|
"type": "object",
|
|
"properties": {
|
|
"gateways": {
|
|
"type": "object",
|
|
"patternProperties": {
|
|
".*": {
|
|
"type": "object",
|
|
"properties": {
|
|
"address": {
|
|
"type": "string"
|
|
},
|
|
"target": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["address", "target"],
|
|
"additionalProperties": false
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"required": ["gateways"],
|
|
"additionalProperties": false
|
|
} |