Neynar · Schema

FrameV2WithFullAuthor

Mini app v2 object with full user object

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
author object
frames_url string Launch URL of the mini app
image string URL of the image
manifest object
metadata object
title string Button title of a mini app
version string Version of the mini app, 'next' for v2, 'vNext' for v1
View JSON Schema on GitHub

JSON Schema

framev2withfullauthor.json Raw ↑
{
  "$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"
}