1swagger: '2.0' 2info: 3 title: Object 4 version: 0.1.0 5 6paths: 7 /: 8 get: 9 responses: 10 '200': 11 description: Ok 12 schema: 13 type: object 14 properties: 15 a: 16 type: string 17 items: 18 type: string 19 default: "xyz" 20 example: "123"
View as plain text