@ukkidney/ukrdc-axios-ts
    Preparing search index...

    Interface TrackableTaskSchema

    Base schema for a trackable background task

    interface TrackableTaskSchema {
        created: string;
        error?: string | null;
        finished?: string | null;
        id: string;
        name: string;
        owner: string;
        started?: string | null;
        status: TrackableTaskSchemaStatusEnum;
        visibility: TrackableTaskSchemaVisibilityEnum;
    }
    Index
    created: string

    Task creation timestamp

    error?: string | null
    finished?: string | null
    id: string

    Task UUID

    name: string

    Task friendly-name

    owner: string

    Task owner username

    started?: string | null

    Task status

    Task visibility. Private tasks are only visible to the user who created them