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

    Interface WorkItemSchema

    A work item in the EMPI

    interface WorkItemSchema {
        attributes?: WorkItemAttributes | null;
        creationDate: string;
        description: string;
        id: number;
        lastUpdated: string;
        masterRecord?: MasterRecordSchema | null;
        person?: PersonSchema | null;
        status: number;
        type: number;
        updatedBy?: string | null;
        updateDescription?: string | null;
    }
    Index
    attributes?: WorkItemAttributes | null
    creationDate: string

    Work item creation timestamp

    description: string

    Work item description

    id: number

    Work item ID

    lastUpdated: string

    Work item last updated timestamp

    masterRecord?: MasterRecordSchema | null
    person?: PersonSchema | null
    status: number

    Work item status code

    type: number

    Work item type code

    updatedBy?: string | null
    updateDescription?: string | null