Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The following requirements were considered when updating openIMIS’s Claim adjudication process:

...

the default openIMIS Claim adjudication process should be modified as less as possible

...

Summary

Table of Contents

Claim AI-based Adjudication System

...

Code Block
languagejson
{
  claim_ai_url: string // URL of the openIMIS instance running Claim-AI module. Default: ""
  event_based_activation: boolean // True if the checked Claims are sent to Claim-AI module immediatly after check. Default: False 
}

Claims Preparation

Claim-AI Adjudication Activation Methods

Two activation methods, allowing to start the Claim-AI module processing, are available in the Claim-AI Quality module.

Event-based activation

This activation is based on the openIMIS mutation signal signal_mutation_module_after_mutating SubmitClaimMutation. not actually an activation because

FHIR Contained Resources

FHIR Contained Resources feature (https://www.hl7.org/fhir/references.html#contained) allows to integrate the referred resourced. In our case for FHIR Claim, these are Patient, Condition, Medication, HealthcareService, Practitioner, ActivityDefinition.

...

  • REST API accepting FHIR Claims to categorize them based on a ML model

  • AI-model execution

REST API

The Claim-AI module will define one endpoint that will receive the FHIR Claim Bundle to be adjudicated. The base URL for this module is /claim_ai

...