Nutanix · Schema

PaginationMetadata

Pagination metadata for list responses.

Cloud ManagementHyperconvergedInfrastructureVirtualizationKubernetesDatabase

Properties

Name Type Description
grand_total_entities integer Total number of entities.
total_entities integer Number of entities in the current response.
count integer Count of entities returned.
start_index integer Starting index of the returned entities.
end_index integer Ending index of the returned entities.
View JSON Schema on GitHub

JSON Schema

nutanix-paginationmetadata-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationMetadata",
  "title": "PaginationMetadata",
  "type": "object",
  "description": "Pagination metadata for list responses.",
  "properties": {
    "grand_total_entities": {
      "type": "integer",
      "description": "Total number of entities."
    },
    "total_entities": {
      "type": "integer",
      "description": "Number of entities in the current response."
    },
    "count": {
      "type": "integer",
      "description": "Count of entities returned."
    },
    "start_index": {
      "type": "integer",
      "description": "Starting index of the returned entities."
    },
    "end_index": {
      "type": "integer",
      "description": "Ending index of the returned entities."
    }
  }
}