{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "RouteIngress",
"type": "object",
"description": "Holds information about the places where a route is exposed.",
"properties": {
"host": {
"type": "string",
"description": "The hostname assigned to the route by the router."
},
"routerName": {
"type": "string",
"description": "The name of the router that admitted this route."
},
"conditions": {
"type": "array"
},
"wildcardPolicy": {
"type": "string",
"description": "The wildcard policy applied by the router."
}
}
}