-
Notifications
You must be signed in to change notification settings - Fork 223
Closed
Labels
Description
when i try to import a multi-example response, is only importing the first response.
OPENAPI 3.0.0 EXAMPLE
openapi: "3.0.0"
info:
title: ExampleApi
description: Example Api
version: 1.0.0
contact:
name: support
email: [email protected]
servers:
- url: http://example.com
description: example server
paths:
/users:
post:
description: Create User
summary: Create User
responses:
'201':
description: Return a User Object
content:
application/json:
schema:
type: object
properties:
id:
type: integer
name:
type: string
examples:
John-Ok-Example:
summary: Success create of John User
description: Success create of John User
value:
id: 1
name: John Doe
Jane-Ok-Example:
summary: Success create of Jane User
description: Success create of Jane User
value:
id: 2
name: Jane Doe
Postman Versión
Postman Collection
Postman Example
Referencia
See: /lib/utils.js
function getExampleData
garethpelly, Clem23 and alno74d