# `hideInfoMetadata` If you include metadata for your APIs, either using the `info.x-metadata` extension or the `metadata` configuration option, that information is displayed in the API reference documentation. The hideInfoMetadata is not available in Redoc Community Edition. ![hideInfoMetadata: false](/assets/metadata-show.e4c14bb848548f1e33e11784685584c6e60c2ffc15be881bb809599d72998f27.d96f5373.png) To omit the metadata section from the API reference documentation, set the `hideInfoMetadata` option. ## Options | Option | Type | Description | | --- | --- | --- | | hideInfoMetadata | boolean | Optionally hide the **OpenAPI info metadata** section of the API reference page. Default value is `false`. | ## Examples The following example hides the `metadata` content from the API documentation. ```yaml redocly.yaml openapi: hideInfoMetadata: true ``` ```yaml openapi.yaml openapi: 3.1.0 info: title: Redocly Museum API description: Imaginary, but delightful Museum API for interacting with museum services and information. Built with love by Redocly. version: 1.1.0 x-metadata: createdAt: '2016-11-15T00:53:45.524Z' domain: fake-museum-example.com ... ``` ![hideInfoMetadata: true](/assets/metadata-hide.91f805c25414a83c678051e1c143269b6a9415e42064c0c43fa44876e2e9373f.d96f5373.png) ## Resources - **[OpenAPI configuration](/docs/realm/config/openapi)** - Complete guide to OpenAPI configuration options for customizing API reference documentation - **[OpenAPI Specification](https://spec.openapis.org/oas/latest.html)** - Official OpenAPI Specification documentation for understanding API description standards - **[OpenAPI visual reference](https://redocly.com/learn/openapi/openapi-visual-reference)** - Visual guide to OpenAPI specification structure and info metadata customization - **[Configuration options](/docs/realm/config)** - Explore other project configuration options for comprehensive documentation customization