Neynar · Schema
FrameV2
Mini app v2 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 |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://neynar.com/schemas/FrameV2",
"title": "FrameV2",
"description": "Mini app v2 object",
"properties": {
"author": {
"$ref": "#/components/schemas/UserDehydrated"
},
"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"
}