Red Hat · Schema

ClusterList

A paginated list of clusters.

CloudContainersEnterpriseHybrid CloudKubernetesLinuxOpen Source

Properties

Name Type Description
kind string The resource kind.
page integer The current page number.
size integer The number of items in this page.
total integer The total number of items across all pages.
items array The list of clusters.
View JSON Schema on GitHub

JSON Schema

red-hat-openshift-cluster-manager-cluster-list-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ClusterList",
  "type": "object",
  "description": "A paginated list of clusters.",
  "properties": {
    "kind": {
      "type": "string",
      "description": "The resource kind."
    },
    "page": {
      "type": "integer",
      "description": "The current page number."
    },
    "size": {
      "type": "integer",
      "description": "The number of items in this page."
    },
    "total": {
      "type": "integer",
      "description": "The total number of items across all pages."
    },
    "items": {
      "type": "array",
      "description": "The list of clusters."
    }
  }
}