Type Alias ComputationResponse

Result of a data quality computation for a single dataset.

type ComputationResponse = {
    computationId: string;
    datasetId: dataProducts.DatasetIdType;
    error?: string;
    status: dataProducts.ExecutionStatus;
}
Index
computationId: string

Unique identifier for this individual data quality computation job.

The ID of the dataset

error?: string

Error message if the computation failed; absent on success.

Current execution status of the computation (REQUESTED or FAILED).