hotjar · Schema

SurveyListResponse

A paginated list of surveys with cursor-based pagination support.

Properties

Name Type Description
results array The list of surveys returned in this page.
next_cursor string The cursor value to use for fetching the next page. Null when there are no more results.
View JSON Schema on GitHub

JSON Schema

hotjar-surveylistresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/SurveyListResponse",
  "title": "SurveyListResponse",
  "type": "object",
  "description": "A paginated list of surveys with cursor-based pagination support.",
  "properties": {
    "results": {
      "type": "array",
      "description": "The list of surveys returned in this page.",
      "items": {
        "$ref": "#/components/schemas/Survey"
      }
    },
    "next_cursor": {
      "type": "string",
      "nullable": true,
      "description": "The cursor value to use for fetching the next page. Null when there are no more results."
    }
  }
}