Last active
October 26, 2017 17:03
-
-
Save rnhurt/d8ffcda5d363e61c40aa232e596d6154 to your computer and use it in GitHub Desktop.
[Go] GoDaddy API files not being generated properly #6811
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "2.4.9", | |
"apis": [ | |
{ | |
"operations": [{ "method": "GET" } ], | |
"path": "/v1/domains" | |
} | |
], | |
"models": { | |
"Error": { | |
"properties": { | |
"fields": { | |
"description": ["Arrays in the description", "seems to break the generator"], | |
"type": "array" | |
} | |
} | |
} | |
}, | |
"resourcePath": "/v1/domains", | |
"swaggerVersion": "1.2" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"apiVersion": "2.4.9", | |
"apis": [ | |
{ | |
"operations": [{ "method": "GET" } ], | |
"path": "/v1/domains" | |
} | |
], | |
"models": { | |
"Error": { | |
"properties": { | |
"fields": { | |
"type": "array" | |
} | |
} | |
} | |
}, | |
"resourcePath": "/v1/domains", | |
"swaggerVersion": "1.2" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment