Metadata of headers.

interface IHeaders {
    description: () => undefined | string;
    example: () => any;
    examples: () => undefined | Record<string, any>;
    key: string;
    name: string;
    schema: OpenApi.IJsonSchema;
    title: () => undefined | string;
}

Properties

description: () => undefined | string
example: () => any
examples: () => undefined | Record<string, any>
key: string

Key of the headers parameter.

name: string

Name of the headers parameter.

Metadata of headers data type.

title: () => undefined | string