{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Wifi category",
"description": "Static QR category. Wifi QR Code.",
"examples": [],
"additionalProperties": false,
"required": [
"type",
"data"
],
"properties": {
"type": {
"type": "string",
"enum": [
"wifi"
]
},
"data": {
"type": "object",
"additionalProperties": false,
"required": [
"authentication",
"ssid"
],
"properties": {
"authentication": {
"type": "string",
"description": "Authentication type of the wifi network",
"enum": [
"WPA",
"WPA2",
"WEP",
"none"
]
},
"ssid": {
"type": "string",
"description": "SSID of the Wifi"
},
"password": {
"type": "string",
"description": "Wifi Password"
},
"hidden": {
"type": "boolean",
"default": false,
"description": "SSID is hidden?"
}
}
}
}
}