OnyeOne Documentation
  1. Health Data Transformation
OnyeOne Documentation
  • Overview
  • OnyeOne Use Cases
  • Authentication
  • Guides
    • OnyeOne Request Flow
  • Core EHR/EMR FHIR R4 APIs
    • Administration
      • Patients
        • Create Patient Resource
        • Update Patient Resource
      • Practitioners
        • Create Practitioner Resource
        • Update Practitioner Resource
        • Create Practitioner Role
        • Update PractitionerRole Resource
      • Locations
        • Create a Location Resource
        • Update Location Resource
      • Health Service
        • Create Health Service Resource
        • Update Health Service Resource
      • Encounters
        • Create Encounter Resource
        • Update Encounter Resource
      • Appointments
        • Create Appointment Resource
        • Update Appointment Resource
      • Group
    • Clinical
      • AllergyIntolerance
      • Condition (Problem)
      • Procedure
      • FamilyMemberHistory
      • CarePlan
      • Goal
      • CareTeam
      • ClinicalImpression
      • AdverseEvent
      • DetectedIssue
      • RiskAssessment
    • Diagnostics
      • Observation
        • Create Observation Resource
      • DiagnosticReport
      • ServiceRequest
      • Media
      • ImagingStudy
      • MolecularSequence
      • Specimen
      • BodyStructure
    • Medications
      • MedicationRequest
      • MedicationDispense
      • MedicationAdministration
      • MedicationStatement
      • Medication
      • MedicationKnowledge
      • Immunization
      • ImmunizationEvaluation
      • ImmunizationRecommendation
    • Financial
      • Account
      • Contract
      • Coverage
      • CoverageEligibilityRequest
      • CoverageEligibilityResponse
      • EnrollmentRequest
      • EnrollmentResponse
      • Claim
      • ClaimResponse
      • PaymentNotice
      • PaymentReconciliation
      • ExplanationOfBenefit
      • VisionPrescription
  • Health Data Transformation
    • Transfrom HL7v2 to FHIR R4
      POST
    • Transform CCDA to FHIR R4
      POST
    • Transform HL7v2 to FHIR R4 and Store in Backend Database
      POST
    • Track API Request
      GET
  • Health Interoperabilty System
    • Create a Subscription
      POST
  • Webhook
  • Get Resource.
    GET
  1. Health Data Transformation

Transform CCDA to FHIR R4

Testing Env
https://staging.onyeone.com/api
Testing Env
https://staging.onyeone.com/api
POST
/hie/transform/ccda-fhir/
This API converts CCDA documents into FHIR R4 resources, enabling the structured mapping and transformation of clinical data. It supports essential mappings, validation, and formatting to ensure compliance with FHIR R4 standards for accurate and consistent data representation in healthcare systems.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Body Params multipart/form-data
template
enum<string> 
required
Allowed values:
CCDConsultationNoteDischargeSummaryHistoryandPhysicalOperativeNoteProcedureNoteProgressNoteReferralNoteTransferSummary
Example:
ConsultationNote
data
string 
required
Example:
<section> <!-- Notes Section --> <templateId root="2.16.840.1.113883.10.20.22.2.65" extension="2016-11-01"/> <!-- This Notes Section is not intended to replace a C-CDA Consultation Note Document --> <!-- If your system captures Consultation Note information in Discrete sections it's not recommended to lump all the text together here. --> <!-- This Notes Section could be included in a Consultation Note Document with other discrete sections (Results, Vitals etc.)--> <!-- This Notes Section is most appropriate for an encounter specific document --> <!-- If this Notes section were included in a CCD, each Note Activity entry should be linked to an appropriate Encounter entry in the Encounters section --> <code code="11488-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Consult note"/> <title>Consultation Notes</title> <text> <list> <item ID="ConsultNote1"> <paragraph>Dr. Specialist - September 8, 2016</paragraph> <paragraph> Dear Dr. Henry Leven: Thank you for referring Ms. Everywoman for evaluation. As you know, she is a 40-year-old woman who has had chronic gastrointestinal symptoms. Approximately 18 years ago, she was hospitalized with a bleeding ulcer. She had a CT scan of the abdomen, which revealed findings consistent with focal nodular hyperplasia (FNH). She has had epigastric abdominal pain as well as a significant change in her bowel movements from baseline constipation to frequent diarrhea. The past medical history is otherwise negative. She takes no prescription medications. The remainder of the history is not contributory. </paragraph> <paragraph>Physical examination revealed a well-appearing woman. The vital signs were normal. The head and neck were unremarkable. The lung fields were clear. The heart exam was normal. The abdomen was obese with normal bowel sounds. There was no tenderness, mass, or hepatosplenomegaly. </paragraph> <paragraph>Endoscopic evaluation revealed a normal colonoscopy. Biopsies taken throughout the colon were essentially unremarkable. Stool tests for pathogenic organisms were negative. Of note, on the upper endoscopy examination, no significant abnormalities were seen; however, upon biopsy, features of celiac disease were noted.</paragraph> <paragraph> In summary, this 40-year-old woman has evidence of celiac disease. We discussed the diagnosis in detail in the office. She was advised to undertake a lifelong gluten-free diet. Followup laboratories in my office were notable for a low serum iron with a low-normal ferritin. The bone density was normal. Repeat triple-phase CT scan of the liver revealed no change in the right hepatic lobe lesion, which is consistent with FNH. I advised periodic reevaluation of the liver with imaging, as well as followup for any potential development of nutritional deficiencies. She should take an iron supplement and continue on a lifelong gluten-free diet. </paragraph> <paragraph>Thank you for the courtesy of this referral. I would be pleased to see Ms. Everywoman in followup.</paragraph> </item> </list> </text> <!-- Note Activity entry --> <entry> <act classCode="ACT" moodCode="EVN"> <templateId root="2.16.840.1.113883.10.20.22.4.202" extension="2016-11-01"/> <code code="34109-9" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Note"> <!-- Code must match or be equivalent to section code --> <translation code="11488-4" codeSystem="2.16.840.1.113883.6.1" codeSystemName="LOINC" displayName="Consult note"/> </code> <text> <reference value="#ConsultNote1"/> </text> <statusCode code="completed"/> <!-- Clinically-relevant time of the note --> <effectiveTime value="20160908"/> <!-- Author Participation --> <author> <templateId root="2.16.840.1.113883.10.20.22.4.119"/> <!-- Time note was actually written --> <time value="20160908083215-0500"/> <assignedAuthor> <!-- Full author information is elsewhere in the document . --> <id root="20cf14fb-b65c-4c8c-a54d-b0cca834c18c"/> <assignedPerson> <name> <prefix>Dr.</prefix> <family>Specialist</family> </name> </assignedPerson> </assignedAuthor> </author> </act> </entry></section>

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://staging.onyeone.com/api/hie/transform/ccda-fhir/' \
--header 'x-api-key;' \
--form 'template="ConsultationNote"' \
--form 'data="<section>    <!-- Notes Section -->    <templateId root=\"2.16.840.1.113883.10.20.22.2.65\" extension=\"2016-11-01\"/>    <!-- This Notes Section is not intended to replace a C-CDA Consultation Note Document -->    <!-- If your system captures Consultation Note information in Discrete sections it'\''s not recommended to lump all the text together here. -->    <!-- This Notes Section could be included in a Consultation Note Document with other discrete sections (Results, Vitals etc.)-->    <!-- This Notes Section is most appropriate for an encounter specific document -->    <!-- If this Notes section were included in a CCD, each Note Activity entry should be linked to an appropriate Encounter entry in the Encounters section -->    <code code=\"11488-4\" codeSystem=\"2.16.840.1.113883.6.1\" codeSystemName=\"LOINC\"        displayName=\"Consult note\"/>    <title>Consultation Notes</title>    <text>        <list>            <item ID=\"ConsultNote1\">                <paragraph>Dr. Specialist - September 8, 2016</paragraph>                <paragraph> Dear Dr. Henry Leven: Thank you for referring Ms. Everywoman for evaluation. As                    you know, she is a 40-year-old woman who has had chronic gastrointestinal                    symptoms. Approximately 18 years ago, she was hospitalized with a bleeding                    ulcer. She had a CT scan of the abdomen, which revealed findings consistent with                    focal nodular hyperplasia (FNH). She has had epigastric abdominal pain as well                    as a significant change in her bowel movements from baseline constipation to                    frequent diarrhea. The past medical history is otherwise negative. She takes no                    prescription medications. The remainder of the history is not contributory. </paragraph>                <paragraph>Physical examination revealed a well-appearing woman. The vital signs                    were normal. The head and neck were unremarkable. The lung fields were clear.                    The heart exam was normal. The abdomen was obese with normal bowel sounds. There                    was no tenderness, mass, or hepatosplenomegaly. </paragraph>                <paragraph>Endoscopic evaluation revealed a normal colonoscopy. Biopsies taken                    throughout the colon were essentially unremarkable. Stool tests for pathogenic                    organisms were negative. Of note, on the upper endoscopy examination, no                    significant abnormalities were seen; however, upon biopsy, features of celiac                    disease were noted.</paragraph>                <paragraph> In summary, this 40-year-old woman has evidence of celiac disease. We                    discussed the diagnosis in detail in the office. She was advised to undertake a                    lifelong gluten-free diet. Followup laboratories in my office were notable for a                    low serum iron with a low-normal ferritin. The bone density was normal. Repeat                    triple-phase CT scan of the liver revealed no change in the right hepatic lobe                    lesion, which is consistent with FNH. I advised periodic reevaluation of the                    liver with imaging, as well as followup for any potential development of                    nutritional deficiencies. She should take an iron supplement and continue on a                    lifelong gluten-free diet. </paragraph>                <paragraph>Thank you for the courtesy of this referral. I would be pleased to see                    Ms. Everywoman in followup.</paragraph>            </item>        </list>    </text>    <!-- Note Activity entry -->    <entry>        <act classCode=\"ACT\" moodCode=\"EVN\">            <templateId root=\"2.16.840.1.113883.10.20.22.4.202\" extension=\"2016-11-01\"/>            <code code=\"34109-9\" codeSystem=\"2.16.840.1.113883.6.1\" codeSystemName=\"LOINC\"                displayName=\"Note\">                <!-- Code must match or be equivalent to section code -->                <translation code=\"11488-4\" codeSystem=\"2.16.840.1.113883.6.1\"                    codeSystemName=\"LOINC\" displayName=\"Consult note\"/>            </code>            <text>                <reference value=\"#ConsultNote1\"/>            </text>            <statusCode code=\"completed\"/>            <!-- Clinically-relevant time of the note -->            <effectiveTime value=\"20160908\"/>            <!-- Author Participation -->            <author>                <templateId root=\"2.16.840.1.113883.10.20.22.4.119\"/>                <!-- Time note was actually written -->                <time value=\"20160908083215-0500\"/>                <assignedAuthor>                    <!-- Full author information is elsewhere in the document . -->                    <id root=\"20cf14fb-b65c-4c8c-a54d-b0cca834c18c\"/>                    <assignedPerson>                        <name>                            <prefix>Dr.</prefix>                            <family>Specialist</family>                        </name>                    </assignedPerson>                </assignedAuthor>            </author>        </act>    </entry></section>"'

Responses

🟢200Success
application/json
Body
messageType
string 
required
data
object 
required
resourceType
string 
required
type
string 
required
entry
array [object {3}] 
required
Example
{
    "messageType": "ReferralNote",
    "data": {
        "resourceType": "Bundle",
        "type": "batch",
        "entry": [
            {
                "fullUrl": "urn:uuid:c252b4dd-7869-28f3-ff53-fe8263e3cd5e",
                "resource": {
                    "resourceType": "Composition",
                    "id": "c252b4dd-7869-28f3-ff53-fe8263e3cd5e",
                    "identifier": {
                        "use": "official",
                        "value": "2.16.840.1.113883.19.5.99999.1"
                    },
                    "status": "final",
                    "type": {
                        "coding": [
                            {
                                "code": "11488-4",
                                "display": "Consult note",
                                "system": "http://loinc.org"
                            }
                        ]
                    },
                    "date": "2018-06-23T09:00:00-08:00",
                    "title": "Community Health Consult Note",
                    "confidentiality": "N",
                    "subject": {
                        "reference": "Patient/75d72dd1-7f86-8a14-d4db-94b59ddc3627"
                    },
                    "encounter": {
                        "reference": "Encounter/bad87531-1d3e-59f3-cfb0-95201b0e21c2"
                    },
                    "custodian": {
                        "reference": "Organization/d9b17f7a-c973-98ba-d798-05a68eafe519"
                    },
                    "author": [
                        {
                            "reference": "Practitioner/08161958-acd8-1ccb-1416-a6a3b9a2c973"
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "Composition/c252b4dd-7869-28f3-ff53-fe8263e3cd5e"
                }
            },
            {
                "fullUrl": "urn:uuid:bad87531-1d3e-59f3-cfb0-95201b0e21c2",
                "resource": {
                    "resourceType": "Encounter",
                    "id": "bad87531-1d3e-59f3-cfb0-95201b0e21c2",
                    "status": "unknown",
                    "class": {
                        "code": "99213",
                        "display": "Office or other outpatient visit for the evaluation and management of an established patient, which requires a medically appropriate history and/or examination and low level of medical decision making. When using time for code selection, 20-29 minutes of total time is spent on the date of the encounter.",
                        "system": "http://www.ama-assn.org/go/cpt"
                    },
                    "identifier": [
                        {
                            "system": "urn:oid:2.16.840.1.113883.19",
                            "value": "9937012"
                        }
                    ],
                    "location": [
                        {
                            "location": {
                                "reference": "Location/6dfdc7c6-e225-71eb-cec1-75870e529061"
                            }
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "Encounter/bad87531-1d3e-59f3-cfb0-95201b0e21c2"
                }
            },
            {
                "fullUrl": "urn:uuid:6dfdc7c6-e225-71eb-cec1-75870e529061",
                "resource": {
                    "resourceType": "Location",
                    "id": "6dfdc7c6-e225-71eb-cec1-75870e529061"
                },
                "request": {
                    "method": "PUT",
                    "url": "Location/6dfdc7c6-e225-71eb-cec1-75870e529061"
                }
            },
            {
                "fullUrl": "urn:uuid:d9b17f7a-c973-98ba-d798-05a68eafe519",
                "resource": {
                    "resourceType": "Organization",
                    "id": "d9b17f7a-c973-98ba-d798-05a68eafe519",
                    "identifier": [
                        {
                            "system": "http://hl7.org/fhir/sid/us-npi",
                            "value": "321CX"
                        }
                    ],
                    "name": "Good Health HIE",
                    "address": [
                        {
                            "use": "work",
                            "line": [
                                "1009 Healthcare Drive "
                            ],
                            "city": "Portland",
                            "state": "OR",
                            "country": "US",
                            "postalCode": "99123"
                        }
                    ],
                    "telecom": [
                        {
                            "system": "phone",
                            "value": "+1(555)-1009",
                            "use": "work"
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "Organization/d9b17f7a-c973-98ba-d798-05a68eafe519"
                }
            },
            {
                "fullUrl": "urn:uuid:08161958-acd8-1ccb-1416-a6a3b9a2c973",
                "resource": {
                    "resourceType": "Practitioner",
                    "id": "08161958-acd8-1ccb-1416-a6a3b9a2c973",
                    "meta": {
                        "profile": [
                            "http://hl7.org/fhir/us/core/StructureDefinition/us-core-practitioner"
                        ]
                    },
                    "identifier": [
                        {
                            "system": "http://hl7.org/fhir/sid/us-npi",
                            "value": "555555555"
                        }
                    ],
                    "name": [
                        {
                            "family": "Primary",
                            "given": [
                                "Patricia",
                                "Patty"
                            ],
                            "suffix": [
                                "M.D."
                            ]
                        }
                    ],
                    "address": [
                        {
                            "line": [
                                "1004 Healthcare Drive "
                            ],
                            "city": "Portland",
                            "state": "OR",
                            "country": "US",
                            "postalCode": "99123"
                        }
                    ],
                    "telecom": [
                        {
                            "system": "phone",
                            "value": "+1(555)-1004",
                            "use": "work"
                        }
                    ],
                    "qualification": [
                        {
                            "code": {
                                "coding": [
                                    {
                                        "code": "207QA0505X",
                                        "display": "Allopathic & Osteopathic Physicians; Family Medicine, Adult Medicine",
                                        "system": "http://nucc.org/provider-taxonomy"
                                    }
                                ]
                            }
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "Practitioner/08161958-acd8-1ccb-1416-a6a3b9a2c973"
                }
            },
            {
                "fullUrl": "urn:uuid:75d72dd1-7f86-8a14-d4db-94b59ddc3627",
                "resource": {
                    "resourceType": "Patient",
                    "id": "75d72dd1-7f86-8a14-d4db-94b59ddc3627",
                    "meta": {
                        "profile": [
                            "http://hl7.org/fhir/us/core/StructureDefinition/us-core-patient"
                        ]
                    },
                    "identifier": [
                        {
                            "system": "http://hl7.org/fhir/sid/us-ssn",
                            "value": "000-00-0000"
                        }
                    ],
                    "name": [
                        {
                            "use": "usual",
                            "family": "Betterhalf",
                            "given": [
                                "Eve"
                            ]
                        },
                        {
                            "family": "Everywoman",
                            "given": [
                                "Eve"
                            ]
                        }
                    ],
                    "birthDate": "1975-05-01",
                    "gender": "female",
                    "extension": [
                        {
                            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-race",
                            "extension": [
                                {
                                    "url": "ombCategory",
                                    "valueCoding": {
                                        "code": "2106-3",
                                        "display": "White"
                                    }
                                },
                                {
                                    "url": "ombCategory",
                                    "valueCoding": {
                                        "code": "2076-8",
                                        "display": "Native Hawaiian or Other Pacific Islander"
                                    }
                                },
                                {
                                    "url": "text",
                                    "valueString": "Mixed"
                                }
                            ]
                        },
                        {
                            "url": "http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity",
                            "extension": [
                                {
                                    "url": "ombCategory",
                                    "valueCoding": {
                                        "code": "2186-5",
                                        "display": "Not Hispanic or Latino"
                                    }
                                },
                                {
                                    "url": "text",
                                    "valueString": "Not Hispanic or Latino"
                                }
                            ]
                        }
                    ],
                    "address": [
                        {
                            "use": "home",
                            "line": [
                                "2222 Home Street"
                            ],
                            "city": "Beaverton",
                            "state": "OR",
                            "country": "US",
                            "postalCode": "97867"
                        }
                    ],
                    "telecom": [
                        {
                            "system": "phone",
                            "value": "+1(555)555-2003",
                            "use": "home"
                        }
                    ],
                    "communication": [
                        {
                            "language": {
                                "coding": [
                                    {
                                        "system": "urn:ietf:bcp:47",
                                        "code": "en",
                                        "display": "English"
                                    }
                                ]
                            },
                            "preferred": true
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "Patient/75d72dd1-7f86-8a14-d4db-94b59ddc3627"
                }
            },
            {
                "fullUrl": "urn:uuid:1e516bfc-532c-65a4-45e2-e8536f0eb630",
                "resource": {
                    "resourceType": "RelatedPerson",
                    "id": "1e516bfc-532c-65a4-45e2-e8536f0eb630",
                    "relationship": [
                        {
                            "coding": [
                                {
                                    "code": "POWATT",
                                    "display": "Power of Attorney",
                                    "system": "urn:oid:2.16.840.1.113883.1.11.19830"
                                }
                            ]
                        }
                    ],
                    "name": [
                        {
                            "family": "Betterhalf",
                            "given": [
                                "Boris",
                                "Bo"
                            ]
                        }
                    ],
                    "telecom": [
                        {
                            "system": "phone",
                            "value": "+1(555)555-2008",
                            "use": "mobile"
                        }
                    ],
                    "address": [
                        {
                            "use": "home",
                            "line": [
                                "2222 Home Street"
                            ],
                            "city": "Beaverton",
                            "state": "OR",
                            "country": "US",
                            "postalCode": "97867"
                        }
                    ],
                    "patient": {
                        "reference": "Patient/75d72dd1-7f86-8a14-d4db-94b59ddc3627"
                    }
                },
                "request": {
                    "method": "PUT",
                    "url": "RelatedPerson/1e516bfc-532c-65a4-45e2-e8536f0eb630"
                }
            },
            {
                "fullUrl": "urn:uuid:4fb8809d-9d4d-4728-185c-9ad4db3f7213",
                "resource": {
                    "resourceType": "DocumentReference",
                    "id": "4fb8809d-9d4d-4728-185c-9ad4db3f7213",
                    "type": {
                        "coding": [
                            {
                                "code": "11488-4",
                                "display": "Consult note",
                                "system": "http://loinc.org"
                            }
                        ]
                    },
                    "date": "2024-12-06T18:05:11.96Z",
                    "status": "current",
                    "content": [
                        {
                            "attachment": {
                                "contentType": "text/plain",
                                "data": "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",
                                "hash": "MjQyMjk1ZDNmOTkyMjFiZDg3MDcwZjVmOTBmYzFiMGU1YWQ2ODAxMg=="
                            }
                        }
                    ]
                },
                "request": {
                    "method": "PUT",
                    "url": "DocumentReference/4fb8809d-9d4d-4728-185c-9ad4db3f7213"
                }
            }
        ]
    }
}
Previous
Transfrom HL7v2 to FHIR R4
Next
Transform HL7v2 to FHIR R4 and Store in Backend Database
Built with