Facebook · Schema

Page

A Facebook Page.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
id string The page ID.
name string The page name.
category string Page category.
fan_count integer Number of page fans.
about string Page description.
website string Page website URL.
link string URL to the Facebook Page.
View JSON Schema on GitHub

JSON Schema

graph-api-page-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/facebook/refs/heads/main/json-schema/graph-api-page-schema.json",
  "title": "Page",
  "description": "A Facebook Page.",
  "type": "object",
  "properties": {
    "id": { "type": "string", "description": "The page ID." },
    "name": { "type": "string", "description": "The page name." },
    "category": { "type": "string", "description": "Page category." },
    "fan_count": { "type": "integer", "description": "Number of page fans." },
    "about": { "type": "string", "description": "Page description." },
    "website": { "type": "string", "format": "uri", "description": "Page website URL." },
    "link": { "type": "string", "format": "uri", "description": "URL to the Facebook Page." }
  }
}