Figma · Schema

Pagination

Cursor-based pagination metadata.

CollaborationDesignGraphicsInterfacesPrototypesPrototypingUI/UX

Properties

Name Type Description
before number Cursor value for the page before the current one.
after number Cursor value for the page after the current one.
View JSON Schema on GitHub

JSON Schema

figma-rest-pagination-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Pagination",
  "type": "object",
  "description": "Cursor-based pagination metadata.",
  "properties": {
    "before": {
      "type": "number",
      "description": "Cursor value for the page before the current one."
    },
    "after": {
      "type": "number",
      "description": "Cursor value for the page after the current one."
    }
  }
}