Skip to content
Last updated

hideSchemaTitles

A schema field can set a title property, and Redoc displays it next to the field type. The hideSchemaTitles option hides those titles.

redocly.yaml
  schema:
    type: 'object'
    properties:
      name:
        title: Title
        type: string
        description: hooray

Options

OptionTypeDescription
hideSchemaTitlesbooleanHide the schema title next to the type. Default: false.

Examples

The following example hides the schema title properties:

redocly.yaml
openapi:
  hideSchemaTitles: true

Resources