BINSERA EHR supports electronic health information (EHI) export in machine-readable formats, including FHIR JSON for clinical data and XML for claims data. This ensures compliance with ONC certification requirements.
All clinical data is exported following the HL7 FHIR R4 standard in JSON format.
{
"resourceType": "Patient",
"id": "12345",
"name": [{ "use": "official", "family": "Doe", "given": ["John"] }],
"gender": "male",
"birthDate": "1985-07-14"
}
Billing and claims data are exported in XML format, structured according to standard healthcare claims data models.
<Claim>
<PatientID>12345</PatientID>
<ClaimID>67890</ClaimID>
<TotalAmount>250.00</TotalAmount>
<DateOfService>2025-03-12</DateOfService>
</Claim>
Users can export EHI data via:
Our EHI export follows: