> ## 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.

# Phone Number Category Schema

> Static QR Category. Validate phone number category

Static QR Category. Validate phone number category

## Schema Structure

* **type** (`string`) - enum: phoneNumber **(required)**
* **data** (`object`) **(required)**
  * **number** (`string`) **(required)**

## Schema

<CodeGroup>
  ```json Schema theme={null}
  {
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Phone Number Category Schema",
    "description": "Static QR Category. Validate phone number category",
    "examples": [],
    "additionalProperties": false,
    "required": [
      "type",
      "data"
    ],
    "properties": {
      "type": {
        "type": "string",
        "enum": [
          "phoneNumber"
        ]
      },
      "data": {
        "type": "object",
        "additionalProperties": false,
        "required": [
          "number"
        ],
        "properties": {
          "number": {
            "type": "string"
          }
        }
      }
    }
  }
  ```
</CodeGroup>
