TypeAlias.TrustAuditSubject
type TrustAuditSubject = {
baseline: | {
auditedAt: string;
geo: number;
}
| null;
category: string;
delta: number | null;
id: string;
latest: | {
auditedAt: string;
geo: number;
}
| null;
passportId: string;
productName: string;
recruitedAt: string;
state: "active" | "archived" | "baseline_pending";
webPageUrl: string | null;
};
A product tracked as an AI-visibility audit subject: lifecycle state, T0 (baseline) score, latest score and the delta between the two. Returned by the audit subjects list endpoint.
Type Declaration
| Name | Type |
|---|---|
baseline | |
category | string |
delta | number |
id | string |
latest | |
passportId | string |
productName | string |
recruitedAt | string |
state | "active" |
webPageUrl | string |