{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/VerificationChainId", "title": "VerificationChainId", "description": "Chain ID for farcaster verifications. 0 for EOA verifications, 1 or 10 for contract verifications", "anyOf": [ { "enum": [ 0 ], "type": "number" }, { "enum": [ 1 ], "type": "number" }, { "enum": [ 10 ], "type": "number" } ], "default": 0, "format": "int32", "type": "integer" }