Paging

AdvertisingAnalyticsBusiness ManagementMarketingSocial Media

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-business-manager-paging-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Paging",
  "title": "Paging",
  "type": "object",
  "properties": {
    "cursors": {
      "$ref": "#/components/schemas/PagingCursors"
    },
    "next": {
      "type": "string",
      "description": "URL for the next page of results"
    },
    "previous": {
      "type": "string",
      "description": "URL for the previous page of results"
    }
  }
}