ServiceList

A list of Services returned by list operations.

Container OrchestrationKubernetesLoad BalancingNetworkingService Discovery

Properties

Name Type Description
apiVersion string
kind string
metadata object
items array
View JSON Schema on GitHub

JSON Schema

kubernetes-services-servicelist-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ServiceList",
  "title": "ServiceList",
  "type": "object",
  "description": "A list of Services returned by list operations.",
  "required": [
    "items"
  ],
  "properties": {
    "apiVersion": {
      "type": "string"
    },
    "kind": {
      "type": "string",
      "const": "ServiceList"
    },
    "metadata": {
      "$ref": "#/components/schemas/ListMeta"
    },
    "items": {
      "type": "array",
      "items": {
        "$ref": "#/components/schemas/Service"
      }
    }
  }
}