mirror of
https://github.com/foomo/posh-providers.git
synced 2025-10-16 12:35:41 +00:00
46 lines
931 B
JSON
46 lines
931 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://github.com/foomo/posh-providers/cloudflare/cloudflared/config",
|
|
"$ref": "#/$defs/Config",
|
|
"$defs": {
|
|
"Access": {
|
|
"properties": {
|
|
"type": {
|
|
"type": "string"
|
|
},
|
|
"hostname": {
|
|
"type": "string"
|
|
},
|
|
"port": {
|
|
"type": "integer"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"type",
|
|
"hostname",
|
|
"port"
|
|
]
|
|
},
|
|
"Config": {
|
|
"properties": {
|
|
"path": {
|
|
"type": "string"
|
|
},
|
|
"access": {
|
|
"additionalProperties": {
|
|
"$ref": "#/$defs/Access"
|
|
},
|
|
"type": "object"
|
|
}
|
|
},
|
|
"additionalProperties": false,
|
|
"type": "object",
|
|
"required": [
|
|
"path",
|
|
"access"
|
|
]
|
|
}
|
|
}
|
|
} |