fieldnotesai
    Preparing search index...

    Interface Case

    Provides functionality for case.

    interface Case {
        abuse_types?: string[];
        assignee?: string | null;
        assignees?: string[];
        case_number?: number;
        case_status: string;
        children_services_involvement?: boolean;
        children_services_notes?: string;
        client_id: string;
        clients?: Client;
        closed_at?: string;
        consent_checklist?: CaseConsentChecklist | null;
        consent_granted?: boolean | null;
        consent_recorded_at?: string | null;
        consent_recorded_by?: string | null;
        current_housing?: string;
        current_safety_rating?: number;
        employment_status?: string;
        form_data?: Record<string, string | number | boolean | null>;
        housing_stability?: string;
        id: string;
        income_source?: string;
        long_term_goals?: string;
        medium_term_goals?: string;
        most_recent_incident?: string;
        most_severe_incident?: string;
        notes_count?: number;
        opened_at: string;
        recordings_count?: number;
        safety_concerns?: boolean;
        short_term_goals?: string;
        title: string;
        updated_at: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    abuse_types?: string[]
    assignee?: string | null
    assignees?: string[]
    case_number?: number
    case_status: string
    children_services_involvement?: boolean
    children_services_notes?: string
    client_id: string
    clients?: Client
    closed_at?: string
    consent_checklist?: CaseConsentChecklist | null
    consent_granted?: boolean | null
    consent_recorded_at?: string | null
    consent_recorded_by?: string | null
    current_housing?: string
    current_safety_rating?: number
    employment_status?: string
    form_data?: Record<string, string | number | boolean | null>
    housing_stability?: string
    id: string
    income_source?: string
    long_term_goals?: string
    medium_term_goals?: string
    most_recent_incident?: string
    most_severe_incident?: string
    notes_count?: number
    opened_at: string
    recordings_count?: number
    safety_concerns?: boolean
    short_term_goals?: string
    title: string
    updated_at: string