@@ -208,67 +208,67 @@ components:
208208 *
209209 * This object MAY be extended with [Specification Extensions][1].
210210 *
211- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#specificationExtensions
211+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#specification-extensions
212212 */
213213export type XComponentsObject < T extends SpecExtFieldPattern = any > = SpecificationExtension < T > & {
214214 /**
215215 * An object to hold reusable [Schema Objects][1].
216216 *
217- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#schemaObject
217+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#schema-object
218218 */
219219 schemas ?: { [ schemaName : string ] : XSchemaObject } ;
220220 /**
221221 * An object to hold reusable [Response Objects][1].
222222 *
223- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#responseObject
223+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#response-object
224224 */
225225 responses ?: { [ responseName : string ] : XResponseObject | ReferenceObject } ;
226226 /**
227227 * An object to hold reusable [Parameter Objects][1].
228228 *
229- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#parameterObject
229+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#parameter-object
230230 */
231231 parameters ?: { [ parameterName : string ] : XParameterObject | ReferenceObject } ;
232232 /**
233- * An object to hold reusable [Example Objects](#exampleObject) .
233+ * An object to hold reusable [Example Objects][1] .
234234 *
235- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#exampleObject
235+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#example-object
236236 */
237237 examples ?: { [ exampleName : string ] : XExampleObject | ReferenceObject } ;
238238 /**
239239 * An object to hold reusable [Request Body Objects][1].
240240 *
241- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#requestBodyObject
241+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#request-body-object
242242 */
243243 requestBodies ?: { [ requestBodyName : string ] : XRequestBodyObject | ReferenceObject } ;
244244 /**
245245 * An object to hold reusable [Header Objects][1].
246246 *
247- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#headerObject
247+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#header-object
248248 */
249249 headers ?: { [ headerBodyName : string ] : XHeaderObject | ReferenceObject } ;
250250 /**
251251 * An object to hold reusable [Security Scheme Objects][1].
252252 *
253- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#securitySchemeObject
253+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#security-scheme-object
254254 */
255255 securitySchemes ?: { [ securitySchemeName : string ] : XSecuritySchemeObject | ReferenceObject } ;
256256 /**
257257 * An object to hold reusable [Link Objects][1].
258258 *
259- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#linkObject
259+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#link-object
260260 */
261261 links ?: { [ linkName : string ] : XLinkObject | ReferenceObject } ;
262262 /**
263263 * An object to hold reusable [Callback Objects][1].
264264 *
265- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#callbackObject
265+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#callback-object
266266 */
267267 callbacks ?: { [ callbackName : string ] : XCallbackObject | ReferenceObject } ;
268268 /**
269269 * An object to hold reusable [Path Item Object][1].
270270 *
271- * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#pathItemObject
271+ * [1]: https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#path-item-object
272272 */
273273 pathItems ?: { [ pathItemName : string ] : XPathItemObject | ReferenceObject } ;
274274}
0 commit comments