Agent Maturity Compass API - v1.2.0
    Preparing search index...

    Interface DsarRequest

    interface DsarRequest {
        completedTs: number | null;
        createdTs: number;
        fulfilment?: DsarFulfilmentRecord;
        requestId: string;
        status: "complete" | "pending" | "processing" | "awaiting-fulfilment";
        subject: string;
        type: "delete" | "access" | "portability";
        updatedTs: number;
    }
    Index
    completedTs: number | null
    createdTs: number

    What the fulfilment handler reported doing, when one ran.

    requestId: string
    status: "complete" | "pending" | "processing" | "awaiting-fulfilment"

    'complete' requires a fulfilment handler to have actually accessed, exported or erased the subject's data. 'awaiting-fulfilment' means the request is recorded but nothing has been done yet.

    subject: string
    type: "delete" | "access" | "portability"
    updatedTs: number