Last updated

hideSchemaTitles

By default, users can see schema field title properties.

The hideSchemaTitles option allows the schema field title to be hidden.

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

Options

OptionTypeDescription
hideSchemaTitlesbooleanHides the schema title next to the type. Defaults to false.

Examples

The following example hides the schema title properties:

redocly.yaml
openapi:
  hideSchemaTitles: true
  • openapi - Learn more about using openapi configuration.

Resources