UnitedHealth Group · Schema
UnitedHealth Group FHIR MedicationKnowledge
FHIR R4 MedicationKnowledge resource for drug formulary coverage information from UnitedHealth Group
HealthcareHealth InsuranceFHIRClaimsInteroperabilityFortune 100
Properties
| Name | Type | Description |
|---|---|---|
| resourceType | string | FHIR resource type |
| id | string | Resource ID |
| status | string | Drug status |
| code | object | Drug code (RxNorm) |
| synonym | array | Drug synonyms |
| doseForm | object | Dose form coding |
| amount | object | Drug quantity |
| drugCharacteristic | array | Drug characteristics including formulary tier |
| regulatory | array | Regulatory information |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/unitedhealth/refs/heads/main/json-schema/optum-fhir-medication-knowledge-schema.json",
"title": "UnitedHealth Group FHIR MedicationKnowledge",
"description": "FHIR R4 MedicationKnowledge resource for drug formulary coverage information from UnitedHealth Group",
"type": "object",
"properties": {
"resourceType": {
"type": "string",
"enum": [
"MedicationKnowledge"
],
"description": "FHIR resource type"
},
"id": {
"type": "string",
"description": "Resource ID"
},
"status": {
"type": "string",
"enum": [
"active",
"inactive",
"entered-in-error"
],
"description": "Drug status"
},
"code": {
"type": "object",
"description": "Drug code (RxNorm)"
},
"synonym": {
"type": "array",
"items": {
"type": "string"
},
"description": "Drug synonyms"
},
"doseForm": {
"type": "object",
"description": "Dose form coding"
},
"amount": {
"type": "object",
"description": "Drug quantity"
},
"drugCharacteristic": {
"type": "array",
"description": "Drug characteristics including formulary tier",
"items": {
"type": "object",
"properties": {
"type": {
"type": "object"
},
"value": {}
}
}
},
"regulatory": {
"type": "array",
"description": "Regulatory information",
"items": {
"type": "object"
}
}
}
}