Facebook · Schema

Paging

Pagination cursors.

Fortune 500AdvertisingContent PublishingMessagingSocial MediaSocial Networking

Properties

Name Type Description
cursors object
next string URL for the next page of results.
previous string URL for the previous page of results.
View JSON Schema on GitHub

JSON Schema

facebook-paging-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Paging",
  "title": "Paging",
  "type": "object",
  "description": "Pagination cursors.",
  "properties": {
    "cursors": {
      "type": "object",
      "properties": {
        "before": {
          "type": "string",
          "description": "Cursor for the previous page."
        },
        "after": {
          "type": "string",
          "description": "Cursor for the next page."
        }
      }
    },
    "next": {
      "type": "string",
      "format": "uri",
      "description": "URL for the next page of results."
    },
    "previous": {
      "type": "string",
      "format": "uri",
      "description": "URL for the previous page of results."
    }
  }
}