Type Alias TrustScoreResponse

Current Trust Score for a single dataset, including the overall weighted score, a per-axis breakdown, and per-metric details within each axis.

type TrustScoreResponse = {
    axes: AxisResponse[];
    datasetId: string;
    previousScore?: GenericScore;
    score: GenericScore;
    updatedAt: string;
}
Index
axes: AxisResponse[]

Per-axis breakdown of the Trust Score.

datasetId: string

Unique identifier of the dataset this score belongs to.

previousScore?: GenericScore

Overall Trust Score from the previous computation, for change tracking.

Overall weighted Trust Score across all enabled axes [0, 100].

updatedAt: string

Timestamp of the last Trust Score computation for this dataset.