PackagesJsdoc open apiShortDescribing Parameters

Describing Parameters

Last updated:

Describing Parameters

Parameters are defined with @pathParam, @queryParam, @headerParam, @cookieParam or @paramComponent. To describe a parameter, you specify its data type, name, and description. To denote a parameter as optional, enclose its name in square brackets [ ]. Here is an example:

/**
 * GET /users/{userId}
 * @summary Get a user by ID.
 * @pathParam {integer} userId - Numeric ID of the user to get.
 * @queryParam {boolean} [verbose] - Return all user information.
 */

Parameter types

OpenAPI 3.0 distinguishes between the following parameter types based on the parameter location.

Parameter parameters

Path parameters are variable parts of a URL path. They are typically used to point to a specific resource within a collection, such as a user identified by ID. A URL can have several path parameters, each denoted with curly braces { }.

GET /users/{id}
GET /cars/{carId}/drivers/{driverId}
GET /report.{format}

Each path parameter must be substituted with an actual value when the client makes an API call. In OpenAPI, a path parameter is defined using @pathParam. The parameter name must be the same as specified in the path. Also remember path parameters are always required. For example, the /users/{id} endpoint would be described as:

/**
 * GET /users/{id}
 * @summary Get a user by ID.
 * @pathParam {integer} id - The user ID
 */

Query parameters

Query parameters are the most common type of parameters. They appear at the end of the request URL after a question mark (?), with different name=value pairs separated by ampersands (&). Query parameters can be required and optional.

Use @queryParam to denote query parameters:

/**
 * @queryParam {integer} [offset] - The number of items to skip before starting to collect the result set
 * @queryParam {integer} [limit] - The numbers of items to return
 */

Note: To describe API keys passed as query parameters, use securitySchemes and security instead. See Authentication.

Header parameters

An API call may require that custom headers be sent with an HTTP request. OpenAPI lets you define custom request headers with @headerParam. For example, suppose, a call to GET /ping requires the X-Request-ID header:

GET /ping HTTP/1.1
Host: example.com
X-Request-ID: 77e1c83b-7bb0-437b-bc50-a7a58e5660ac

You would define this operation as follows:

/**
 * GET /ping
 * @summary Checks if the server is alive
 * @headerParam {string} X-Request-ID
 */

Note: Header parameters named Accept, Content-Type and Authorization are not allowed.

Operations can also pass parameters in the Cookie header, as Cookie: name=value. Multiple cookie parameters are sent in the same header, separated by a semicolon, and space.

GET /api/users
Host: example.com
Cookie: debug=0; csrftoken=BUSe35dohU3O1MZvDCUOJ

Use @cookieParam to define cookie parameters:

/**
 * @cookieParam {integer} [debug]
 * @cookieParam {string} [csrftoken]
 */

Note: To define cookie authentication, use securitySchemes and security instead. See Authentication.

Required and optional parameters

By default, all request parameters are treated as required. You can enclose the parameter’s name in square brackets [ ] to mark it as optional. Path parameters are always required.

Default parameter values

Append =value to the variable name to specify the default value for an optional parameter. The default value is the one that the server uses if the client does not supply the parameter value in the request. The value type must be the same as the parameter’s data type. A typical example is paging parameters such as offset and limit:

GET /users
GET /users?offset=30&limit=10

Assuming offset defaults to 0 and limit defaults to 20, you would define these parameters as:

/**
 * @queryParam {integer} [offset=0] - The number of items to skip before starting to collect the result set.
 * @queryParam {integer} [limit=20] - The number of items to return.
 */

Enum parameters

You can restrict a parameter to a fixed set of values by adding the enum to the schema. The enum values must be of the same type as the parameter data type.

/**
 * @queryParam {Status} [status]
 */
"components":
    "schemas":
        "Status":
            "type": "string"
            "enum":
                - "available"
                - "pending"
                - "sold"

Reusable Parameters

Parameters can be defined in components to be reused elsewhere. The following parameter definition:

"components":
    "parameters":
        "ExampleParameter":
            "in": "query"
            "name": "limit"
            "schema":
                "type": "integer"
                "minimum": 1
                "maximum": 100
                "default": 20
            "required": false
            "description": "The number of items to return."

Can be used as:

/**
 * @paramComponent {ExampleParameter}
 */
Support

Contribute to our work and keep us going

Community is the heart of open source. The success of our packages wouldn't be possible without the incredible contributions of users, testers, and developers who collaborate with us every day.Want to get involved? Here are some tips on how you can make a meaningful impact on our open source projects.

Ready to help us out?

Be sure to check out the package's contribution guidelines first. They'll walk you through the process on how to properly submit an issue or pull request to our repositories.

Submit a pull request

Found something to improve? Fork the repo, make your changes, and open a PR. We review every contribution and provide feedback to help you get merged.

Good first issues

Simple issues suited for people new to open source development, and often a good place to start working on a package.
View good first issues