FP-Devicer - v2.0.2
    Preparing search index...

    Interface IdentityEdge

    A weighted relationship between two distinct device identifiers inferred from common signals observed across sessions (shared IP subnet, overlapping fingerprint clusters, or common user-account bindings).

    interface IdentityEdge {
        deviceIdA: string;
        deviceIdB: string;
        firstSeen: Date;
        lastSeen: Date;
        occurrences: number;
        reasons: string[];
        weight: number;
    }
    Index

    Properties

    deviceIdA: string

    One of the two device identifiers in the relationship.

    deviceIdB: string

    The other device identifier.

    firstSeen: Date

    Timestamp of the first session that created this edge.

    lastSeen: Date

    Timestamp of the most-recent session that reinforced this edge.

    occurrences: number

    Number of times (sessions) this relationship was observed and reinforced.

    reasons: string[]

    Human-readable signals that contributed to this edge. Examples: "shared-ip-subnet", "canvas-cluster", "font-overlap".

    weight: number

    Combined edge weight in [0, 1]. A higher value indicates a stronger or more frequently observed relationship.