cdx-proto
    Preparing search index...

    Type Alias ExternalReference

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

    Type declaration

    • Optionalcomment?: string

      An optional comment describing the external reference

      from field: optional string comment = 3;

    • hashes: Hash[]

      Optional integrity hashes for the external resource content

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

    • 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_6.ExternalReferenceType type = 1;

    • url: string

      The URL to the external reference

      from field: string url = 2;

    from message cyclonedx.v1_6.ExternalReference