{
  "properties": {
    "spec": {
      "description": "Request authentication configuration for workloads. See more details at: https://istio.io/docs/reference/config/security/request_authentication.html",
      "properties": {
        "jwtRules": {
          "description": "Define the list of JWTs that can be validated at the selected workloads' proxy.",
          "items": {
            "properties": {
              "audiences": {
                "description": "The list of JWT [audiences](https://tools.ietf.org/html/rfc7519#section-4.1.3) that are allowed to access.",
                "items": {
                  "minLength": 1,
                  "type": "string"
                },
                "type": "array"
              },
              "forwardOriginalToken": {
                "description": "If set to true, the original token will be kept for the upstream request.",
                "type": "boolean"
              },
              "fromCookies": {
                "description": "List of cookie names from which JWT is expected.",
                "items": {
                  "minLength": 1,
                  "type": "string"
                },
                "type": "array"
              },
              "fromHeaders": {
                "description": "List of header locations from which JWT is expected.",
                "items": {
                  "properties": {
                    "name": {
                      "description": "The HTTP header name.",
                      "minLength": 1,
                      "type": "string"
                    },
                    "prefix": {
                      "description": "The prefix that should be stripped before decoding the token.",
                      "type": "string"
                    }
                  },
                  "required": [
                    "name"
                  ],
                  "type": "object",
                  "additionalProperties": false
                },
                "type": "array"
              },
              "fromParams": {
                "description": "List of query parameters from which JWT is expected.",
                "items": {
                  "minLength": 1,
                  "type": "string"
                },
                "type": "array"
              },
              "issuer": {
                "description": "Identifies the issuer that issued the JWT.",
                "minLength": 1,
                "type": "string"
              },
              "jwks": {
                "description": "JSON Web Key Set of public keys to validate signature of the JWT.",
                "type": "string"
              },
              "jwks_uri": {
                "description": "URL of the provider's public key set to validate signature of the JWT.",
                "maxLength": 2048,
                "minLength": 1,
                "type": "string",
                "x-kubernetes-validations": [
                  {
                    "message": "url must have scheme http:// or https://",
                    "rule": "url(self).getScheme() in ['http', 'https']"
                  }
                ]
              },
              "jwksUri": {
                "description": "URL of the provider's public key set to validate signature of the JWT.",
                "maxLength": 2048,
                "minLength": 1,
                "type": "string",
                "x-kubernetes-validations": [
                  {
                    "message": "url must have scheme http:// or https://",
                    "rule": "url(self).getScheme() in ['http', 'https']"
                  }
                ]
              },
              "outputClaimToHeaders": {
                "description": "This field specifies a list of operations to copy the claim to HTTP headers on a successfully verified token.",
                "items": {
                  "properties": {
                    "claim": {
                      "description": "The name of the claim to be copied from.",
                      "minLength": 1,
                      "type": "string"
                    },
                    "header": {
                      "description": "The name of the header to be created.",
                      "minLength": 1,
                      "pattern": "^[-_A-Za-z0-9]+$",
                      "type": "string"
                    }
                  },
                  "required": [
                    "header",
                    "claim"
                  ],
                  "type": "object",
                  "additionalProperties": false
                },
                "type": "array"
              },
              "outputPayloadToHeader": {
                "description": "This field specifies the header name to output a successfully verified JWT payload to the backend.",
                "type": "string"
              },
              "timeout": {
                "description": "The maximum amount of time that the resolver, determined by the PILOT_JWT_ENABLE_REMOTE_JWKS environment variable, will spend waiting for the JWKS to be fetched.",
                "type": "string",
                "x-kubernetes-validations": [
                  {
                    "message": "must be a valid duration greater than 1ms",
                    "rule": "duration(self) >= duration('1ms')"
                  }
                ]
              }
            },
            "required": [
              "issuer"
            ],
            "type": "object",
            "x-kubernetes-validations": [
              {
                "message": "only one of jwks or jwksUri can be set",
                "rule": "(has(self.jwksUri)?1:0)+(has(self.jwks_uri)?1:0)+(has(self.jwks)?1:0)<=1"
              }
            ],
            "additionalProperties": false
          },
          "maxItems": 4096,
          "type": "array"
        },
        "selector": {
          "description": "Optional.",
          "properties": {
            "matchLabels": {
              "additionalProperties": {
                "maxLength": 63,
                "type": "string",
                "x-kubernetes-validations": [
                  {
                    "message": "wildcard not allowed in label value match",
                    "rule": "!self.contains('*')"
                  }
                ]
              },
              "description": "One or more labels that indicate a specific set of pods/VMs on which a policy should be applied.",
              "maxProperties": 4096,
              "type": "object",
              "x-kubernetes-validations": [
                {
                  "message": "wildcard not allowed in label key match",
                  "rule": "self.all(key, !key.contains('*'))"
                },
                {
                  "message": "key must not be empty",
                  "rule": "self.all(key, key.size() != 0)"
                }
              ]
            }
          },
          "type": "object",
          "additionalProperties": false
        },
        "targetRef": {
          "properties": {
            "group": {
              "description": "group is the group of the target resource.",
              "maxLength": 253,
              "pattern": "^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
              "type": "string"
            },
            "kind": {
              "description": "kind is kind of the target resource.",
              "maxLength": 63,
              "minLength": 1,
              "pattern": "^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$",
              "type": "string"
            },
            "name": {
              "description": "name is the name of the target resource.",
              "maxLength": 253,
              "minLength": 1,
              "type": "string"
            },
            "namespace": {
              "description": "namespace is the namespace of the referent.",
              "type": "string",
              "x-kubernetes-validations": [
                {
                  "message": "cross namespace referencing is not currently supported",
                  "rule": "self.size() == 0"
                }
              ]
            }
          },
          "required": [
            "kind",
            "name"
          ],
          "type": "object",
          "x-kubernetes-validations": [
            {
              "message": "Support kinds are core/Service and gateway.networking.k8s.io/Gateway",
              "rule": "[self.group, self.kind] in [['core','Service'], ['','Service'], ['gateway.networking.k8s.io','Gateway']]"
            }
          ],
          "additionalProperties": false
        },
        "targetRefs": {
          "description": "Optional.",
          "items": {
            "properties": {
              "group": {
                "description": "group is the group of the target resource.",
                "maxLength": 253,
                "pattern": "^$|^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*$",
                "type": "string"
              },
              "kind": {
                "description": "kind is kind of the target resource.",
                "maxLength": 63,
                "minLength": 1,
                "pattern": "^[a-zA-Z]([-a-zA-Z0-9]*[a-zA-Z0-9])?$",
                "type": "string"
              },
              "name": {
                "description": "name is the name of the target resource.",
                "maxLength": 253,
                "minLength": 1,
                "type": "string"
              },
              "namespace": {
                "description": "namespace is the namespace of the referent.",
                "type": "string",
                "x-kubernetes-validations": [
                  {
                    "message": "cross namespace referencing is not currently supported",
                    "rule": "self.size() == 0"
                  }
                ]
              }
            },
            "required": [
              "kind",
              "name"
            ],
            "type": "object",
            "x-kubernetes-validations": [
              {
                "message": "Support kinds are core/Service and gateway.networking.k8s.io/Gateway",
                "rule": "[self.group, self.kind] in [['core','Service'], ['','Service'], ['gateway.networking.k8s.io','Gateway']]"
              }
            ],
            "additionalProperties": false
          },
          "type": "array"
        }
      },
      "type": "object",
      "x-kubernetes-validations": [
        {
          "message": "only one of targetRefs or workloadSelector can be set",
          "rule": "(has(self.selector)?1:0)+(has(self.targetRef)?1:0)+(has(self.targetRefs)?1:0)<=1"
        }
      ],
      "additionalProperties": false
    },
    "status": {
      "type": "object",
      "x-kubernetes-preserve-unknown-fields": true
    }
  },
  "type": "object"
}
