{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/PostCastResponse", "title": "PostCastResponse", "description": "Neynar Farcaster API schema for PostCastResponse", "properties": { "cast": { "properties": { "author": { "properties": { "fid": { "$ref": "#/components/schemas/Fid" } }, "required": [ "fid" ], "type": "object" }, "hash": { "example": "0x71d5225f77e0164388b1d4c120825f3a2c1f131c", "pattern": "^(0x)?[a-fA-F0-9]{40}$", "type": "string" }, "text": { "type": "string" } }, "required": [ "hash", "author", "text" ], "type": "object" }, "success": { "type": "boolean" } }, "required": [ "success", "cast" ], "type": "object" }