Outline · Schema

Pagination

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
offset number
limit number
View JSON Schema on GitHub

JSON Schema

pagination.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Pagination",
  "type": "object",
  "properties": {
    "offset": {
      "type": "number",
      "example": 0
    },
    "limit": {
      "type": "number",
      "example": 25
    }
  }
}