Interface ExtensionSourceMetadata

Metadata describing where a descriptor originated from. Useful for debugging, audit logs, or surfacing provenance in developer tooling.

interface ExtensionSourceMetadata {
    sourceName: string;
    sourceVersion?: string;
    identifier?: string;
}

Properties

sourceName: string

Human-friendly name of the pack providing the descriptor (e.g. package name).

sourceVersion?: string

Optional semantic version of the pack.

identifier?: string

Identifier of the pack entry inside a manifest (path, local file, etc.).