UNPKG

insomnia-importers

Version:

Various data importers for Insomnia

119 lines (118 loc) 2.74 kB
openapi: 3.0.1 info: title: Swagger Petstore license: name: MIT version: 1.0.0 servers: - url: http://petstore.swagger.io/v1 paths: /pets: get: tags: - pets summary: List all pets operationId: listPets parameters: - name: limit in: query description: How many items to return at one time (max 100) schema: type: integer format: int32 responses: 200: description: A paged array of pets headers: x-next: description: A link to the next page of responses schema: type: string content: application/json: schema: $ref: '#/components/schemas/Pets' default: description: unexpected error content: application/json: schema: $ref: '#/components/schemas/Error' post: tags: - pets summary: Create a pet operationId: createPets requestBody: content: application/json: schema: $ref: '#/components/schemas/Pet' required: true responses: 201: description: Null response content: {} default: description: unexpected error content: application/json: schema: $ref: '#/components/schemas/Error' /pets/{petId}: get: tags: - pets summary: Info for a specific pet operationId: showPetById parameters: - name: petId in: path description: The id of the pet to retrieve required: true schema: type: string responses: 200: description: Expected response to a valid request content: application/json: schema: $ref: '#/components/schemas/Pets' default: description: unexpected error content: application/json: schema: $ref: '#/components/schemas/Error' components: schemas: Pets: type: array items: $ref: '#/components/schemas/Pet' Error: required: - code - message type: object properties: code: type: integer format: int32 message: type: string Pet: required: - id - name type: object properties: id: type: integer format: int64 readOnly: true name: type: string tag: type: string