Getting your documentation just right is important, and Redoc comes with many configuration options to help you succeed in that mission.
Each deployment type has documentation on how to configure options for that type of Redoc project. This page lists all the options you can use with Redoc.
Versions: 2.x
:::success Client-side configuration
Using Redoc as a standalone (HTML or React) tool, these options must be presented in kebab case.
For example, scrollYOffset
becomes scroll-y-offset
, and expandResponses
becomes expand-responses
.
:::
Disables search indexing and hides the search box from the API documentation page.
Sets the minimum amount of characters that need to be typed into the search dialog to initiate the search.
Default: 3
Enables or disables expanding default server variables.
Controls which responses to expand by default. Specify one or more responses by providing their response codes as a comma-separated list without spaces, for example expandResponses='200,201'
. Special value 'all' expands all responses by default. Be careful: this option can slow down documentation rendering time.
Automatically expands the single field in a schema.
Hides the 'Download' button for saving the API definition source file. This setting does not make the API definition private; it just hides the button.
If set to true
, the protocol and hostname are not shown in the operation definition.
Hides the loading animation. Does not apply to CLI or Workflows-rendered docs.
Hides request payload examples.
If set to true
, the description for oneOf
/anyOf
object is not shown in the schema.
If set to true
, the pattern is not shown in the schema.
Hides the schema title next to to the type.
Hides the Security panel section.
Hides the request sample tab for requests with only one sample.
Sets the path to the optional HTML file used to modify the layout of the reference docs page.
Sets the default expand level for JSON payload samples (response and request body). The default value is 2, and the maximum supported value is '+Infinity'. It can also be configured as a string with the special value all
that expands all levels.
Default: 2
Displays only the specified number of enum values. The remaining values are hidden in an expandable area. If not set, all values are displayed.
If set to true
, selecting an expanded item in the sidebar twice collapses it.
Default: true
If set to true
, the sidebar uses the native scrollbar instead of perfect-scroll. This setting is a scrolling performance optimization for big API definitions.
Shows only required fields in request samples.
Shows the path link and HTTP verb in the middle panel instead of the right panel.
If set, the payload sample is inserted at the specified index. If there are N
payload samples and the value configured here is bigger than N
, the payload sample is inserted last. Indexes start from 0.
Shows required properties in schemas first, ordered in the same order as in the required array.
Specifies whether to automatically expand schemas in Reference docs. Set it to all
to expand all schemas regardless of their level, or set it to a number to expand schemas up to the specified level. For example, schemaExpansionLevel: 3
expands schemas up to three levels deep. The default value is 0
, meaning no schemas are expanded automatically.
Specifies a vertical scroll-offset. This setting is useful when there are fixed positioned elements at the top of the page, such as navbars, headers, etc.
Note that you can specify the scrollYOffset
value in any of the following ways:
- as a number - a fixed number of pixels to be used as the offset.
- as a CSS selector - the selector of the element to be used for specifying the offset. The distance from the top of the page to the element's bottom is used as the offset.
- a function (advanced) - a getter function. Must return a number representing the offset (in pixels).
Shows specification extensions ('x-' fields). Extensions used by Redoc are ignored. The value can be boolean or an array of strings with names of extensions to display. When used as boolean and set to true
, all specification extensions are shown.
Shows object schema example in the properties; default false
.
When set to true
, shows the HTTP request method for webhooks in operations and in the sidebar.
Shows only unique oneOf
types in the label without titles.
When set to true
, sorts all enum values in all schemas alphabetically.
When set to true
, sorts operations in the navigation sidebar and in the middle panel alphabetically.
When set to true
, sorts properties in all schemas alphabetically.
When set to true, sorts tags in the navigation sidebar and in the middle panel alphabetically. Note that only tags are sorted alphabetically in the middle panel, not the operations associated with each tag. To sort operations alphabetically as well, you must set the sortOperationsAlphabetically
setting to true
.
Default: false
If set to true
, the API definition is considered untrusted and all HTML/Markdown is sanitized to prevent XSS.
spacing
unit
: 5 # main spacing unit used in autocomputed theme values latersectionHorizontal
: 40 # Horizontal section padding. COMPUTED: spacing.unit * 8sectionVertical
: 40 # Horizontal section padding. COMPUTED: spacing.unit * 8
breakpoints
# breakpoints for switching three/two and mobile view layoutssmall
: '50rem'medium
: '85rem'large
: '105rem'
colors
tonalOffset
: 0.3 # default tonal offset used in computations
typography
fontSize
: '14px'lineHeight
: '1.5em'fontWeightRegular
: '400'fontWeightBold
: '600'fontWeightLight
: '300'fontFamily
: 'Roboto, sans-serif'smoothing
: 'antialiased'optimizeSpeed
: trueheadings
fontFamily
: 'Montserrat, sans-serif'fontWeight
: '400'lineHeight
: '1.6em'
code
# inline code stylingfontSize
: '13px'fontFamily
: 'Courier, monospace'lineHeight
: # COMPUTED: typography.lineHeightfontWeight
: # COMPUTED: typography.fontWeightRegularcolor
: '#e53935'backgroundColor
: 'rgba(38, 50, 56, 0.05)'wrap
: false # whether to break word for inline blocks (otherwise they can overflow)
links
color
: # COMPUTED: colors.primary.mainvisited
: # COMPUTED: typography.links.colorhover
: # COMPUTED: lighten(0.2 typography.links.color)textDecoration
: 'auto'hoverTextDecoration
: 'auto'
sidebar
width
: '260px'backgroundColor
: '#fafafa'textColor
: '#333333'activeTextColor
: # COMPUTED: theme.sidebar.textColor (if set by user) or theme.colors.primary.maingroupItems
# Group headingsactiveBackgroundColor
: # COMPUTED: theme.sidebar.backgroundColoractiveTextColor
: # COMPUTED: theme.sidebar.activeTextColortextTransform
: 'uppercase'
level1Items
# Level 1 items like tags or section 1st level itemsactiveBackgroundColor
: # COMPUTED: theme.sidebar.backgroundColoractiveTextColor
: # COMPUTED: theme.sidebar.activeTextColortextTransform
: 'none'
arrow
# sidebar arrowsize
: '1.5em'color
: # COMPUTED: theme.sidebar.textColor
logo
maxHeight
: # COMPUTED: sidebar.widthmaxWidth
: # COMPUTED: sidebar.widthgutter
: '2px' # logo image padding
rightPanel
backgroundColor
: '#263238'width
: '40%'textColor
: '#ffffff'servers
overlay
backgroundColor
: '#fafafa'textColor
: '#263238'
url
backgroundColor
: '#fff'
fab
backgroundColor
: '#263238'color
: '#ffffff'
You can inject the Security Definitions widget into any place in your definition description
.
For more information, refer to Security definitions injection.
Redoc uses the following specification extensions:
x-logo
- is used to specify API logox-traitTag
- useful for handling out common things like Pagination, Rate-Limits, etcx-codeSamples
- specify operation code samplesx-examples
- specify JSON example for requestsx-nullable
- mark schema param as a nullablex-displayName
- specify human-friendly names for the menu categoriesx-tagGroups
- group tags by categories in the side menux-servers
- ability to specify different servers for API (backported from OpenAPI 3.0)x-ignoredHeaderParameters
- ability to specify header parameter names to ignorex-additionalPropertiesName
- ability to supply a descriptive name for the additional property keysx-summary
- For Response object, use as the response button text, with description rendered under the buttonx-extendedDiscriminator
- In Schemas, uses this to solve name-clash issues with the standard discriminatorx-explicitMappingOnly
- In Schemas, display a more descriptive property name in objects with additionalProperties when viewing the property list with an object