{
  "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.",
      "type": [
        "string",
        "null"
      ]
    },
    "key": {
      "description": "Required. The taint key to be applied to a node.",
      "type": [
        "string",
        "null"
      ]
    },
    "timeAdded": {
      "$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time",
      "description": "TimeAdded represents the time at which the taint was added."
    },
    "value": {
      "description": "The taint value corresponding to the taint key.",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "key",
    "effect"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}