Skip to main content

EntityEnvelope

Home > @backstage/catalog-model > EntityEnvelope

The envelope skeleton parts of an entity - whatever is necessary to be able to give it a ref and pass to further validation / policy checking.

Signature:

export type EntityEnvelope = {
apiVersion: string;
kind: string;
metadata: {
name: string;
namespace?: string;
};
};