Adds metadata to a single tag that is used by the Operation Object. It is not mandatory to have a Tag Object per tag defined in the Operation Object instances.

interface TagObject {
    description?: string;
    externalDocs?: ExternalDocumentationObject;
    name: string;
}

Hierarchy (view full)

Properties

description?: string

A description for the tag. CommonMark syntax MAY be used for rich text representation.

Additional external documentation for this tag.

name: string

The name of the tag.