{
  "description": "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition",
  "required": [
    "plural",
    "kind"
  ],
  "properties": {
    "kind": {
      "description": "Kind is the serialized kind of the resource.  It is normally CamelCase and singular.",
      "type": [
        "string",
        "null"
      ]
    },
    "listKind": {
      "description": "ListKind is the serialized kind of the list for this resource.  Defaults to <kind>List.",
      "type": [
        "string",
        "null"
      ]
    },
    "plural": {
      "description": "Plural is the plural name of the resource to serve.  It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.",
      "type": [
        "string",
        "null"
      ]
    },
    "shortNames": {
      "description": "ShortNames are short names for the resource.  It must be all lowercase.",
      "type": [
        "array",
        "null"
      ],
      "items": {
        "type": [
          "string",
          "null"
        ]
      }
    },
    "singular": {
      "description": "Singular is the singular name of the resource.  It must be all lowercase  Defaults to lowercased <kind>",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "$schema": "http://json-schema.org/schema#",
  "type": "object"
}