Neynar · Schema

VideoObject

Neynar Farcaster API schema for VideoObject

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
height string
type string
url string
width string
View JSON Schema on GitHub

JSON Schema

videoobject.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/VideoObject",
  "title": "VideoObject",
  "description": "Neynar Farcaster API schema for VideoObject",
  "properties": {
    "height": {
      "type": "string"
    },
    "type": {
      "type": "string"
    },
    "url": {
      "type": "string"
    },
    "width": {
      "type": "string"
    }
  },
  "required": [
    "url"
  ],
  "type": "object"
}