# Interface OS3Link

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

# Overview

interface OS3Link {
operationRef?<span class="token punctuation">:</span> <span class="token keyword">string</span><span class="token punctuation">;</span>

operationId?<span class="token punctuation">:</span> <span class="token keyword">string</span><span class="token punctuation">;</span>

parameters?<span class="token punctuation">:</span> <a href="/api/specs/openspec/types/common/OpenSpecHash.html"><span class="token">OpenSpecHash</span></a>&lt;<span class="token keyword">any</span>&gt;<span class="token punctuation">;</span>

description?<span class="token punctuation">:</span> <span class="token keyword">string</span><span class="token punctuation">;</span>

server?<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>

}

# Members

operationRef?: string;

A relative or absolute reference to an OAS operation. This field is mutually exclusive of the operationId field, and MUST point to an Operation Object. Relative operationRef values MAY be used to locate an existing Operation Object in the OpenAPI definition.


operationId?: string;

The name of an existing, resolvable OAS operation, as defined with a unique operationId. This field is mutually exclusive of the operationRef field.


parameters?: OpenSpecHash<any>;

A map representing parameters to pass to an operation as specified with operationId or identified via operationRef. The key is the parameter name to be used, whereas the value can be a constant or an expression to be evaluated and passed to the linked operation. The parameter name can be qualified using the parameter location [{in}.]{name} for operations that use the same parameter name in different locations (e.g. path.id).


description?: string;

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


server?: OS3Server;

A server object to be used by the target operation.