Neynar · Schema

TextRange

Neynar Farcaster API schema for TextRange

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
end number
start number
View JSON Schema on GitHub

JSON Schema

textrange.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/TextRange",
  "title": "TextRange",
  "description": "Neynar Farcaster API schema for TextRange",
  "properties": {
    "end": {
      "minimum": 0,
      "type": "number"
    },
    "start": {
      "minimum": 0,
      "type": "number"
    }
  },
  "required": [
    "start",
    "end"
  ],
  "type": "object"
}