Display links with a reference to a specific schema in an OpenAPI file which can be used as $ref value in other OpenAPI files within the same project. These links are always displayed for OpenAPI requests and are shown for schemas when the schemaDefinitionsTagName option is configured.
| Option | Type | Description |
|---|---|---|
| showSchemaCatalogLinks | boolean | Displays links to schemas and requests on an OpenAPI page. These links can be used as $ref value in other OpenAPI files within the same project. Default value: false. |
Enable schema catalog links for all APIs in your project.
redocly.yaml
openapi:
showSchemaCatalogLinks: trueEnable schema catalog links for a single API while keeping them disabled for others.
redocly.yaml
apis:
main@v1:
openapi:
showSchemaCatalogLinks: trueOverride global settings to disable schema catalog links for a particular API.
redocly.yaml
openapi:
showSchemaCatalogLinks: true
apis:
main@v1:
openapi:
showSchemaCatalogLinks: false- OpenAPI configuration - Complete guide to OpenAPI configuration options for customizing API reference documentation
- Configuration options - Explore other project configuration options for comprehensive documentation customization
- OpenAPI Specification - Official OpenAPI Specification documentation for understanding API description standards