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. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Page",
"title": "Page",
"type": "object",
"description": "A Facebook Page.",
"properties": {
"id": {
"type": "string",
"description": "The page ID.",
"example": "200001234567890"
},
"name": {
"type": "string",
"description": "The page name.",
"example": "Example Brand"
},
"category": {
"type": "string",
"description": "Page category.",
"example": "Technology Company"
},
"fan_count": {
"type": "integer",
"description": "Number of page fans.",
"example": 150000
},
"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."
}
}
}