{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/UserDehydrated", "title": "UserDehydrated", "description": "Neynar Farcaster API schema for UserDehydrated", "properties": { "custody_address": { "$ref": "#/components/schemas/EthAddress" }, "display_name": { "nullable": true, "type": "string" }, "fid": { "$ref": "#/components/schemas/Fid" }, "object": { "enum": [ "user_dehydrated" ], "type": "string" }, "pfp_url": { "nullable": true, "type": "string" }, "score": { "type": "number" }, "username": { "type": "string" } }, "required": [ "object", "fid" ], "type": "object" }