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

# Web3UserInfo Schema

> Web3UserInfo JSON Schema for 0xArchive OpenAPI responses and field contracts. Includes route metadata, schemas, examples, and implementation notes.

Source OpenAPI: 0xArchive API 1.6.1; 147 paths; 128 component schemas.

Use the JSON Schema block below for field-level types, required fields, nested objects, and enum values.

## Required Fields

| Field            | Type        | Description                                    |
| ---------------- | ----------- | ---------------------------------------------- |
| `email`          | string      | Account email associated with the wallet user. |
| `id`             | string:uuid | Defined by the generated JSON Schema block.    |
| `tier`           | string      | Current subscription tier.                     |
| `wallet_address` | string      | Authenticated wallet address.                  |

## JSON Schema

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Web3UserInfo",
  "type": "object",
  "required": [
    "email",
    "id",
    "tier",
    "wallet_address"
  ],
  "properties": {
    "email": {
      "description": "Account email associated with the wallet user.",
      "type": "string"
    },
    "id": {
      "type": "string",
      "format": "uuid"
    },
    "tier": {
      "description": "Current subscription tier.",
      "type": "string",
      "example": "free"
    },
    "wallet_address": {
      "description": "Authenticated wallet address.",
      "type": "string",
      "example": "0x742d35cc6634c0532925a3b844bc9e7595f2bd18"
    }
  }
}
```

## Referenced By

Use this shared schema with the generated component index and route-specific endpoint pages during implementation.
