Create FHIR resource from text and store it
Tools/lang2fhir-and-create
POST
/tools/lang2fhir-and-createConverts natural language to FHIR resource and optionally stores it in a FHIR server
Input
Patient John Doe has severe asthma with acute exacerbation
resource: condition-encounter-diagnosisprovider: 550e8400-e29b-41d4-a716-446655440000
Result
{
"fhir_resource": {
"resourceType": "Condition",
"id": "condition-123",
"code": {
"coding": [
{
"system": "http://snomed.info/sct",
"code": "195967001",
"display": "Asthma"
}
]
},
"subject": {
"reference": "Patient/patient-123",
"display": "John Doe"
}
},
"fhir_id": "condition-123",
"success": true,
"message": "Successfully created FHIR resource"
}