UNPKG

openapi-merger

Version:

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

39 lines (38 loc) 633 B
parameters: Limit: name: limit in: query description: How many items to return at one time (max 100) required: false schema: type: integer format: int32 schemas: Error: type: object required: - code - message properties: code: type: integer format: int32 message: type: string Pet: type: object required: - id - name properties: id: type: integer format: int64 name: type: string tag: type: string Pets: type: array items: $ref: '#/schemas/Pet'