Merge pull request #379 from Telecominfraproject/WIFI-14140-fix-update-schema-multi-psk

WIFI-14140: fix: sync-ed up ucentral schema with code - added missing code
This commit is contained in:
i-chvets
2024-09-25 09:54:12 -04:00
committed by GitHub

View File

@@ -2411,11 +2411,18 @@ static std::string DefaultAPSchema = R"foo(
"$ref": "#/$defs/interface.ssid.encryption"
},
"multi-psk": {
"type": "array",
"items": {
"$ref": "#/$defs/interface.ssid.multi-psk"
}
},
"anyOf": [
{
"type": "array",
"items": {
"$ref": "#/$defs/interface.ssid.multi-psk"
}
},
{
"type": "boolean"
}
]
},
"rrm": {
"$ref": "#/$defs/interface.ssid.rrm"
},