Facebook · Schema

PostList

Paginated list of posts.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
data array Array of posts.
paging object
View JSON Schema on GitHub

JSON Schema

facebook-postlist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PostList",
  "title": "PostList",
  "type": "object",
  "description": "Paginated list of posts.",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Post"
      },
      "description": "Array of posts."
    },
    "paging": {
      "$ref": "#/components/schemas/Paging"
    }
  }
}