When trying to define a percentage for a patients coinsurance on a Coverage Resource, it seems that there is not a corresponding code for “coinsurance”. According to the spec, the “costToBeneficiary” should look something like this:
“costToBeneficiary” : [
{
“type”: {
“coding”: [
{
“system”: “http://terminology.hl7.org/CodeSystem/coverage-copay-type”,
“code”: “coinsurance” // some code to specify coinsurance
}
]
},
“valueQuantity”: {
“value”: “30”,
“unit”: “percent”,
“system”: “http://hl7.org/fhir/ValueSet/ucum-units”,
“code”: “%”
}
}
]
However the following link does not seem to have a code that applies to “coinsurance”, unless this is the intended purpose of “copaypct”.
https://www.hl7.org/fhir/valueset-coverage-copay-type.html
Is this table missing an appropriate value for “coinsurance” or am I misunderstanding the values/unaware of another value set that applies to this portion of a Coverage?