UNPKG

openapi-merger

Version:

Yet another CLI tool for merging multiple OpenAPI files into a single file.

47 lines (46 loc) 1.3 kB
# /pets: get: summary: List all pets operationId: listPets tags: - pets parameters: - name: limit in: query description: How many items to return at one time (max 100) required: false 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: https://raw.githubusercontent.com/kota65535/openapi-merger/master/test/resources/petstore_3/components/schemas/Pets.yaml default: description: unexpected error content: application/json: schema: $ref: https://raw.githubusercontent.com/kota65535/openapi-merger/master/test/resources/petstore_3/components/schemas/Error.yaml post: summary: Create a pet operationId: createPets tags: - pets responses: '201': description: Null response default: description: unexpected error content: application/json: schema: $ref: https://raw.githubusercontent.com/kota65535/openapi-merger/master/test/resources/petstore_3/components/schemas/Error.yaml