{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/VirtualClusterAuthenticationValidate",
"title": "VirtualClusterAuthenticationValidate",
"description": "Validation rules.",
"type": "object",
"properties": {
"audiences": {
"description": "List of expected audience values. One of them has to match the audience claim in the token.",
"type": "array",
"items": {
"$ref": "#/components/schemas/VirtualClusterAuthenticationAudience"
},
"minItems": 1
},
"issuer": {
"description": "Expected token issuer in the token.",
"type": "string",
"minLength": 1
}
}
}