CockroachDB · Schema

PaginationResponse

Pagination metadata included in list responses.

Cluster ManagementCloudDatabaseDistributed SQLInfrastructurePostgreSQL CompatibleSQL

Properties

Name Type Description
next string Token or cursor for retrieving the next page of results.
last string Token or cursor for the last page of results.
time string Server time at which the paginated query was executed.
View JSON Schema on GitHub

JSON Schema

cockroachdb-paginationresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationResponse",
  "title": "PaginationResponse",
  "type": "object",
  "description": "Pagination metadata included in list responses.",
  "properties": {
    "next": {
      "type": "string",
      "description": "Token or cursor for retrieving the next page of results."
    },
    "last": {
      "type": "string",
      "description": "Token or cursor for the last page of results."
    },
    "time": {
      "type": "string",
      "format": "date-time",
      "description": "Server time at which the paginated query was executed."
    }
  }
}