Generate normalized data from a note
POST/generate_normalized_data
Generate normalized data from a Nabla-generated clinical note by extracting ICD-10 and LOINC codes in a FHIR-compliant structure.
It adeptly identifies and categorizes key medical information within the notes, such as past medical history, family medical history, clinical assessments, and vital signs.
Each piece of medical information is represented as an array of FHIR's conditions/observations, each including relevant ICD-10 codes, thereby ensuring compatibility with standardized medical data frameworks.
The Normalize functionality is tailored to enhance the integration of clinical notes into Electronic Health Records (EHRs), facilitating accurate and efficient documentation by aligning with FHIR protocols.
Request
- application/json
Body
required
Array [
]
note objectrequired
sections
object[]required
A key identifying a section of a note. The set of possible keys depend on the template that is used. Check Note template for possible values.
Possible values: [ALLERGIES
, APPOINTMENTS
, ASSESSMENT
, ASSESSMENT_AND_PLAN
, CARDIOVASCULAR_RISKS
, CHIEF_COMPLAINT
, CURRENT_MEDICATIONS
, DIET_APPOINTMENTS
, DIET_CHIEF_COMPLAINT
, DIET_HABITS
, DIET_LIFESTYLE
, DIET_MEDICAL_HISTORY
, DIET_OBJECTIVES
, DIET_VITALS
, FAMILY_HISTORY
, HISTORY_OF_PRESENT_ILLNESS
, IMAGING_RESULTS
, IMMUNIZATIONS
, LAB_RESULTS
, MENTAL_HEALTH_EXAM
, MENTAL_HEALTH_HISTORY
, PAST_MEDICAL_HISTORY
, PAST_OBSTETRIC_HISTORY
, PAST_SURGICAL_HISTORY
, PHYSICAL_EXAM
, PLAN
, PRESCRIPTION
, PSYCHOLOGY_HISTORY_OF_COMPLAINT
, SOAP_ASSESSMENT
, SOAP_OBJECTIVE
, SOAP_PLAN
, SOAP_SUBJECTIVE
, SOCIAL_HISTORY
, VITALS
, WELL_CHILD_CARE
]
CHIEF_COMPLAINT
The section title.
Chief complaint
Content of the note section (required).
Sleep disorder
Locale of the note.
Possible values: [en-US
, en-GB
, fr-FR
]
en-US
Responses
- 200
- application/json
- Schema
- Example (from schema)
Schema
Array [
]
Array [
Array [
]
]
Array [
]
conditions
object[]
required
The clinical status of the condition. Only active
and resolved
are supported for now.
Possible values: [active
, resolved
]
active
coding
object
required
The used coding system, only ICD-10 is supported for now.
Possible values: [http://hl7.org/fhir/sid/icd-10-cm
]
Categories of the condition.
Possible values: [problem_list_item
, encounter_diagnosis
]
family_history
object[]
required
conditions
object[]
The clinical status of the condition. Only active
and resolved
are supported for now.
Possible values: [active
, resolved
]
active
coding
object
required
The used coding system, only ICD-10 is supported for now.
Possible values: [http://hl7.org/fhir/sid/icd-10-cm
]
Categories of the condition.
Possible values: [problem_list_item
, encounter_diagnosis
]
The relation to the patient of the family member the extracted conditions relate to, if applies.
Possible values: [MOTHER
, FATHER
, BROTHER
, SISTER
, SON
, DAUGHTER
, GRANDMOTHER
, GRANDFATHER
, AUNT
, UNCLE
, OTHER
]
observations
object[]
required
coding
object
required
The used coding system, only LOINC is supported for now.
Possible values: [http://loinc.org
]
Code of the LOINC entry.
29463-7
Description of the LOINC entry.
Body weight
value_quantity
object
The value of the quantity.
The unit of the quantity.
Possible values: [METER
, CENTIMETER
, FOOT
, KILOGRAM
, POUND
, MILLIMETERS_OF_MERCURY
, CENTIMETERS_OF_MERCURY
, CELSIUS
, FAHRENHEIT
, BEATS_PER_MINUTE
, BREATHS_PER_MINUTE
, LITER_PER_MINUTE
, MILLIMETER
, PERCENT
, INCH
]
The used coding system, only UCUM is supported for now.
Possible values: [https://ucum.org
]
value_range
object
low
object
required
The value of the quantity.
The unit of the quantity.
Possible values: [METER
, CENTIMETER
, FOOT
, KILOGRAM
, POUND
, MILLIMETERS_OF_MERCURY
, CENTIMETERS_OF_MERCURY
, CELSIUS
, FAHRENHEIT
, BEATS_PER_MINUTE
, BREATHS_PER_MINUTE
, LITER_PER_MINUTE
, MILLIMETER
, PERCENT
, INCH
]
The used coding system, only UCUM is supported for now.
Possible values: [https://ucum.org
]
high
object
required
The value of the quantity.
The unit of the quantity.
Possible values: [METER
, CENTIMETER
, FOOT
, KILOGRAM
, POUND
, MILLIMETERS_OF_MERCURY
, CENTIMETERS_OF_MERCURY
, CELSIUS
, FAHRENHEIT
, BEATS_PER_MINUTE
, BREATHS_PER_MINUTE
, LITER_PER_MINUTE
, MILLIMETER
, PERCENT
, INCH
]
The used coding system, only UCUM is supported for now.
Possible values: [https://ucum.org
]
Additional comment about the observation.
Measured at rest.
{
"conditions": [
{
"clinical_status": "active",
"coding": {
"system": "http://hl7.org/fhir/sid/icd-10-cm",
"code": "G44.8",
"display": "Other specified headache syndromes."
},
"categories": [
"problem_list_item"
]
}
],
"family_history": [
{
"conditions": [
{
"clinical_status": "active",
"coding": {
"system": "http://hl7.org/fhir/sid/icd-10-cm",
"code": "G44.8",
"display": "Other specified headache syndromes."
},
"categories": [
"problem_list_item"
]
}
],
"relationship": "MOTHER"
}
],
"observations": [
{
"coding": {
"system": "http://loinc.org",
"code": "29463-7",
"display": "Body weight"
},
"value_quantity": {
"value": 0,
"unit": "METER",
"system": "https://ucum.org",
"code": "kg"
},
"value_range": {
"low": {
"value": 0,
"unit": "METER",
"system": "https://ucum.org",
"code": "kg"
},
"high": {
"value": 0,
"unit": "METER",
"system": "https://ucum.org",
"code": "kg"
}
},
"note": "Measured at rest."
}
]
}