Gravatar · Schema

CryptoWalletAddress

A crypto currency wallet address the user accepts.

AvatarsIdentityProfilesSocialImagesGraphQLREST

Properties

Name Type Description
label string The label for the crypto currency.
address string The wallet address for the crypto currency.
View JSON Schema on GitHub

JSON Schema

cryptowalletaddress.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/gravatar/refs/heads/main/json-schema/cryptowalletaddress.json",
  "title": "CryptoWalletAddress",
  "type": "object",
  "description": "A crypto currency wallet address the user accepts.",
  "required": [
    "label",
    "address"
  ],
  "properties": {
    "label": {
      "type": "string",
      "description": "The label for the crypto currency.",
      "examples": [
        "ETH"
      ]
    },
    "address": {
      "type": "string",
      "description": "The wallet address for the crypto currency.",
      "examples": [
        "0xABC123..."
      ]
    }
  }
}