Given OAS2 document: ```yaml swagger: '2.0' info: title: Optional Parameters version: '1.0' paths: '/test': get: parameters: - name: title in: query description: Body argument required: false type: array items: type: string responses: 200: description: ok ``` When run `npx fury --format text/vnd.apiblueprint issue.yaml`, the generated APIB looks like the following: ```apib FORMAT: 1A # Optional Parameters ### /test #### GET /test{?title} + Parameters + title: - Body argument + Response 200 ok ```
Given OAS2 document:
When run
npx fury --format text/vnd.apiblueprint issue.yaml, the generated APIB looks like the following: