diff --git a/plugins/catalog-backend-module-backstage-openapi/config.d.ts b/plugins/catalog-backend-module-backstage-openapi/config.d.ts index ce51640495..b7f197ca48 100644 --- a/plugins/catalog-backend-module-backstage-openapi/config.d.ts +++ b/plugins/catalog-backend-module-backstage-openapi/config.d.ts @@ -25,6 +25,20 @@ export interface Config { * A list of plugins, whose OpenAPI specs you want to collate in `InternalOpenApiDocumentationProvider`. */ plugins: string[]; + /** + * Options to ovveride the provided entity's default metadata and spec properties + */ + entityOverrides?: { + metadata?: { + name?: string; + title?: string; + }; + spec?: { + type?: string; + lifecycle?: string; + owner?: string; + }; + }; }; }; };