-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Labels
Description
We have a parameter in openapi
limitParameter:
name: _limit
in: query
description: Limit the return results
required: true
schema:
type: integer
default: 30
maximum: 400
minimum: 1but in docs that are generated it doesnt say min or max.
-Limit
Limit the return results
Type: System.Int32
Parameter Sets: List
Aliases:
Required: False
Position: Named
Default value: 30
Accept pipeline input: False
Accept wildcard characters: FalseIs there a way to have autorest pass these to the docs?
default was passed using a directive, but maybe the geneartor can just inherit from the openapi spec the default too?