Given an OpenAPI specification which has a set of servers which include a variable, e.g.: ```yaml servers: - url: https://api.{region}.example.com variables: region: default: eu-central-1 enum: - eu-central-1 - us-west-1 - us-east-1 ``` The example snippet in the OpenAPI render will return something like the following: ``` curl --request GET \ --url https://api./%7Bregion%7D.example.com/v1/example \ --header 'Content-Type: application/json' ```