Versions Compared

Key

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

...

  • Contribute to Claim Review Search with Medical Item/Service filter

  • Listening for <<signal_mutation_module_after_mutating>> SubmitClaimsMutation

  • Prepare the new checked claims for AI categorisation (not to be selected by reviewers)

  • Convert openIMIS Claims to FHIR Claims and POST to Claim-AI

  • Receive FHIR ClaimResponse

  • Update Claim Status and ReviewStatus

  • Reports claim adjudication misclassifications

Models

The following JSON extension extensions will be created to support the Claim AI-based Categorisation:

  • claim_ai to add information on Claim

    Code Block
    "json_ext": {
      "claim_ai_quality": {
        "was_categorized": "boolean",
        "request_time": "datetime",
        "response_time": "datetime"
      }
    }
  • claim_ai_item to add information on ClaimItem and ClaimService. This is used to store AI categorisation result to allow the misclassification report.

    Code Block
    "json_ext": {
      "claim_ai_quality": {
        "ai_result": "integer"
      }
    }
Plantumlcloud
4
filenameClaimAIExec.png
datajZNtb8IgEMc/DYma2NTq4mutNdFk2wuTvW0QTmWjYIBuuk+/o09zrV1MLvQ4fve/AwqZhdZR4/JMknDBJLWWRGEsqcgWG/TINEYbbEkUa8NOgg+3u9eXtQDJE+XMlUwTbwjOlyjgncK+qE0ZdXDURnwDJ1O/tNdaAlWF7ArHA5UWbrPO2rrUiQxKnqNAMbtBjtBHzFd+bG2i25momsk0B2mDRe50sZ1bJs9bVHyipkMxXOuhasTbndb0GZTIhA2YNhBU2cnFgeJ0L+HZB7qdv1utUri4suaaSrmn7KO5j4cLvYGxQivgPXUkHCm7pvURbBReI5hOjbvaS2qhq/+UjMcPdtMv3StbXnRP1p1TbaWhNb9KFE2CYIIfnIwKCv2wCdXvop2ExKgkxo1KFdg48EUGv3RcRYfE59WqFYe2A/MpGPwvWzc/aOi4jv7VrdcLaTIL8TDwrf8AzVZdT+MwEPw1EQWpUdqCeE5DkYoE94DEa+QmCxicGGwHrvfrb23Hab5cBakPSFaTbmZnPTvupsFlJBURqipYEMVnGSNSBsuIf0BJCypDDNAiJTT9rAijah8WPAcmw0TH4y1Cg1WCa3YXLBMuslean989/nm4pcDyTanEPlht9ELg9VqX0HdmfROZZkTBCxf0H+TBKsbgjnMGpDS8N/j5TJiETpqAzwqkShUtwObkSGK+dWHyg5cSfLjrG7zgcoqNILwSafKX3Q50ZOPTRk5Tj9YCamBcKW560MZUVQ+VvBIxQGX4zINyEL1aGfO5Tus5hSH4q6CUlJcW08oIlus3ycsUEUOLf2TMNMqjpk2lOGbouJ9bBRM9tcgRX0/cW7xFIRVTVgEtsc0gmq4uvFIeQXzRDKapacC/U9ARLQXkNCPMqRkTMkLo87nHVsN8bD+efo5v2gTsjT/HPaWDw3F12CIX4La10RbmZMfgXgeG3jsbbaVbwtiOZO/NbsdaO1roCYQ+KZB76jB4Idk+ddNuayUNaoxyr4mEIf/VxpzbKbvxU3tp7Vj3ZI10tU4LXZ62yL1A8HQtwnBhD9mFweF91IQmv1oNbYsVKS4sxbwfMAcximcHdFJHz/U2w848NLyHn+BxZqdw1iQkLtqlds9bzejUOElP6v2ftYf7ibn1uozQcPxH9B8=
width
compressedtrue
revision7

Because ClaimItem and ClaimService doesn’t extend the ExtendableModel, this change is also made to allow custom fields.

Claim-AI Module

Claim-AI Responsibilities

...