Trellix · Schema

PaginationMeta

Cloud SecurityCybersecurityEndpoint SecurityThreat DetectionThreat IntelligenceXDR

Properties

Name Type Description
totalItems integer Total number of items matching the query
limit integer Number of items per page
offset integer Number of items skipped
View JSON Schema on GitHub

JSON Schema

trellix-paginationmeta-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/PaginationMeta",
  "title": "PaginationMeta",
  "type": "object",
  "properties": {
    "totalItems": {
      "type": "integer",
      "description": "Total number of items matching the query"
    },
    "limit": {
      "type": "integer",
      "description": "Number of items per page"
    },
    "offset": {
      "type": "integer",
      "description": "Number of items skipped"
    }
  }
}