Skip to content

Commit 75ed849

Browse files
committed
docs(other): delete links to 3rd-party websites
1 parent 1fe1af9 commit 75ed849

8 files changed

Lines changed: 0 additions & 159 deletions

File tree

packages/core/src/types/arazzo.ts

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ const Info: NodeType = {
6363
extensionsPrefix: 'x-',
6464
description:
6565
'The object provides metadata about API workflows defined in this Arazzo document. The metadata MAY be used by the clients if needed.',
66-
documentationLink: `https://spec.openapis.org/arazzo/latest.html#info-object`,
6766
};
6867
const SourceDescriptions: NodeType = {
6968
properties: {},
@@ -97,7 +96,6 @@ const OpenAPISourceDescription: NodeType = {
9796
extensionsPrefix: 'x-',
9897
description:
9998
'Describes a source description (such as an OpenAPI description) that will be referenced by one or more workflows described within an Arazzo Description.',
100-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#source-description-object',
10199
};
102100
const ArazzoSourceDescription: NodeType = {
103101
properties: {
@@ -120,7 +118,6 @@ const ArazzoSourceDescription: NodeType = {
120118
extensionsPrefix: 'x-',
121119
description:
122120
'Describes a source description (such as an OpenAPI description) that will be referenced by one or more workflows described within an Arazzo Description.',
123-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#source-description-object',
124121
};
125122
const ReusableObject: NodeType = {
126123
properties: {
@@ -132,7 +129,6 @@ const ReusableObject: NodeType = {
132129
},
133130
required: ['reference'],
134131
extensionsPrefix: 'x-',
135-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#reusable-object',
136132
description:
137133
'A simple object to allow referencing of objects contained within the Components Object. It can be used from locations within steps or workflows in the Arazzo Description. Note - Input Objects MUST use standard JSON Schema referencing via the $ref keyword while all non JSON Schema objects use this object and its expression based referencing mechanism.',
138134
};
@@ -152,7 +148,6 @@ const Parameter: NodeType = {
152148
},
153149
required: ['name', 'value'],
154150
extensionsPrefix: 'x-',
155-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#parameter-object',
156151
description:
157152
'Describes a single step parameter. A unique parameter is defined by the combination of a name and in fields.',
158153
};
@@ -197,7 +192,6 @@ const Workflow: NodeType = {
197192
},
198193
required: ['workflowId', 'steps'],
199194
extensionsPrefix: 'x-',
200-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#workflow-object',
201195
description:
202196
'Describes the steps to be taken across one or more APIs to achieve an objective. The workflow object MAY define inputs needed in order to execute workflow steps, where the defined steps represent a call to an API operation or another workflow, and a set of outputs.',
203197
};
@@ -244,7 +238,6 @@ const Step: NodeType = {
244238
required: ['stepId'],
245239
requiredOneOf: ['x-operation', 'operationId', 'operationPath', 'workflowId'],
246240
extensionsPrefix: 'x-',
247-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#step-object',
248241
description:
249242
'Describes a single workflow step which MAY be a call to an API operation (OpenAPI Operation Object) or another Workflow Object.',
250243
};
@@ -270,7 +263,6 @@ const RequestBody: NodeType = {
270263
},
271264
required: ['payload'],
272265
extensionsPrefix: 'x-',
273-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#request-body-object',
274266
description:
275267
'A single request body describing the Content-Type and request body content to be passed by a step to an operation.',
276268
};
@@ -285,7 +277,6 @@ const Replacement: NodeType = {
285277
},
286278
required: ['target', 'value'],
287279
extensionsPrefix: 'x-',
288-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#payload-replacement-object',
289280
description:
290281
'Describes a location within a payload (e.g., a request body) and a value to set within the location.',
291282
};
@@ -301,7 +292,6 @@ const ExtendedSecurity: NodeType = {
301292
},
302293
required: ['values'],
303294
requiredOneOf: ['schemeName', 'scheme'],
304-
documentationLink: 'https://redocly.com/docs/respect/extensions/x-security#x-security-extension',
305295
description:
306296
'Use the x-security extension to define authorization flows based on OpenAPI security schemes. Respect automatically constructs appropriate authorization headers, queries, or cookies based on your parameters.',
307297
};
@@ -340,7 +330,6 @@ const ExtendedOperation: NodeType = {
340330
},
341331
},
342332
required: ['url', 'method'],
343-
documentationLink: 'https://redocly.com/docs/respect/extensions/x-operation',
344333
description:
345334
'x-operation enables you to specify a URL and HTTP method for an operation that is not described in the Arazzo sourceDescriptions section. The primary application of the x-operation extension is to facilitate calls to third-party APIs or other endpoints that are needed in a sequence of API calls.',
346335
};
@@ -372,7 +361,6 @@ const CriterionObject: NodeType = {
372361
},
373362
},
374363
required: ['condition'],
375-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#criterion-object',
376364
description:
377365
'An object used to specify the context, conditions, and condition types that can be used to prove or satisfy assertions specified in Step Object successCriteria, Success Action Object criteria, and Failure Action Object criteria.',
378366
};
@@ -415,7 +403,6 @@ const SuccessActionObject: NodeType = {
415403
}),
416404
},
417405
required: ['type', 'name'],
418-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#success-action-object',
419406
description:
420407
'A single success action which describes an action to take upon success of a workflow step.',
421408
};
@@ -469,7 +456,6 @@ const FailureActionObject: NodeType = {
469456
}),
470457
},
471458
required: ['type', 'name'],
472-
documentationLink: 'https://spec.openapis.org/arazzo/latest.html#failure-action-object',
473459
description:
474460
'A single failure action which describes an action to take upon failure of a workflow step.',
475461
};

0 commit comments

Comments
 (0)