I am creating an action within a custom GPT and when there is a dash in the URL of the openAPI spec it shows an error (Hmm…something seems to have gone wrong). When I remove the dash, the error is gone.
Not working:
{
“openapi”: “3.1.0”,
“info”: {
“title”: “Some Title”,
“description”: “api desc”,
“version”: “v1.0.0”
},
“servers”: [
{
“url”: “url-dash(dot)de”
}
],
…
Working:
{
“openapi”: “3.1.0”,
“info”: {
“title”: “Some Title”,
“description”: “api desc”,
“version”: “v1.0.0”
},
“servers”: [
{
“URL”: urldash(dot)de"
}
],
…