In our Swagger 2.0 document our response model is documented in the response definition like this:
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/MyResponseModel"
}
}
[...]
"definitions": {
"MyResponseModel": {
"description": "Some model description here.",
"type": "object",
"properties": {
"firstProperty": {
"format": "date-time",
"description": "Some property description here.",
"type": "string"
},
Is this supported by SmartDocs? If so, any thoughts on why this could be ignored during import?
Thanks!
