{
  "description": "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.",
  "properties": {
    "effect": {
      "description": "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.\n\n",
      "type": [
        "string",
        "null"
      ]
    },
    "key": {
      "description": "Required. The taint key to be applied to a node.",
      "type": [
        "string",
        "null"
      ]
    },
    "timeAdded": {
      "$ref": "https://raw.githubusercontent.com/yannh/kubernetes-json-schema/master/v1.23.13/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints."
    },
    "value": {
      "description": "The taint value corresponding to the taint key.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "key",
    "effect"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}