cdx-proto
    Preparing search index...

    Type Alias Dependency

    Dependency: Message<"cyclonedx.v1_7.Dependency"> & {
        dependencies: Dependency[];
        provides: string[];
        ref: string;
    }

    Defines the direct dependencies of a component, service, or the components provided/implemented by a given component. Components or services that do not have their own dependencies must be declared as empty elements within the graph. Components or services that are not represented in the dependency graph may have unknown dependencies. It is recommended that implementations assume this to be opaque and not an indicator of an object being dependency-free. It is recommended to leverage compositions to indicate unknown dependency graphs.

    Type Declaration

    • dependencies: Dependency[]

      The bom_ref identifiers of the components or services that are dependencies of this dependency object.

      from field: repeated cyclonedx.v1_7.Dependency dependencies = 2;

    • provides: string[]

      The bom_ref identifiers of the components or services that define a given specification or standard, which are provided or implemented by this dependency object.

      from field: repeated string provides = 3;

    • ref: string

      References a component or service by its bom_ref attribute

      from field: string ref = 1;

    from message cyclonedx.v1_7.Dependency