https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=30385

--- Comment #7 from Martin Renvoize <[email protected]> ---
I'm less sure about this now.. having delved through it I don't like how we
re-order the keys within the parameters block..

We were pretty consistently as below:

parameters:
  - name: x-koha-embed
    in: header
    description: Embed list sent as request header
    required: false
    type: array
    items:
      enum:
        - extended_attributes
      type: string
    collectionFormat: csv

This now comes out as:

parameters:
    - collectionFormat: csv
      description: Embed list send as request header
      in: header
      items:
        enum:
          - extened_attributes
        type: string
      name: x-koha-embed
      required: false
      type: array

I find the second much harder to read at a glance.

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to