Metadata of path parameter.

interface IParameter {
    key: string;
    name: string;
    parameter: () => OpenApi.IOperation.IParameter;
    schema: OpenApi.IJsonSchema;
}

Properties

key: string

Key of the path parameter.

name: string

Name of the path parameter.

parameter: () => OpenApi.IOperation.IParameter

Original parameter info from the OpenAPI document.

The parameter is a function returning the original OpenApi.IOperation.IParameter from the OpenAPI document.

Metadata of path parameter data type.