Type Alias PredictionJobResponse

type PredictionJobResponse = {
    corrId: CorrId;
    corrType: CorrType;
    createdAt: CreatedAt;
    createdBy: string;
    deletedAt: DeletedAt;
    deploymentId: DeploymentId;
    details: {
        isScheduled: boolean;
        lineageSchemaUpdated: boolean;
        outputFiles: OutputFile[];
    };
    experimentVersionNumber: string;
    id: EntityId;
    jobType: JobType;
    modelId: ModelId;
    name: string;
    parentJobId: ParentJobId;
    parentName: string;
    rowsPredicted: number;
    status: "pending"
    | "completed"
    | "cancelled"
    | "error";
    success: boolean;
    tenantId: TenantId;
    trigger: string;
    updatedAt: UpdatedAt;
}
Index

Properties

corrId: CorrId

The ID of a correlated resource of corrType

corrType: CorrType

Types names of correlated resources (batch 'prediction' and experiment_version)

createdAt: CreatedAt

Timestamp when this was created

createdBy: string

ID of the owner/user that created this entity

deletedAt: DeletedAt

Timestamp when this is deleted

deploymentId: DeploymentId

ID of a model deployment

details: {
    isScheduled: boolean;
    lineageSchemaUpdated: boolean;
    outputFiles: OutputFile[];
}
experimentVersionNumber: string

ID of this entity

jobType: JobType

The type for this job

modelId: ModelId

ID of the model

name: string
parentJobId: ParentJobId

ID of the current job's parent

parentName: string
rowsPredicted: number
status: "pending" | "completed" | "cancelled" | "error"

Status of this job

success: boolean
tenantId: TenantId

Tenant ID for this entity

trigger: string
updatedAt: UpdatedAt

Timestamp when this was updated