fieldnotesai
    Preparing search index...

    Provides functionality for dbfill result.

    interface DBFillResult {
        cases?: Partial<
            {
                abuse_types: string[];
                children_services_involvement: boolean;
                children_services_notes: string;
                current_housing: string;
                current_safety_rating: number;
                employment_status: string;
                housing_stability: string;
                income_source: string;
                long_term_goals: string;
                medium_term_goals: string;
                most_recent_incident: string;
                most_severe_incident: string;
                safety_concerns: boolean;
                short_term_goals: string;
            },
        >;
        children?: ChildRecord[];
        clients?: Partial<
            {
                birth_country: string;
                dob: string;
                emergency_contact_location: string;
                emergency_contact_name: string;
                emergency_contact_phone: string;
                emergency_contact_relationship: string;
                full_name: string;
                indigenous_identity: boolean;
                message_visibility_concern: boolean;
                number_of_children: number;
                preferred_contact_method: string;
                preferred_name: string;
                year_of_arrival: string;
            },
        >;
        health_assessments?: Partial<
            {
                barriers_to_care: string;
                care_accessed: boolean;
                mental_health_notes: string;
                physical_health_notes: string;
            },
        >;
        safety_plans?: Partial<
            {
                client_response_patterns: string;
                elements_in_place: string;
                gaps_identified: string;
                has_existing_plan: boolean;
                partner_contact_patterns: string;
            },
        >;
    }
    Index

    Properties

    cases?: Partial<
        {
            abuse_types: string[];
            children_services_involvement: boolean;
            children_services_notes: string;
            current_housing: string;
            current_safety_rating: number;
            employment_status: string;
            housing_stability: string;
            income_source: string;
            long_term_goals: string;
            medium_term_goals: string;
            most_recent_incident: string;
            most_severe_incident: string;
            safety_concerns: boolean;
            short_term_goals: string;
        },
    >
    children?: ChildRecord[]
    clients?: Partial<
        {
            birth_country: string;
            dob: string;
            emergency_contact_location: string;
            emergency_contact_name: string;
            emergency_contact_phone: string;
            emergency_contact_relationship: string;
            full_name: string;
            indigenous_identity: boolean;
            message_visibility_concern: boolean;
            number_of_children: number;
            preferred_contact_method: string;
            preferred_name: string;
            year_of_arrival: string;
        },
    >
    health_assessments?: Partial<
        {
            barriers_to_care: string;
            care_accessed: boolean;
            mental_health_notes: string;
            physical_health_notes: string;
        },
    >
    safety_plans?: Partial<
        {
            client_response_patterns: string;
            elements_in_place: string;
            gaps_identified: string;
            has_existing_plan: boolean;
            partner_contact_patterns: string;
        },
    >