Last updated

OpenAPI extension: x-metadata

Use x-metadata to add a table of additional data to the top of your API reference documentation. You can add any keys or values that you want users to easily find at the top level of the documentation.

The data is formatted as a table and added as part of the description section at the top of the page.

Location

The x-metadata extension can be added to Info Object.

Options

OptionTypeDescription
x-metadataObjectCustom metadata in key/value format.

Examples

Metadata keys can be any string. The values can be any primitive type, or an array.

The following example shows an x-metadata section of an OpenAPI description:

info:
  x-metadata:
    department: Technical shared services (East)
    releaseDate: '12 Mar 2022'
    authors:
      - Sarah
      - Soumya
      - Susie

The data is presented as shown in the following screenshot:

title "Metadata" and a table showing the metadata

Resources