2023-02-28 15:50:35 +01:00
|
|
|
{
|
|
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
2023-03-21 13:28:41 +01:00
|
|
|
"$id": "https://proxy.emissary.cadoles.com/spec.json",
|
|
|
|
"title": "ProxySpec",
|
|
|
|
"description": "Emissary 'Proxy' specification",
|
2023-02-28 15:50:35 +01:00
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
2023-03-21 13:28:41 +01:00
|
|
|
"proxies": {
|
2023-02-28 15:50:35 +01:00
|
|
|
"type": "object",
|
|
|
|
"patternProperties": {
|
|
|
|
".*": {
|
|
|
|
"type": "object",
|
|
|
|
"properties": {
|
|
|
|
"address": {
|
|
|
|
"type": "string"
|
|
|
|
},
|
|
|
|
"target": {
|
|
|
|
"type": "string"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"required": ["address", "target"],
|
|
|
|
"additionalProperties": false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2023-03-21 13:28:41 +01:00
|
|
|
"required": ["proxies"],
|
2023-02-28 15:50:35 +01:00
|
|
|
"additionalProperties": false
|
|
|
|
}
|