diff --git a/docusaurus/docs/reference/metadata.md b/docusaurus/docs/reference/metadata.md
index eef89cdb4d..5d00801192 100644
--- a/docusaurus/docs/reference/metadata.md
+++ b/docusaurus/docs/reference/metadata.md
@@ -33,6 +33,7 @@ The `plugin.json` file is required for all plugins. When Grafana starts, it scan
| **buildMode** | `string` | The build mode of the plugin. This field is set automatically at build time, so it should not be provided manually.
| |
| **builtIn** | `boolean` | [internal only] Indicates whether the plugin is developed and shipped as part of Grafana. Also known as a 'core plugin'.
| |
| **category** | `string` | Plugin category used on the Add new connection page. Can be one from the list: "tsdb", "logging", "cloud", "tracing", "profiling", "sql", "enterprise", "iot", "other", empty string or custom string
| |
+| **docsPath** | `string` | Path to the directory containing plugin documentation.
| |
| [**enterpriseFeatures**](#enterprisefeatures) | `object` | Grafana Enterprise specific features
| |
| **executable** | `string` | The first part of the file name of the backend component executable. There can be multiple executables built for different operating system and architecture. Grafana will check for executables named `_<$GOOS>_<.exe for Windows>`, e.g. `plugin_linux_amd64`. Combination of $GOOS and $GOARCH can be found here: https://golang.org/doc/install/source#environment.
| |
| **hideFromList** | `boolean` | [internal only] Excludes the plugin from listings in Grafana's UI. Only allowed for `builtIn` plugins.
| |