{
  "description": "A CiliumDatapathPlugin registers a datapath plugin with Cilium and contains\ninformation about its status and how Cilium should interact with it.",
  "properties": {
    "apiVersion": {
      "description": "APIVersion defines the versioned schema of this representation of an object.\nServers should convert recognized schemas to the latest internal value, and\nmay reject unrecognized values.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources",
      "type": [
        "string",
        "null"
      ]
    },
    "kind": {
      "description": "Kind is a string value representing the REST resource this object represents.\nServers may infer this from the endpoint the client submits requests to.\nCannot be updated.\nIn CamelCase.\nMore info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
      "type": [
        "string",
        "null"
      ]
    },
    "metadata": {
      "type": [
        "object",
        "null"
      ]
    },
    "spec": {
      "additionalProperties": false,
      "properties": {
        "attachmentPolicy": {
          "description": "AttachmentPolicy dictates how Cilium behaves when it cannot talk to\na plugin.",
          "enum": [
            "Always",
            "BestEffort"
          ],
          "type": "string"
        },
        "version": {
          "description": "Version is an opaque string used to indicate the datapath plugin version.\nUpdate this when deploying a new version of a datapath plugin to trigger a datapath\nreinitialization.",
          "type": "string"
        }
      },
      "required": [
        "attachmentPolicy",
        "version"
      ],
      "type": "object"
    }
  },
  "required": [
    "spec"
  ],
  "type": "object"
}