dokytree/samples/it_v2/schemas_builder/parts/wifi.json

21 lines
260 B
JSON
Raw Normal View History

2024-10-31 17:34:57 +00:00
{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"ssid": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
},
"key": {
"oneOf": [
{"type": "string"},
{"enum": [
"''"
]}
]
}
}
}