Swagger/OpenAPI - use $ref to pass a reusable defined parameter

后端 未结 2 1556
闹比i
闹比i 2020-12-01 02:42

Let\'s say I\'ve got a parameter like limit. This one gets used all over the place and it\'s a pain to have to change it everywhere if I need to update it:

2条回答
  •  醉话见心
    2020-12-01 03:01

    This feature already exists in Swagger 2.0. The linked ticket talks about some specific mechanics of it which doesn't affect the functionality of this feature.

    At the top level object (referred to as the Swagger Object), there's a parameters property where you can define reusable parameters. You can give the parameter any name, and refer to it from paths/specific operations. The top level parameters are just definitions and are not applied to all operations in the spec automatically.

    You can find an example for it here - https://github.com/swagger-api/swagger-spec/blob/master/fixtures/v2.0/json/resources/reusableParameters.json - even with a limit parameter.

    In your case, you'd want to do this:

    # define a path with parameter reference
    /path:
       get:
          parameters:
             - $ref: "#/parameters/limitParam"
             - $ref: "#/parameters/offsetParam"
    
    # define reusable parameters:
    parameters:
       limitParam:
          name: limit
          in: query
          description: Limits the number of returned results
          required: false
          type: integer
          format: int32
       offsetParam:
          name: offset
          in: query
          description: Offset from which start returned results
          required: false
          type: integer
          format: int32
    

提交回复
热议问题