# Interface OpenSpec3

Interface
Module
import { OpenSpec3 } from "@tsed/openspec"
Source/packages/specs/openspec/src/types/openspec3/OpenSpec3.ts

# Overview

interface OpenSpec3<Schema = OS3Schema> {
openapi<span class="token punctuation">:</span> <span class="token keyword">string</span><span class="token punctuation">;</span>

info<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecInfo.html"><span class="token">OpenSpecInfo</span></a><span class="token punctuation">;</span>

servers?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/openspec3/OS3Server.html"><span class="token">OS3Server</span></a><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">;</span>

paths<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecHash.html"><span class="token">OpenSpecHash</span></a>&lt;<a href="/api/specs/openspec/types/openspec3/OS3Paths.html"><span class="token">OS3Paths</span></a>&lt;<a href="/api/orm/mongoose/types/decorators/Schema.html"><span class="token">Schema</span></a>&gt;&gt;<span class="token punctuation">;</span>

components?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/openspec3/OS3Components.html"><span class="token">OS3Components</span></a>&lt;<a href="/api/orm/mongoose/types/decorators/Schema.html"><span class="token">Schema</span></a>&gt;<span class="token punctuation">;</span>

security?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecSecurity.html"><span class="token">OpenSpecSecurity</span></a><span class="token punctuation">;</span>

tags?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecTag.html"><span class="token">OpenSpecTag</span></a><span class="token punctuation">[</span><span class="token punctuation">]</span><span class="token punctuation">;</span>

externalDocs?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecExternalDocs.html"><span class="token">OpenSpecExternalDocs</span></a><span class="token punctuation">;</span>

}

# Members

openapi: string;

This string MUST be the semantic version number of the OpenAPI Specification version that the OpenAPI document uses. The openapi field SHOULD be used by tooling specifications and clients to interpret the OpenAPI document. This is not related to the API info.version string.


Provides metadata about the API. The metadata MAY be used by tooling as required.


servers?: OS3Server[];

An array of Server Objects, which provide connectivity information to a target server. If the servers property is not provided, or is an empty array, the default value would be a Server Object with a url value of /.


The available paths and operations for the API.


components?: OS3Components<Schema>;

An element to hold various schemas for the specification.


security?: OpenSpecSecurity;

A declaration of which security mechanisms can be used across the API. The list of values includes alternative security requirement objects that can be used. Only one of the security requirement objects need to be satisfied to authorize a request. Individual operations can override this definition.


tags?: OpenSpecTag[];

A list of tags used by the specification with additional metadata. The order of the tags can be used to reflect on their order by the parsing tools. Not all tags that are used by the Operation Object must be declared. The tags that are not declared MAY be organized randomly or based on the tools' logic. Each tag name in the list MUST be unique.


externalDocs?: OpenSpecExternalDocs;

Additional external documentation.