Neynar · Schema

LocationAddress

Neynar Farcaster API schema for LocationAddress

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
city string
country string
country_code string
state string
state_code string
View JSON Schema on GitHub

JSON Schema

locationaddress.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/LocationAddress",
  "title": "LocationAddress",
  "description": "Neynar Farcaster API schema for LocationAddress",
  "properties": {
    "city": {
      "type": "string"
    },
    "country": {
      "type": "string"
    },
    "country_code": {
      "type": "string"
    },
    "state": {
      "type": "string"
    },
    "state_code": {
      "type": "string"
    }
  },
  "required": [
    "city",
    "country"
  ],
  "type": "object"
}