Skip to main content
Source OpenAPI: 0xArchive API 1.5.0; 140 paths; 119 component schemas. Use the JSON Schema block below for field-level types, required fields, nested objects, and enum values.

Required Fields

FieldTypeDescription
emailstringAccount email associated with the wallet user.
idstring:uuidDefined by the generated JSON Schema block.
tierstringCurrent subscription tier.
wallet_addressstringAuthenticated wallet address.

JSON Schema

{
  "$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.
Last modified on June 19, 2026