1swagger: "2.0" 2paths: 3 /widgets/: 4 get: 5 summary: Retrieve all widgets. 6 parameters: 7 - name: category_id 8 in: query 9 description: Return the widgets that are associated with this category. 10 required: true 11 type: array 12 collectionFormat: "multi" 13 items: 14 type: string 15 pattern: '^[0-9abcdefghjkmnpqrtuvwxyz]{29}$' 16definitions: {}