Neynar · Schema

MiniappDomainResponse

Response containing domain information, metadata, and validation errors if any

FarcasterSocialDecentralizedWeb3BlockchainSocial GraphCastsChannelsFeedsReactionsNotificationsWebhooksOnchain

Properties

Name Type Description
created_at string Creation timestamp
domain string Domain name
error_message string High-level error message if processing failed
fid integer FID associated with the domain
home_url_metadata object Home URL metadata if available
manifest object
updated_at string Last update timestamp
validation_errors array Validation errors from processing, if any
was_found boolean Whether the domain was found in the table before processing
was_refreshed boolean Whether the domain was refreshed/updated during this request
View JSON Schema on GitHub

JSON Schema

miniappdomainresponse.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://neynar.com/schemas/MiniappDomainResponse",
  "title": "MiniappDomainResponse",
  "description": "Response containing domain information, metadata, and validation errors if any",
  "properties": {
    "created_at": {
      "description": "Creation timestamp",
      "format": "date-time",
      "type": "string"
    },
    "domain": {
      "description": "Domain name",
      "type": "string"
    },
    "error_message": {
      "description": "High-level error message if processing failed",
      "type": "string"
    },
    "fid": {
      "description": "FID associated with the domain",
      "example": 3,
      "format": "int32",
      "minimum": 0,
      "type": "integer"
    },
    "home_url_metadata": {
      "additionalProperties": {},
      "description": "Home URL metadata if available",
      "nullable": true,
      "type": "object"
    },
    "manifest": {
      "$ref": "#/components/schemas/FarcasterManifest"
    },
    "updated_at": {
      "description": "Last update timestamp",
      "format": "date-time",
      "type": "string"
    },
    "validation_errors": {
      "description": "Validation errors from processing, if any",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "was_found": {
      "description": "Whether the domain was found in the table before processing",
      "type": "boolean"
    },
    "was_refreshed": {
      "description": "Whether the domain was refreshed/updated during this request",
      "type": "boolean"
    }
  },
  "required": [
    "domain",
    "fid",
    "manifest",
    "created_at",
    "updated_at",
    "was_found",
    "was_refreshed"
  ],
  "type": "object"
}