Slite · Schema

PaginatedUsers

DocumentationKnowledge BaseCollaborationNotesTeamAsynchronous WorkAISearch

Properties

Name Type Description
nextCursor string Cursor for the next page
hasNextPage boolean Whether there are more results
total number Total count of users matching the query
users array List of users
View JSON Schema on GitHub

JSON Schema

PaginatedUsers.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/slite/main/json-schema/PaginatedUsers.json",
  "title": "PaginatedUsers",
  "properties": {
    "nextCursor": {
      "type": "string",
      "nullable": true,
      "description": "Cursor for the next page"
    },
    "hasNextPage": {
      "type": "boolean",
      "description": "Whether there are more results"
    },
    "total": {
      "type": "number",
      "format": "double",
      "description": "Total count of users matching the query"
    },
    "users": {
      "items": {
        "$ref": "#/components/schemas/User"
      },
      "type": "array",
      "description": "List of users"
    }
  },
  "required": [
    "nextCursor",
    "hasNextPage",
    "total",
    "users"
  ],
  "type": "object"
}