cdx-proto
    Preparing search index...

    Type Alias EvidenceIdentity

    EvidenceIdentity: Message<"cyclonedx.v1_6.EvidenceIdentity"> & {
        concludedValue?: string;
        confidence?: number;
        field: EvidenceFieldType;
        methods: EvidenceMethods[];
        tools: string[];
    }

    Type declaration

    • OptionalconcludedValue?: string

      The value of the field (cpe, purl, etc) that has been concluded based on the aggregate of all methods (if available).

      from field: optional string concludedValue = 5;

    • Optionalconfidence?: number

      The overall confidence of the evidence from 0 - 1, where 1 is 100% confidence.

      from field: optional float confidence = 2;

    • field: EvidenceFieldType

      The identity field of the component which the evidence describes.

      from field: cyclonedx.v1_6.EvidenceFieldType field = 1;

    • methods: EvidenceMethods[]

      The methods used to extract and/or analyze the evidence.

      from field: repeated cyclonedx.v1_6.EvidenceMethods methods = 3;

    • tools: string[]

      The object in the BOM identified by its bom-ref. This is often a component or service, but may be any object type supporting bom-refs. Tools used for analysis should already be defined in the BOM, either in the metadata/tools, components, or formulation.

      from field: repeated string tools = 4;

    from message cyclonedx.v1_6.EvidenceIdentity