|
24 | 24 | "get": {
|
25 | 25 | "operationId": "MultipleInheritance_GetCat",
|
26 | 26 | "description": "Get a cat with name 'Whiskers' where likesMilk, meows, and hisses is true",
|
| 27 | + "produces": [ |
| 28 | + "application/json", |
| 29 | + "text/plain" |
| 30 | + ], |
27 | 31 | "parameters": [],
|
28 | 32 | "responses": {
|
29 | 33 | "200": {
|
|
43 | 47 | "put": {
|
44 | 48 | "operationId": "MultipleInheritance_PutCat",
|
45 | 49 | "description": "Put a cat with name 'Boots' where likesMilk and hisses is false, meows is true",
|
| 50 | + "produces": [ |
| 51 | + "text/plain" |
| 52 | + ], |
46 | 53 | "parameters": [
|
47 | 54 | {
|
48 | 55 | "name": "cat",
|
|
73 | 80 | "get": {
|
74 | 81 | "operationId": "MultipleInheritance_GetFeline",
|
75 | 82 | "description": "Get a feline where meows and hisses are true",
|
| 83 | + "produces": [ |
| 84 | + "application/json", |
| 85 | + "text/plain" |
| 86 | + ], |
76 | 87 | "parameters": [],
|
77 | 88 | "responses": {
|
78 | 89 | "200": {
|
|
92 | 103 | "put": {
|
93 | 104 | "operationId": "MultipleInheritance_PutFeline",
|
94 | 105 | "description": "Put a feline who hisses and doesn't meow",
|
| 106 | + "produces": [ |
| 107 | + "text/plain" |
| 108 | + ], |
95 | 109 | "parameters": [
|
96 | 110 | {
|
97 | 111 | "name": "feline",
|
|
122 | 136 | "get": {
|
123 | 137 | "operationId": "MultipleInheritance_GetHorse",
|
124 | 138 | "description": "Get a horse with name 'Fred' and isAShowHorse true",
|
| 139 | + "produces": [ |
| 140 | + "application/json", |
| 141 | + "text/plain" |
| 142 | + ], |
125 | 143 | "parameters": [],
|
126 | 144 | "responses": {
|
127 | 145 | "200": {
|
|
141 | 159 | "put": {
|
142 | 160 | "operationId": "MultipleInheritance_PutHorse",
|
143 | 161 | "description": "Put a horse with name 'General' and isAShowHorse false",
|
| 162 | + "produces": [ |
| 163 | + "text/plain" |
| 164 | + ], |
144 | 165 | "parameters": [
|
145 | 166 | {
|
146 | 167 | "name": "horse",
|
|
171 | 192 | "get": {
|
172 | 193 | "operationId": "MultipleInheritance_GetKitten",
|
173 | 194 | "description": "Get a kitten with name 'Gatito' where likesMilk and meows is true, and hisses and eatsMiceYet is false",
|
| 195 | + "produces": [ |
| 196 | + "application/json", |
| 197 | + "text/plain" |
| 198 | + ], |
174 | 199 | "parameters": [],
|
175 | 200 | "responses": {
|
176 | 201 | "200": {
|
|
190 | 215 | "put": {
|
191 | 216 | "operationId": "MultipleInheritance_PutKitten",
|
192 | 217 | "description": "Put a kitten with name 'Kitty' where likesMilk and hisses is false, meows and eatsMiceYet is true",
|
| 218 | + "produces": [ |
| 219 | + "text/plain" |
| 220 | + ], |
193 | 221 | "parameters": [
|
194 | 222 | {
|
195 | 223 | "name": "kitten",
|
|
220 | 248 | "get": {
|
221 | 249 | "operationId": "MultipleInheritance_GetPet",
|
222 | 250 | "description": "Get a pet with name 'Peanut'",
|
| 251 | + "produces": [ |
| 252 | + "application/json", |
| 253 | + "text/plain" |
| 254 | + ], |
223 | 255 | "parameters": [],
|
224 | 256 | "responses": {
|
225 | 257 | "200": {
|
|
239 | 271 | "put": {
|
240 | 272 | "operationId": "MultipleInheritance_PutPet",
|
241 | 273 | "description": "Put a pet with name 'Butter'",
|
| 274 | + "produces": [ |
| 275 | + "text/plain" |
| 276 | + ], |
242 | 277 | "parameters": [
|
243 | 278 | {
|
244 | 279 | "name": "horse",
|
|
0 commit comments