Skip to content

New Parameters. Schema

Adil Bektursunov edited this page Dec 17, 2025 · 1 revision

For Parameter schemas, changes are classified according to Schema Changes with Scope Request.

See: Schema Changes - Scope Request

Example

To get specific examples for Parameter schemas, take the schema examples from the Schema Changes section and insert them into the parameters[*].schema location of an OpenAPI specification.

Example OpenAPI structure:

paths:
  /pets:
    get:
      parameters:
        - name: petId
          in: query
          schema:
            # Insert schema from Schema Changes examples here
            type: string

Clone this wiki locally