{
  "description": "Initializer describes the name and the failure policy of an initializer, and what resources it applies to.",
  "required": [
    "name"
  ],
  "properties": {
    "name": {
      "description": "Name is the identifier of the initializer. It will be added to the object that needs to be initialized. Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where \"alwayspullimages\" is the name of the webhook, and kubernetes.io is the name of the organization. Required",
      "type": [
        "string",
        "null"
      ]
    },
    "rules": {
      "description": "Rules describes what resources/subresources the initializer cares about. The initializer cares about an operation if it matches _any_ Rule. Rule.Resources must not include subresources.",
      "type": [
        "array",
        "null"
      ],
      "items": {
        "$ref": "_definitions.json#/definitions/io.k8s.api.admissionregistration.v1alpha1.Rule"
      }
    }
  },
  "$schema": "http://json-schema.org/schema#",
  "type": "object"
}