Mini app v2 object with full user object
{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://neynar.com/schemas/FrameV2WithFullAuthor", "title": "FrameV2WithFullAuthor", "description": "Mini app v2 object with full user object", "properties": { "author": { "$ref": "#/components/schemas/User" }, "frames_url": { "description": "Launch URL of the mini app", "type": "string" }, "image": { "description": "URL of the image", "type": "string" }, "manifest": { "$ref": "#/components/schemas/FarcasterManifest" }, "metadata": { "properties": { "html": { "$ref": "#/components/schemas/HtmlMetadata" } }, "required": [ "html" ], "type": "object" }, "title": { "description": "Button title of a mini app", "type": "string" }, "version": { "description": "Version of the mini app, 'next' for v2, 'vNext' for v1", "type": "string" } }, "required": [ "version", "image", "frames_url" ], "type": "object" }