cdx-proto
    Preparing search index...

    Type Alias ExternalReference

    ExternalReference: Message<"cyclonedx.v1_7.ExternalReference"> & {
        comment?: string;
        hashes: Hash[];
        properties: Property[];
        type: ExternalReferenceType;
        url: string;
    }

    External references provide a way to document systems, sites, and information that may be relevant but are not included with the BOM. They may also establish specific relationships within or external to the BOM.

    Type Declaration

    • Optionalcomment?: string

      A comment describing the external reference

      from field: optional string comment = 3;

    • hashes: Hash[]

      Integrity hashes for the external resource content

      from field: repeated cyclonedx.v1_7.Hash hashes = 4;

    • properties: Property[]

      Specifies custom properties.

      from field: repeated cyclonedx.v1_7.Property properties = 5;

    • type: ExternalReferenceType

      Specifies the type of external reference. There are built-in types to describe common references. If a type does not exist for the reference being referred to, use the "other" type.

      from field: cyclonedx.v1_7.ExternalReferenceType type = 1;

    • url: string

      The URL to the external reference

      from field: string url = 2;

    from message cyclonedx.v1_7.ExternalReference