{
  "description": "HTTPHeader describes a custom header to be used in HTTP probes",
  "properties": {
    "name": {
      "description": "The header field name. This will be canonicalized upon output, so case-variant names will be understood as the same header.",
      "type": [
        "string",
        "null"
      ]
    },
    "value": {
      "description": "The header field value",
      "type": [
        "string",
        "null"
      ]
    }
  },
  "required": [
    "name",
    "value"
  ],
  "type": "object",
  "$schema": "http://json-schema.org/schema#"
}