{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://nao1215.github.io/jsonize/schemas/kubectl/services.json",
  "title": "kubectl/services",
  "description": "kubectl get services, with -A and -o wide",
  "x-jsonize": {
    "definition": "kubectl/services",
    "version": 2
  },
  "type": "array",
  "items": {
    "type": "object",
    "properties": {
      "age": {
        "type": "string"
      },
      "cluster_ip": {
        "type": [
          "string",
          "null"
        ]
      },
      "external_ip": {
        "type": [
          "string",
          "null"
        ]
      },
      "name": {
        "type": "string"
      },
      "ports": {
        "type": [
          "array",
          "null"
        ],
        "items": {
          "type": "string"
        }
      },
      "selector": {
        "type": [
          "string",
          "null"
        ]
      },
      "type": {
        "type": "string"
      }
    },
    "additionalProperties": {
      "type": [
        "string",
        "null"
      ]
    }
  }
}
