Red Hat · Schema

PaginatedList

A generic paginated list response.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
count integer
next string
previous string
results array
View JSON Schema on GitHub

JSON Schema

red-hat-ansible-automation-platform-paginated-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PaginatedList",
  "type": "object",
  "description": "A generic paginated list response.",
  "properties": {
    "count": {
      "type": "integer"
    },
    "next": {
      "type": "string"
    },
    "previous": {
      "type": "string"
    },
    "results": {
      "type": "array"
    }
  }
}