mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-13 11:38:21 +00:00
26 lines
No EOL
618 B
JSON
26 lines
No EOL
618 B
JSON
{
|
|
"$id": "https://nfsense.net/schema/vpn/wireguard_interface.schema.json",
|
|
"title": "Wireguard Interface",
|
|
"type": "object",
|
|
"properties": {
|
|
"public_key": {
|
|
"type": "string"
|
|
},
|
|
"private_key": {
|
|
"type": "string"
|
|
},
|
|
"listen_port": {
|
|
"type": "number"
|
|
},
|
|
"peers": {
|
|
"type": "array",
|
|
"items": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"comment": {
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": ["public_key", "private_key", "listen_port", "peers"]
|
|
} |