Information about the API.

interface IInfo {
    contact?: OpenApi.IDocument.IContact;
    description?: string;
    license?: OpenApi.IDocument.ILicense;
    summary?: string;
    termsOfService?: string;
    title: string;
    version: string;
}

Properties

The contact information for the exposed API.

description?: string

A full description of the API.

The license information for the exposed API.

summary?: string

A short summary of the API.

termsOfService?: string

A URL to the Terms of Service for the API.

title: string

The title of the API.

version: string

Version of the API.