Skip to main content
Static QR category. Wifi QR Code.

Schema Structure

  • type (string) - enum: wifi (required)
  • data (object) (required)
    • authentication (string) - enum: WPA, WPA2, WEP, none (required) - Authentication type of the wifi network
    • ssid (string) (required) - SSID of the Wifi
    • password (string) - Wifi Password
    • hidden (boolean) - default: False - SSID is hidden?

Schema

{
  "$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?"
        }
      }
    }
  }
}