> ## Documentation Index
> Fetch the complete documentation index at: https://docs.scanova.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Wifi category

> Static QR category. Wifi QR Code.

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

<CodeGroup>
  ```json Schema theme={null}
  {
    "$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?"
          }
        }
      }
    }
  }
  ```
</CodeGroup>
