Circle V2 API Docs
    Preparing search index...
    patientUtilizationReviewsRouter: BuiltRouter<
        {
            ctx: TRPCContext;
            errorShape: DefaultErrorShape;
            meta: object;
            transformer: false;
        },
        DecorateCreateRouterOptions<
            {
                listForPatient: QueryProcedure<
                    {
                        input: { patientId: string; treatmentEpisodeId?: string };
                        meta: object;
                        output: {
                            authorization_date: string | null;
                            authorization_number: string | null;
                            created_at: DbDate;
                            end_date: string | null;
                            entity_id: number & { __brand: "EntityId" };
                            external_utilization_review_id: string;
                            facility_level_of_care_id:
                                | string & { __brand: "FacilityLevelOfCareId" }
                                | null;
                            frequency: string | null;
                            id: PatientUtilizationReviewId;
                            insurance: string | null;
                            integration_id: string & { __brand: "IntegrationId" };
                            lcd: boolean;
                            level_of_care_id: number | null;
                            level_of_care_name: string | null;
                            next_care_level: string | null;
                            next_care_level_date: string | null;
                            next_review: string | null;
                            number_of_days: number | null;
                            patient_admission_id: number & { __brand: "PatientAdmissionId" };
                            patient_id: string & { __brand: "PatientId" };
                            payor_id: number | null;
                            payor_name: string | null;
                            start_date: string | null;
                            status: string | null;
                            treatment_episode_id: string | null;
                            updated_at: DbDate;
                        }[];
                    },
                >;
            },
        >,
    > = ...