health.hl7v23
Module health.hl7v23
Declarations
Definitions
ballerinax/health.hl7v23 Ballerina library
Module for HL7 v2.3 specification.
HL7 v23 Module
Module Overview
This Module holds the messages, segments and data types for the HL7 version 2.3.
Usage
To add the HL7 v2.3 dependency the project simply import the package as below,
import ballerinax/health.hl7v23
Sample: Simple HL7 Server implementation compatible for HL7 v2.3 which accept any message HL7 message available
in this package. This server binds to port 3000
Tip: Use Hapi TestPanel or any HL7 v2.3 compatible client to invoke this server.
import ballerina/io; import ballerina/tcp; import ballerina/uuid; import ballerinax/health.hl7v2; import ballerinax/health.hl7v23; service on new tcp:Listener(3000) { remote function onConnect(tcp:Caller caller) returns tcp:ConnectionService { io:println("Client connected to HL7 server: ", caller.remotePort.toString()); return new HL7ServiceConnectionService(); } } service class HL7ServiceConnectionService { *tcp:ConnectionService; remote function onBytes(tcp:Caller caller, readonly & byte[] data) returns tcp:Error? { string|error fromBytes = string:fromBytes(data); if fromBytes is string { io:println("Received HL7 Message: ", fromBytes); } // Parse the received message. hl7v2:Message|error parsedMsg = hl7v2:parse(data); if parsedMsg is error { return error(string `Error occurred while parsing the received message: ${parsedMsg.message()}`, parsedMsg); } io:println(string `Parsed HL7 message: ${parsedMsg.toJsonString()}`); // Extract Message header (MSH). hl7v23:MSH? msh = (); if parsedMsg is hl7v2:Message && parsedMsg.hasKey("msh") { anydata mshEntry = parsedMsg["msh"]; hl7v23:MSH|error tempMSH = mshEntry.ensureType(); if tempMSH is error { return error("Error occurred while casting MSH", tempMSH); } msh = tempMSH; } if msh is () { return error("Failed to extract MSH from HL7 message"); } // Create Acknowledgement message. hl7v23:ACK ack = { msh: { msh2: "^~\\&", msh3: {hd1: "TESTSERVER"}, msh4: {hd1: "WSO2OH"}, msh5: {hd1: msh.msh3.hd1}, msh6: {hd1: msh.msh4.hd1}, msh9: {cm_msg1: hl7v23:ACK_MESSAGE_TYPE}, msh10: uuid:createType1AsString().substring(0, 8), msh11: {pt1: "P"}, msh12: "2.3" }, msa: { msa1: "AA", msa2: msh.msh10 } }; // Encode message to wire format. byte[]|hl7v2:HL7Error encodedMsg = hl7v2:encode(hl7v23:VERSION, ack); if encodedMsg is hl7v2:HL7Error { return error("Error occurred while encoding acknowledgement", encodedMsg); } string|error resp = string:fromBytes(encodedMsg); if resp is string { io:println(string `Encoded HL7 ACK Response Message: ${resp}`); } // Echoes back the data to the client from which the data is received. check caller->writeBytes(encodedMsg); } remote function onError(tcp:Error err) { io:println(string `An error occurred while receiving HL7 message: ${err.message()}. Stack trace: `, err.stackTrace()); } remote function onClose() { io:println("Client left."); } }
Functions
createHL7v23Encoder
function createHL7v23Encoder() returns Encoder
Function to create hl7v2:Encoder implementation for HL7 v2.3. Note: It is recommended to use hl7v2:HL7Encoder instead of this. This function is used by internal internal package framework
Return Type
- Encoder - Return instance of hl7v2:Encoder implementation
createHL7v23Parser
function createHL7v23Parser() returns Parser
Function to create hl7v2:Parser implementation for HL7 v2.3. Note: It is recommended to use hl7v2:HL7Parser instead of this. This function is used by internal internal package framework
Return Type
- Parser - Return instance of hl7v2:Parser implementation
Constants
health.hl7v23: ACC_SEGMENT_NAME
health.hl7v23: ACK_MESSAGE_TYPE
health.hl7v23: ADD_SEGMENT_NAME
health.hl7v23: ADT_A01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: ADT_A01_MESSAGE_TYPE
health.hl7v23: ADT_A01_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: ADT_A02_MESSAGE_TYPE
health.hl7v23: ADT_A03_MESSAGE_TYPE
health.hl7v23: ADT_A03_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: ADT_A06_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: ADT_A06_MESSAGE_TYPE
health.hl7v23: ADT_A06_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: ADT_A09_MESSAGE_TYPE
health.hl7v23: ADT_A12_MESSAGE_TYPE
health.hl7v23: ADT_A16_MESSAGE_TYPE
health.hl7v23: ADT_A17_MESSAGE_TYPE
health.hl7v23: ADT_A18_MESSAGE_TYPE
health.hl7v23: ADT_A20_MESSAGE_TYPE
health.hl7v23: ADT_A24_MESSAGE_TYPE
health.hl7v23: ADT_A30_MESSAGE_TYPE
health.hl7v23: ADT_A38_MESSAGE_TYPE
health.hl7v23: ADT_A39_MESSAGE_TYPE
health.hl7v23: ADT_A39_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ADT_A43_MESSAGE_TYPE
health.hl7v23: ADT_A43_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ADT_A45_MERGE_INFO_SEGMENT_COMPONENT
health.hl7v23: ADT_A45_MESSAGE_TYPE
health.hl7v23: ADT_A50_MESSAGE_TYPE
health.hl7v23: AIG_SEGMENT_NAME
health.hl7v23: AIL_SEGMENT_NAME
health.hl7v23: AIP_SEGMENT_NAME
health.hl7v23: AIS_SEGMENT_NAME
health.hl7v23: AL1_SEGMENT_NAME
health.hl7v23: APR_SEGMENT_NAME
health.hl7v23: ARD_A19_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: ARD_A19_MESSAGE_TYPE
health.hl7v23: ARD_A19_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: ARD_A19_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ARQ_SEGMENT_NAME
health.hl7v23: AUT_SEGMENT_NAME
health.hl7v23: BAR_P01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: BAR_P01_MESSAGE_TYPE
health.hl7v23: BAR_P01_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: BAR_P01_VISIT_SEGMENT_COMPONENT
health.hl7v23: BAR_P02_MESSAGE_TYPE
health.hl7v23: BAR_P02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: BAR_P06_MESSAGE_TYPE
health.hl7v23: BAR_P06_PATIENT_SEGMENT_COMPONENT
health.hl7v23: BHS_SEGMENT_NAME
health.hl7v23: BLG_SEGMENT_NAME
health.hl7v23: BTS_SEGMENT_NAME
health.hl7v23: CDM_SEGMENT_NAME
health.hl7v23: CM0_SEGMENT_NAME
health.hl7v23: CM1_SEGMENT_NAME
health.hl7v23: CM2_SEGMENT_NAME
health.hl7v23: CRM_C01_MESSAGE_TYPE
health.hl7v23: CRM_C01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: CSP_SEGMENT_NAME
health.hl7v23: CSR_SEGMENT_NAME
health.hl7v23: CSS_SEGMENT_NAME
health.hl7v23: CSU_C09_MESSAGE_TYPE
health.hl7v23: CSU_C09_PATIENT_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_RX_ADMIN_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_STUDY_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_STUDY_PHARM_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_STUDY_PHASE_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_STUDY_SCHEDULE_SEGMENT_COMPONENT
health.hl7v23: CSU_C09_VISIT_SEGMENT_COMPONENT
health.hl7v23: CTD_SEGMENT_NAME
health.hl7v23: CTI_SEGMENT_NAME
health.hl7v23: DB1_SEGMENT_NAME
health.hl7v23: DFT_P03_FINANCIAL_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: DFT_P03_FINANCIAL_SEGMENT_COMPONENT
health.hl7v23: DFT_P03_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: DFT_P03_MESSAGE_TYPE
health.hl7v23: DG1_SEGMENT_NAME
health.hl7v23: DOC_T12_MESSAGE_TYPE
health.hl7v23: DOC_T12_RESULT_SEGMENT_COMPONENT
health.hl7v23: DRG_SEGMENT_NAME
health.hl7v23: DSC_SEGMENT_NAME
health.hl7v23: DSP_SEGMENT_NAME
health.hl7v23: DSR_Q01_MESSAGE_TYPE
health.hl7v23: DSR_Q03_MESSAGE_TYPE
health.hl7v23: EDR_Q01_MESSAGE_TYPE
health.hl7v23: EQL_SEGMENT_NAME
health.hl7v23: EQQ_Q01_MESSAGE_TYPE
health.hl7v23: ERP_Q01_MESSAGE_TYPE
health.hl7v23: ERQ_SEGMENT_NAME
health.hl7v23: ERR_SEGMENT_NAME
health.hl7v23: EVN_SEGMENT_NAME
health.hl7v23: FAC_SEGMENT_NAME
health.hl7v23: FHS_SEGMENT_NAME
health.hl7v23: FT1_SEGMENT_NAME
health.hl7v23: FTS_SEGMENT_NAME
health.hl7v23: GOL_SEGMENT_NAME
health.hl7v23: GT1_SEGMENT_NAME
health.hl7v23: IN1_SEGMENT_NAME
health.hl7v23: IN2_SEGMENT_NAME
health.hl7v23: IN3_SEGMENT_NAME
health.hl7v23: LCC_SEGMENT_NAME
health.hl7v23: LCH_SEGMENT_NAME
health.hl7v23: LDP_SEGMENT_NAME
health.hl7v23: LOC_SEGMENT_NAME
health.hl7v23: LRL_SEGMENT_NAME
health.hl7v23: MDM_T01_MESSAGE_TYPE
health.hl7v23: MDM_T02_MESSAGE_TYPE
health.hl7v23: MFA_SEGMENT_NAME
health.hl7v23: MFE_SEGMENT_NAME
health.hl7v23: MFI_SEGMENT_NAME
health.hl7v23: MFK_M01_MESSAGE_TYPE
health.hl7v23: MFK_M02_MESSAGE_TYPE
health.hl7v23: MFN_M01_MESSAGE_TYPE
health.hl7v23: MFN_M01_MF_SEGMENT_COMPONENT
health.hl7v23: MFN_M02_MESSAGE_TYPE
health.hl7v23: MFN_M02_MF_STAFF_SEGMENT_COMPONENT
health.hl7v23: MFN_M03_MESSAGE_TYPE
health.hl7v23: MFN_M03_MF_TEST_SEGMENT_COMPONENT
health.hl7v23: MFN_M05_MESSAGE_TYPE
health.hl7v23: MFN_M05_MF_LOC_DEPT_SEGMENT_COMPONENT
health.hl7v23: MFN_M05_MF_LOCATION_SEGMENT_COMPONENT
health.hl7v23: MFN_M06_MESSAGE_TYPE
health.hl7v23: MFN_M06_MF_CDM_SEGMENT_COMPONENT
health.hl7v23: MFN_M07_MESSAGE_TYPE
health.hl7v23: MFN_M07_MF_CLIN_STUDY_SEGMENT_COMPONENT
health.hl7v23: MFN_M07_MF_PHASE_SCHED_DETAIL_SEGMENT_COMPONENT
health.hl7v23: MFN_M08_MESSAGE_TYPE
health.hl7v23: MFN_M08_MF_NUMERIC_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: MFN_M08_MF_TEST_NUMERIC_SEGMENT_COMPONENT
health.hl7v23: MFN_M09_MESSAGE_TYPE
health.hl7v23: MFN_M09_MF_TEST_CAT_DETAIL_SEGMENT_COMPONENT
health.hl7v23: MFN_M09_MF_TEST_CATEGORICAL_SEGMENT_COMPONENT
health.hl7v23: MFN_M10_MESSAGE_TYPE
health.hl7v23: MFN_M10_MF_TEST_BATT_DETAIL_SEGMENT_COMPONENT
health.hl7v23: MFN_M10_MF_TEST_BATTERIES_SEGMENT_COMPONENT
health.hl7v23: MFN_M11_MESSAGE_TYPE
health.hl7v23: MFN_M11_MF_TEST_CALC_DETAIL_SEGMENT_COMPONENT
health.hl7v23: MFN_M11_MF_TEST_CALCULATED_SEGMENT_COMPONENT
health.hl7v23: MRG_SEGMENT_NAME
health.hl7v23: MSA_SEGMENT_NAME
health.hl7v23: MSH_SEGMENT_NAME
health.hl7v23: NCK_SEGMENT_NAME
health.hl7v23: NK1_SEGMENT_NAME
health.hl7v23: NPU_SEGMENT_NAME
health.hl7v23: NSC_SEGMENT_NAME
health.hl7v23: NST_SEGMENT_NAME
health.hl7v23: NTE_SEGMENT_NAME
health.hl7v23: OBR_SEGMENT_NAME
health.hl7v23: OBX_SEGMENT_NAME
health.hl7v23: ODS_SEGMENT_NAME
health.hl7v23: ODT_SEGMENT_NAME
health.hl7v23: OM1_SEGMENT_NAME
health.hl7v23: OM2_SEGMENT_NAME
health.hl7v23: OM3_SEGMENT_NAME
health.hl7v23: OM4_SEGMENT_NAME
health.hl7v23: OM5_SEGMENT_NAME
health.hl7v23: OM6_SEGMENT_NAME
health.hl7v23: OMD_O01_DIET_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_MESSAGE_TYPE
health.hl7v23: OMD_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_ORDER_DIET_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_ORDER_TRAY_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: OMD_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_MESSAGE_TYPE
health.hl7v23: OMN_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: OMN_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_MESSAGE_TYPE
health.hl7v23: OMS_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: OMS_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: ORC_SEGMENT_NAME
health.hl7v23: ORD_O02_MESSAGE_TYPE
health.hl7v23: ORD_O02_ORDER_DIET_SEGMENT_COMPONENT
health.hl7v23: ORD_O02_ORDER_TRAY_SEGMENT_COMPONENT
health.hl7v23: ORD_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORD_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ORF_R04_MESSAGE_TYPE
health.hl7v23: ORF_R04_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: ORF_R04_ORDER_SEGMENT_COMPONENT
health.hl7v23: ORF_R04_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORF_R04_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_CHOICE_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_MESSAGE_TYPE
health.hl7v23: ORM_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_ORDER_DETAIL_SEGMENT_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORM_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: ORN_O02_MESSAGE_TYPE
health.hl7v23: ORN_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: ORN_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORN_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ORR_O02_CHOICE_SEGMENT_COMPONENT
health.hl7v23: ORR_O02_MESSAGE_TYPE
health.hl7v23: ORR_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: ORR_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORR_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ORU_R01_MESSAGE_TYPE
health.hl7v23: ORU_R01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: ORU_R01_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: ORU_R01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: ORU_R01_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: ORU_R01_VISIT_SEGMENT_COMPONENT
health.hl7v23: OSQ_Q06_MESSAGE_TYPE
health.hl7v23: OSR_Q06_MESSAGE_TYPE
health.hl7v23: OSR_Q06_ORDER_SEGMENT_COMPONENT
health.hl7v23: OSR_Q06_PATIENT_SEGMENT_COMPONENT
health.hl7v23: OSR_Q06_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: PCR_SEGMENT_NAME
health.hl7v23: PD1_SEGMENT_NAME
health.hl7v23: PDC_SEGMENT_NAME
health.hl7v23: PEO_SEGMENT_NAME
health.hl7v23: PES_SEGMENT_NAME
health.hl7v23: PEX_P07_ASSOCIATED_PERSON_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_ASSOCIATED_RX_ADMIN_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_ASSOCIATED_RX_ORDER_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_EXPERIENCE_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_MESSAGE_TYPE
health.hl7v23: PEX_P07_PEX_CAUSE_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_PEX_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_RX_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_RX_ORDER_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_STUDY_SEGMENT_COMPONENT
health.hl7v23: PEX_P07_VISIT_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_GOAL_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_MESSAGE_TYPE
health.hl7v23: PGL_PC6_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_ORDER_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PGL_PC6_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PID_SEGMENT_NAME
health.hl7v23: PIN_I07_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: PIN_I07_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: PIN_I07_MESSAGE_TYPE
health.hl7v23: PIN_I07_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_GOAL_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_MESSAGE_TYPE
health.hl7v23: PPG_PCG_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_ORDER_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPG_PCG_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_GOAL_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_MESSAGE_TYPE
health.hl7v23: PPP_PCB_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_ORDER_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPP_PCB_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_GOAL_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_MESSAGE_TYPE
health.hl7v23: PPR_PC1_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_ORDER_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPR_PC1_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_GOAL_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_MESSAGE_TYPE
health.hl7v23: PPT_PCL_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_ORDER_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PATIENT_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPT_PCL_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_GOAL_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_GOAL_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_MESSAGE_TYPE
health.hl7v23: PPV_PCA_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_ORDER_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_PATIENT_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PPV_PCA_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PR1_SEGMENT_NAME
health.hl7v23: PRA_SEGMENT_NAME
health.hl7v23: PRB_SEGMENT_NAME
health.hl7v23: PRC_SEGMENT_NAME
health.hl7v23: PRD_SEGMENT_NAME
health.hl7v23: PRR_PC5_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_GOAL_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_MESSAGE_TYPE
health.hl7v23: PRR_PC5_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_ORDER_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PATIENT_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PROBLEM_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PRR_PC5_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PSH_SEGMENT_NAME
health.hl7v23: PTH_SEGMENT_NAME
health.hl7v23: PTR_PCF_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_GOAL_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_MESSAGE_TYPE
health.hl7v23: PTR_PCF_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_ORDER_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PATHWAY_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PATIENT_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v23: PTR_PCF_PROBLEM_SEGMENT_COMPONENT
health.hl7v23: PV1_SEGMENT_NAME
health.hl7v23: PV2_SEGMENT_NAME
health.hl7v23: QAK_SEGMENT_NAME
health.hl7v23: QCK_Q02_MESSAGE_TYPE
health.hl7v23: QRD_SEGMENT_NAME
health.hl7v23: QRF_SEGMENT_NAME
health.hl7v23: QRY_A19_MESSAGE_TYPE
health.hl7v23: QRY_PC4_MESSAGE_TYPE
health.hl7v23: QRY_Q01_MESSAGE_TYPE
health.hl7v23: QRY_Q02_MESSAGE_TYPE
health.hl7v23: QRY_R02_MESSAGE_TYPE
health.hl7v23: QRY_T12_MESSAGE_TYPE
health.hl7v23: RAR_RAR_DEFINITION_SEGMENT_COMPONENT
health.hl7v23: RAR_RAR_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RAR_RAR_MESSAGE_TYPE
health.hl7v23: RAR_RAR_ORDER_SEGMENT_COMPONENT
health.hl7v23: RAR_RAR_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_COMPONENTS_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_MESSAGE_TYPE
health.hl7v23: RAS_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RAS_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: RCI_I05_MESSAGE_TYPE
health.hl7v23: RCI_I05_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RCI_I05_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RCI_I05_RESULTS_SEGMENT_COMPONENT
health.hl7v23: RCL_I06_MESSAGE_TYPE
health.hl7v23: RCL_I06_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_COMPONENT_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_MESSAGE_TYPE
health.hl7v23: RDE_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RDE_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: RDF_SEGMENT_NAME
health.hl7v23: RDO_O01_COMPONENT_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_MESSAGE_TYPE
health.hl7v23: RDO_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RDO_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: RDR_RDR_DEFINITION_SEGMENT_COMPONENT
health.hl7v23: RDR_RDR_DISPENSE_SEGMENT_COMPONENT
health.hl7v23: RDR_RDR_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RDR_RDR_MESSAGE_TYPE
health.hl7v23: RDR_RDR_ORDER_SEGMENT_COMPONENT
health.hl7v23: RDR_RDR_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_COMPONENT_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_MESSAGE_TYPE
health.hl7v23: RDS_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RDS_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: RDT_SEGMENT_NAME
health.hl7v23: REF_I12_AUTCTD_SUPPGRP2_SEGMENT_COMPONENT
health.hl7v23: REF_I12_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v23: REF_I12_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: REF_I12_MESSAGE_TYPE
health.hl7v23: REF_I12_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: REF_I12_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: REF_I12_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: REF_I12_RESULTS_SEGMENT_COMPONENT
health.hl7v23: REF_I12_VISIT_SEGMENT_COMPONENT
health.hl7v23: RER_RER_DEFINITION_SEGMENT_COMPONENT
health.hl7v23: RER_RER_MESSAGE_TYPE
health.hl7v23: RER_RER_ORDER_SEGMENT_COMPONENT
health.hl7v23: RER_RER_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RF1_SEGMENT_NAME
health.hl7v23: RGR_RGR_DEFINITION_SEGMENT_COMPONENT
health.hl7v23: RGR_RGR_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RGR_RGR_MESSAGE_TYPE
health.hl7v23: RGR_RGR_ORDER_SEGMENT_COMPONENT
health.hl7v23: RGR_RGR_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RGS_SEGMENT_NAME
health.hl7v23: RGV_O01_COMPONENTS_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_ENCODING_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_GIVE_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_MESSAGE_TYPE
health.hl7v23: RGV_O01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_ORDER_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RGV_O01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: ROL_SEGMENT_NAME
health.hl7v23: ROR_ROR_DEFINITION_SEGMENT_COMPONENT
health.hl7v23: ROR_ROR_MESSAGE_TYPE
health.hl7v23: ROR_ROR_ORDER_SEGMENT_COMPONENT
health.hl7v23: ROR_ROR_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_AUTCTD_SUPPGRP2_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_MESSAGE_TYPE
health.hl7v23: RPA_I08_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_RESULTS_SEGMENT_COMPONENT
health.hl7v23: RPA_I08_VISIT_SEGMENT_COMPONENT
health.hl7v23: RPI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RPI_I01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RPI_I01_MESSAGE_TYPE
health.hl7v23: RPI_I01_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RPL_I02_MESSAGE_TYPE
health.hl7v23: RPL_I02_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQ1_SEGMENT_NAME
health.hl7v23: RQA_I08_AUTCTD_SUPPGRP2_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_MESSAGE_TYPE
health.hl7v23: RQA_I08_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_RESULTS_SEGMENT_COMPONENT
health.hl7v23: RQA_I08_VISIT_SEGMENT_COMPONENT
health.hl7v23: RQC_I05_MESSAGE_TYPE
health.hl7v23: RQC_I05_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQC_I06_MESSAGE_TYPE
health.hl7v23: RQC_I06_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQD_SEGMENT_NAME
health.hl7v23: RQI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RQI_I01_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: RQI_I01_MESSAGE_TYPE
health.hl7v23: RQI_I01_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQP_I04_MESSAGE_TYPE
health.hl7v23: RQP_I04_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RQQ_Q01_MESSAGE_TYPE
health.hl7v23: RRA_O02_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v23: RRA_O02_MESSAGE_TYPE
health.hl7v23: RRA_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: RRA_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RRA_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: RRD_O02_DISPENSE_SEGMENT_COMPONENT
health.hl7v23: RRD_O02_MESSAGE_TYPE
health.hl7v23: RRD_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: RRD_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RRD_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: RRG_O02_GIVE_SEGMENT_COMPONENT
health.hl7v23: RRG_O02_MESSAGE_TYPE
health.hl7v23: RRG_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: RRG_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RRG_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_AUTCTD_SUPPGRP2_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_MESSAGE_TYPE
health.hl7v23: RRI_I12_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_PROCEDURE_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_PROVIDER_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_RESULTS_SEGMENT_COMPONENT
health.hl7v23: RRI_I12_VISIT_SEGMENT_COMPONENT
health.hl7v23: RRO_O02_MESSAGE_TYPE
health.hl7v23: RRO_O02_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v23: RRO_O02_ORDER_SEGMENT_COMPONENT
health.hl7v23: RRO_O02_PATIENT_SEGMENT_COMPONENT
health.hl7v23: RRO_O02_RESPONSE_SEGMENT_COMPONENT
health.hl7v23: RXA_SEGMENT_NAME
health.hl7v23: RXC_SEGMENT_NAME
health.hl7v23: RXD_SEGMENT_NAME
health.hl7v23: RXE_SEGMENT_NAME
health.hl7v23: RXG_SEGMENT_NAME
health.hl7v23: RXO_SEGMENT_NAME
health.hl7v23: RXR_SEGMENT_NAME
health.hl7v23: SCH_SEGMENT_NAME
health.hl7v23: SIU_S12_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SIU_S12_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SIU_S12_MESSAGE_TYPE
health.hl7v23: SIU_S12_PATIENT_SEGMENT_COMPONENT
health.hl7v23: SIU_S12_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SIU_S12_RESOURCES_SEGMENT_COMPONENT
health.hl7v23: SIU_S12_SERVICE_SEGMENT_COMPONENT
health.hl7v23: SPQ_Q01_MESSAGE_TYPE
health.hl7v23: SPR_SEGMENT_NAME
health.hl7v23: SQM_S25_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQM_S25_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQM_S25_MESSAGE_TYPE
health.hl7v23: SQM_S25_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQM_S25_REQUEST_SEGMENT_COMPONENT
health.hl7v23: SQM_S25_RESOURCES_SEGMENT_COMPONENT
health.hl7v23: SQM_S25_SERVICE_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_MESSAGE_TYPE
health.hl7v23: SQR_S25_PATIENT_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_RESOURCES_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_SCHEDULE_SEGMENT_COMPONENT
health.hl7v23: SQR_S25_SERVICE_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_MESSAGE_TYPE
health.hl7v23: SRM_S01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_RESOURCES_SEGMENT_COMPONENT
health.hl7v23: SRM_S01_SERVICE_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_MESSAGE_TYPE
health.hl7v23: SRR_S01_PATIENT_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_RESOURCES_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_SCHEDULE_SEGMENT_COMPONENT
health.hl7v23: SRR_S01_SERVICE_SEGMENT_COMPONENT
health.hl7v23: STF_SEGMENT_NAME
health.hl7v23: SUR_P09_FACILITY_DETAIL_SEGMENT_COMPONENT
health.hl7v23: SUR_P09_FACILITY_SEGMENT_COMPONENT
health.hl7v23: SUR_P09_MESSAGE_TYPE
health.hl7v23: SUR_P09_PRODUCT_SEGMENT_COMPONENT
health.hl7v23: TBR_Q01_MESSAGE_TYPE
health.hl7v23: TXA_SEGMENT_NAME
health.hl7v23: UB1_SEGMENT_NAME
health.hl7v23: UB2_SEGMENT_NAME
health.hl7v23: UDM_Q05_MESSAGE_TYPE
health.hl7v23: URD_SEGMENT_NAME
health.hl7v23: URS_SEGMENT_NAME
health.hl7v23: VAR_SEGMENT_NAME
health.hl7v23: VERSION
health.hl7v23: VQQ_Q01_MESSAGE_TYPE
health.hl7v23: VTQ_SEGMENT_NAME
health.hl7v23: VXQ_V01_MESSAGE_TYPE
health.hl7v23: VXR_V03_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: VXR_V03_MESSAGE_TYPE
health.hl7v23: VXR_V03_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: VXR_V03_ORDER_SEGMENT_COMPONENT
health.hl7v23: VXR_V03_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v23: VXU_V04_INSURANCE_SEGMENT_COMPONENT
health.hl7v23: VXU_V04_MESSAGE_TYPE
health.hl7v23: VXU_V04_OBSERVATION_SEGMENT_COMPONENT
health.hl7v23: VXU_V04_ORDER_SEGMENT_COMPONENT
health.hl7v23: VXU_V04_PATIENT_SEGMENT_COMPONENT
health.hl7v23: VXX_V02_MESSAGE_TYPE
health.hl7v23: VXX_V02_PATIENT_SEGMENT_COMPONENT
Records
health.hl7v23: ACC
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default ACC_SEGMENT_NAME) - Segment Name
- acc1 TS(default {}) - Accident Date/Time
- acc2 CE(default {}) - Accident Code
- acc3 ST(default "") - Accident Location
- acc4 CE(default {}) - Auto Accident State
- acc5 ID(default "") - Accident Job Related Indicator
- acc6 ID(default "") - Accident Death Indicator
health.hl7v23: ACK
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ACK_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
health.hl7v23: AD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ad1 ST(default "") - street address
- ad2 ST(default "") - other designation
- ad3 ST(default "") - city
- ad4 ST(default "") - state or province
- ad5 ST(default "") - zip or postal code
- ad6 ID(default "") - country
- ad7 ID(default "") - address type
- ad8 ST(default "") - other geographic designation
health.hl7v23: ADD
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default ADD_SEGMENT_NAME) - Segment Name
- add1 ST(default "") - Addendum Continuation Pointer
health.hl7v23: ADT_A01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- nk1 NK1[](default []) - NK1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- al1 AL1[](default []) - AL1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- procedure ADT_A01_PROCEDURE[](default [{pr1:{}}]) - ADT_A01_PROCEDURE Segment Group
- gt1 GT1[](default []) - GT1 Segment
- insurance ADT_A01_INSURANCE[](default [{in1:{}}]) - ADT_A01_INSURANCE Segment Group
- acc ACC? - ACC Segment
- ub1 UB1? - UB1 Segment
- ub2 UB2? - UB2 Segment
health.hl7v23: ADT_A01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v23: ADT_A01_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A01_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: ADT_A02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
health.hl7v23: ADT_A03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- procedure ADT_A03_PROCEDURE[](default [{pr1:{}}]) - ADT_A03_PROCEDURE Segment Group
- obx OBX[](default []) - OBX Segment
health.hl7v23: ADT_A03_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A03_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: ADT_A06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- mrg MRG? - MRG Segment
- nk1 NK1[](default []) - NK1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- drg DRG? - DRG Segment
- obx OBX[](default []) - OBX Segment
- al1 AL1[](default []) - AL1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg1 DRG? - DRG Segment
- procedure ADT_A06_PROCEDURE[](default [{pr1:{}}]) - ADT_A06_PROCEDURE Segment Group
- gt1 GT1[](default []) - GT1 Segment
- insurance ADT_A06_INSURANCE[](default [{in1:{}}]) - ADT_A06_INSURANCE Segment Group
- acc ACC? - ACC Segment
- ub1 UB1? - UB1 Segment
- ub2 UB2? - UB2 Segment
health.hl7v23: ADT_A06_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A06_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v23: ADT_A06_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A06_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: ADT_A09
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A09_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- dg1 DG1[](default []) - DG1 Segment
health.hl7v23: ADT_A12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- dg1 DG1? - DG1 Segment
health.hl7v23: ADT_A16
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A16_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- dg1 DG1? - DG1 Segment
- drg DRG? - DRG Segment
health.hl7v23: ADT_A17
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A17_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
health.hl7v23: ADT_A18
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A18_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- mrg MRG? - MRG Segment
- pv1 PV1 - PV1 Segment
health.hl7v23: ADT_A20
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A20_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- npu NPU - NPU Segment
health.hl7v23: ADT_A24
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A24_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1? - PV1 Segment
- db1 DB1[](default []) - DB1 Segment
health.hl7v23: ADT_A30
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A30_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- mrg MRG - MRG Segment
health.hl7v23: ADT_A38
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A38_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
health.hl7v23: ADT_A39
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A39_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- patient ADT_A39_PATIENT[](default [{pid:{}, mrg:{}}]) - ADT_A39_PATIENT Segment Group
health.hl7v23: ADT_A39_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A39_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mrg MRG -
- pid PID -
- pv1 PV1? -
- pd1 PD1? -
health.hl7v23: ADT_A43
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A43_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- patient ADT_A43_PATIENT[](default [{pid:{}, mrg:{}}]) - ADT_A43_PATIENT Segment Group
health.hl7v23: ADT_A43_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A43_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mrg MRG -
- pid PID -
- pd1 PD1? -
health.hl7v23: ADT_A45
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A45_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- merge_info ADT_A45_MERGE_INFO[](default [{mrg:{}, pv1:{}}]) - ADT_A45_MERGE_INFO Segment Group
health.hl7v23: ADT_A45_MERGE_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A45_MERGE_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mrg MRG -
- pv1 PV1 -
health.hl7v23: ADT_A50
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A50_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- mrg MRG - MRG Segment
- pv1 PV1 - PV1 Segment
health.hl7v23: AIG
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AIG_SEGMENT_NAME) - Segment Name
- aig1 SI(default "") - Set ID - AIG
- aig2 ID(default "") - Segment Action Code
- aig3 CE(default {}) - Resource ID
- aig4 CE(default {}) - Resource Type
- aig5 CE[](default [{}]) - Resource Group
- aig6 NM(default "") - Resource Quantity
- aig7 CE(default {}) - Resource Quantity Units
- aig8 TS(default {}) - Start Date/Time
- aig9 NM(default "") - Start Date/Time Offset
- aig10 CE(default {}) - Start Date/Time Offset Units
- aig11 NM(default "") - Duration
- aig12 CE(default {}) - Duration Units
- aig13 IS(default "") - Allow Substitution Code
- aig14 CE(default {}) - Filler Status Code
health.hl7v23: AIL
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AIL_SEGMENT_NAME) - Segment Name
- ail1 SI(default "") - Set ID - AIL
- ail2 ID(default "") - Segment Action Code
- ail3 PL(default {}) - Location Resource ID
- ail4 CE(default {}) - Location Type
- ail5 CE(default {}) - Location Group
- ail6 TS(default {}) - Start Date/Time
- ail7 NM(default "") - Start Date/Time Offset
- ail8 CE(default {}) - Start Date/Time Offset Units
- ail9 NM(default "") - Duration
- ail10 CE(default {}) - Duration Units
- ail11 IS(default "") - Allow Substitution Code
- ail12 CE(default {}) - Filler Status Code
health.hl7v23: AIP
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AIP_SEGMENT_NAME) - Segment Name
- aip1 SI(default "") - Set ID - AIP
- aip2 ID(default "") - Segment Action Code
- aip3 XCN(default {}) - Personnel Resource ID
- aip4 CE(default {}) - Resource Role
- aip5 CE(default {}) - Resource Group
- aip6 TS(default {}) - Start Date/Time
- aip7 NM(default "") - Start Date/Time Offset
- aip8 CE(default {}) - Start Date/Time Offset Units
- aip9 NM(default "") - Duration
- aip10 CE(default {}) - Duration Units
- aip11 IS(default "") - Allow Substitution Code
- aip12 CE(default {}) - Filler Status Code
health.hl7v23: AIS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AIS_SEGMENT_NAME) - Segment Name
- ais1 SI(default "") - Set ID - AIS
- ais2 ID(default "") - Segment Action Code
- ais3 CE(default {}) - Universal Service Identifier
- ais4 TS(default {}) - Start Date/Time
- ais5 NM(default "") - Start Date/Time Offset
- ais6 CE(default {}) - Start Date/Time Offset Units
- ais7 NM(default "") - Duration
- ais8 CE(default {}) - Duration Units
- ais9 IS(default "") - Allow Substitution Code
- ais10 CE(default {}) - Filler Status Code
health.hl7v23: AL1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AL1_SEGMENT_NAME) - Segment Name
- al11 SI(default "") - Set ID - AL1
- al12 IS(default "") - Allergy Type
- al13 CE(default {}) - Allergy Code/Mnemonic/ Description
- al14 IS(default "") - Allergy Severity
- al15 ST(default "") - Allergy Reaction
- al16 DT(default "") - Identification Date
health.hl7v23: APR
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default APR_SEGMENT_NAME) - Segment Name
- apr1 SCV[](default [{}]) - Time Selection Criteria
- apr2 SCV[](default [{}]) - Resource Selection Criteria
- apr3 SCV[](default [{}]) - Location Selection Criteria
- apr4 NM(default "") - Slot Spacing Criteria
- apr5 SCV[](default [{}]) - Filler Override Criteria
health.hl7v23: ARD_A19
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ARD_A19_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- query_response ARD_A19_QUERY_RESPONSE[](default [{pid:{}, pv1:{}}]) - ARD_A19_QUERY_RESPONSE Segment Group
- dsc DSC? - DSC Segment
health.hl7v23: ARD_A19_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ARD_A19_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v23: ARD_A19_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ARD_A19_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: ARD_A19_QUERY_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ARD_A19_QUERY_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- acc ACC? -
- obx OBX[](default [{}]) -
- ub2 UB2? -
- gt1 GT1[](default [{}]) -
- ub1 UB1? -
- al1 AL1[](default [{}]) -
- ard_a19_procedure ARD_A19_PROCEDURE[](default [{pr1:{}}]) -
- pid PID -
- pv1 PV1 -
- pv2 PV2? -
- dg1 DG1[](default [{}]) -
- ard_a19_insurance ARD_A19_INSURANCE[](default [{in1:{}}]) -
- db1 DB1[](default [{}]) -
- nk1 NK1[](default [{}]) -
- drg DRG? -
- evn EVN? -
- pd1 PD1? -
health.hl7v23: ARQ
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default ARQ_SEGMENT_NAME) - Segment Name
- arq1 EI(default {}) - Placer Appointment ID
- arq2 EI(default {}) - Filler Appointment ID
- arq3 NM(default "") - Occurrence Number
- arq4 EI(default {}) - Placer Group Number
- arq5 CE(default {}) - Schedule ID
- arq6 CE(default {}) - Request Event Reason
- arq7 CE(default {}) - Appointment Reason
- arq8 CE(default {}) - Appointment Type
- arq9 NM(default "") - Appointment Duration
- arq10 CE(default {}) - Appointment Duration Units
- arq11 DR[](default [{}]) - Requested Start Date/Time Range
- arq12 ST(default "") - Priority
- arq13 RI(default {}) - Repeating Interval
- arq14 ST(default "") - Repeating Interval Duration
- arq15 XCN(default {}) - Placer Contact Person
- arq16 XTN[](default [{}]) - Placer Contact Phone Number
- arq17 XAD(default {}) - Placer Contact Address
- arq18 PL(default {}) - Placer Contact Location
- arq19 XCN(default {}) - Entered By Person
- arq20 XTN[](default [{}]) - Entered By Phone Number
- arq21 PL(default {}) - Entered By Location
- arq22 EI(default {}) - Parent Placer Appointment ID
- arq23 EI(default {}) - Parent Filler Appointment ID
health.hl7v23: AUT
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default AUT_SEGMENT_NAME) - Segment Name
- aut1 CE(default {}) - Authorizing Payor, Plan Code
- aut2 CE(default {}) - Authorizing Payor, Company ID
- aut3 ST(default "") - Authorizing Payor, Company Name
- aut4 TS(default {}) - Authorization Effective Date
- aut5 TS(default {}) - Authorization Expiration Date
- aut6 EI(default {}) - Authorization Identifier
- aut7 CP(default {}) - Reimbursement Limit
- aut8 NM(default "") - Requested Number of Treatments
- aut9 NM(default "") - Authorized Number of Treatments
- aut10 TS(default {}) - Process Date
health.hl7v23: BAR_P01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- visit BAR_P01_VISIT[](default [{}]) - BAR_P01_VISIT Segment Group
health.hl7v23: BAR_P01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v23: BAR_P01_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P01_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: BAR_P01_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P01_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- acc ACC? -
- obx OBX[](default [{}]) -
- ub2 UB2? -
- gt1 GT1[](default [{}]) -
- ub1 UB1? -
- al1 AL1[](default [{}]) -
- bar_p01_insurance BAR_P01_INSURANCE[](default [{in1:{}}]) -
- pv1 PV1? -
- pv2 PV2? -
- dg1 DG1[](default [{}]) -
- db1 DB1[](default [{}]) -
- nk1 NK1[](default [{}]) -
- drg DRG? -
- bar_p01_procedure BAR_P01_PROCEDURE[](default [{pr1:{}}]) -
health.hl7v23: BAR_P02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- patient BAR_P02_PATIENT[](default [{pid:{}}]) - BAR_P02_PATIENT Segment Group
health.hl7v23: BAR_P02_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P02_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- db1 DB1[](default [{}]) -
- pid PID -
- pv1 PV1? -
- pd1 PD1? -
health.hl7v23: BAR_P06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- patient BAR_P06_PATIENT[](default [{pid:{}}]) - BAR_P06_PATIENT Segment Group
health.hl7v23: BAR_P06_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P06_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- pv1 PV1? -
health.hl7v23: BHS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default BHS_SEGMENT_NAME) - Segment Name
- bhs1 ST(default "") - Batch Field Separator
- bhs2 ST(default "") - Batch Encoding Characters
- bhs3 ST(default "") - Batch Sending Application
- bhs4 ST(default "") - Batch Sending Facility
- bhs5 ST(default "") - Batch Receiving Application
- bhs6 ST(default "") - Batch Receiving Facility
- bhs7 TS(default {}) - Batch Creation Date/Time
- bhs8 ST(default "") - Batch Security
- bhs9 ST(default "") - Batch Name/ID/Type
- bhs10 ST(default "") - Batch Comment
- bhs11 ST(default "") - Batch Control ID
- bhs12 ST(default "") - Reference Batch Control ID
health.hl7v23: BLG
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default BLG_SEGMENT_NAME) - Segment Name
- blg1 CM_CCD(default {}) - When to Charge
- blg2 ID(default "") - Charge Type
- blg3 CK(default {}) - Account ID
health.hl7v23: BTS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default BTS_SEGMENT_NAME) - Segment Name
- bts1 ST(default "") - Batch Message Count
- bts2 ST(default "") - Batch Comment
- bts3 NM[](default [""]) - Batch Totals
health.hl7v23: CD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cd1 CM_WVI(default {}) - channel identifier
- cd2 CM_CD_ELECTRODE(default "") - electrode names
- cd3 CM_CSU(default "") - channel sensitivity/units
- cd4 CM_CCP(default "") - calibration parameters
- cd5 NM(default "") - sampling frequency
- cd6 CM_MDV(default "") - minimum/maximum data values
health.hl7v23: CDM
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CDM_SEGMENT_NAME) - Segment Name
- cdm1 CE(default {}) - Primary Key Value
- cdm2 CE[](default [{}]) - Charge Code Alias
- cdm3 ST(default "") - Charge Description Short
- cdm4 ST(default "") - Charge Description Long
- cdm5 IS(default "") - Description Override Indicator
- cdm6 CE[](default [{}]) - Exploding Charges
- cdm7 CE[](default [{}]) - Procedure Code
- cdm8 ID(default "") - Active/Inactive Flag
- cdm9 CE[](default [{}]) - Inventory Number
- cdm10 NM(default "") - Resource Load
- cdm11 CK[](default [{}]) - Contract Number
- cdm12 XON(default {}) - Contract Organization
- cdm13 ID(default "") - Room Fee Indicator
health.hl7v23: CE
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ce1 ST(default "") - identifier
- ce2 ST(default "") - text
- ce3 ST(default "") - name of coding system
- ce4 ST(default "") - alternate identifier
- ce5 ST(default "") - alternate text
- ce6 ST(default "") - name of alternate coding system
health.hl7v23: CF
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cf1 ID(default "") - identifier
- cf2 FT(default "") - formatted text
- cf3 ST(default "") - name of coding system
- cf4 ID(default "") - alternate identifier
- cf5 FT(default "") - alternate formatted text
- cf6 ST(default "") - name of alternate coding system
health.hl7v23: CK
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ck1 NM(default "") - ID number (NM)
- ck2 ST(default "") - check digit
- ck3 ID(default "") - code identifying the check digit scheme employed
- ck4 HD(default {}) - assigning authority
health.hl7v23: CM0
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CM0_SEGMENT_NAME) - Segment Name
- cm01 SI(default "") - CM0 - Set ID
- cm02 EI(default {}) - Sponsor Study ID
- cm03 CE[](default [{}]) - Alternate Study ID
- cm04 ST(default "") - Title of Study
- cm05 XCN(default {}) - Chairman of Study
- cm06 DT(default "") - Last IRB Approval Date
- cm07 NM(default "") - Total Accrual to Date
- cm08 DT(default "") - Last Accrual Date
- cm09 XCN(default {}) - Contact for Study
- cm010 XTN(default {}) - Contact's Tel. Number
- cm011 XAD(default {}) - Contact's Address
health.hl7v23: CM1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CM1_SEGMENT_NAME) - Segment Name
- cm11 SI(default "") - CM1 - Set ID
- cm12 CE(default {}) - Study Phase Identifier
- cm13 ST(default "") - Description of Study Phase
health.hl7v23: CM2
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CM2_SEGMENT_NAME) - Segment Name
- cm21 SI(default "") - CM2 - Set ID
- cm22 CE(default {}) - Scheduled Time Point
- cm23 ST(default "") - Description of Time Point
- cm24 CE[](default [{}]) - Events Scheduled This Time Point
health.hl7v23: CM_ABS_RANGE
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_abs_range1 CM_RANGE(default {}) - Range
- cm_abs_range2 NM(default "") - Numeric Change
- cm_abs_range3 NM(default "") - Percent per Change
- cm_abs_range4 NM(default "") - Days
health.hl7v23: CM_AUI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_aui1 ST(default "") - authorization number
- cm_aui2 TS(default {}) - date
- cm_aui3 ST(default "") - source
health.hl7v23: CM_CCD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_ccd1 ID(default "") - when to charge code
- cm_ccd2 TS(default {}) - date/time
health.hl7v23: CM_DDI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_ddi1 NM(default "") - delay days
- cm_ddi2 NM(default "") - amount
- cm_ddi3 NM(default "") - number of days
health.hl7v23: CM_DIN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_din1 TS(default {}) - date
- cm_din2 CE(default {}) - institution name
health.hl7v23: CM_DLD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_dld1 ID(default "") - discharge location
- cm_dld2 TS(default {}) - effective date
health.hl7v23: CM_DLT
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_dlt1 CM_RANGE(default {}) - Range
- cm_dlt2 NM(default "") - numeric threshold
- cm_dlt3 ST(default "") - change
- cm_dlt4 NM(default "") - length of time-days
health.hl7v23: CM_DTN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_dtn1 IS(default "") - day type
- cm_dtn2 NM(default "") - number of days
health.hl7v23: CM_EIP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_eip1 EI(default {}) - parent´s placer order number
- cm_eip2 EI(default {}) - parent´s filler order number
health.hl7v23: CM_ELD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_eld1 ST(default "") - segment ID
- cm_eld2 NM(default "") - sequence
- cm_eld3 NM(default "") - field position
- cm_eld4 CE(default {}) - code identifying error
health.hl7v23: CM_LA1
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_la11 ST(default "") - point of care (ST)
- cm_la12 IS(default "") - room
- cm_la13 IS(default "") - bed
- cm_la14 HD(default {}) - facility (HD)
- cm_la15 IS(default "") - location status
- cm_la16 IS(default "") - person location type
- cm_la17 IS(default "") - building
- cm_la18 ST(default "") - floor
- cm_la19 ST(default "") - street address
- cm_la110 ST(default "") - other designation
- cm_la111 ST(default "") - city
- cm_la112 ST(default "") - state or province
- cm_la113 ST(default "") - zip or postal code
- cm_la114 ID(default "") - country
- cm_la115 ID(default "") - address type
- cm_la116 ST(default "") - other geographic designation
health.hl7v23: CM_MOC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_moc1 MO(default {}) - dollar amount
- cm_moc2 CE(default {}) - charge code
health.hl7v23: CM_MSG
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_msg1 ID(default "") - message type
- cm_msg2 ID(default "") - trigger event
health.hl7v23: CM_NDL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_ndl1 CN(default {}) - name
- cm_ndl2 TS(default {}) - start date/time
- cm_ndl3 TS(default {}) - end date/time
- cm_ndl4 IS(default "") - point of care (IS)
- cm_ndl5 IS(default "") - room
- cm_ndl6 IS(default "") - bed
- cm_ndl7 HD(default {}) - facility (HD)
- cm_ndl8 IS(default "") - location status
- cm_ndl9 IS(default "") - person location type
- cm_ndl10 IS(default "") - building
- cm_ndl11 ST(default "") - floor
health.hl7v23: CM_OCD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_ocd1 CE(default {}) - occurrence code
- cm_ocd2 DT(default "") - occurrence date
health.hl7v23: CM_OSP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_osp1 CE(default {}) - occurrence span code
- cm_osp2 DT(default "") - occurrence span start date
- cm_osp3 DT(default "") - occurrence span stop date
health.hl7v23: CM_PCF
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pcf1 IS(default "") - pre-certification patient type
- cm_pcf2 ID(default "") - pre-certification required
- cm_pcf3 TS(default {}) - pre-certification windwow
health.hl7v23: CM_PEN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pen1 IS(default "") - penalty type
- cm_pen2 NM(default "") - penalty amount
health.hl7v23: CM_PI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pi1 ST(default "") - ID number (ST)
- cm_pi2 IS(default "") - type of ID number (IS)
- cm_pi3 ST(default "") - other qualifying info
health.hl7v23: CM_PIP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pip1 CE(default {}) - privilege
- cm_pip2 CE(default {}) - privilege class
- cm_pip3 DT(default "") - expiration date
- cm_pip4 DT(default "") - activation date
health.hl7v23: CM_PLN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pln1 ST(default "") - ID number
- cm_pln2 IS(default "") - type of ID number (IS)
- cm_pln3 ST(default "") - state/other qualifying info
- cm_pln4 DT(default "") - expiration date
health.hl7v23: CM_PRL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_prl1 CE(default {}) - OBX-3 observation identifier of parent result
- cm_prl2 ST(default "") - OBX-4 sub-ID of parent result
- cm_prl3 TX(default "") - part of OBX-5 observation result from parent
health.hl7v23: CM_PTA
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_pta1 IS(default "") - policy type
- cm_pta2 IS(default "") - amount class
- cm_pta3 NM(default "") - amount
health.hl7v23: CM_RANGE
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_range1 CE(default {}) - Low Value
- cm_range2 CE(default {}) - High Value
health.hl7v23: CM_RFR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_rfr1 CM_RANGE(default {}) - reference range
- cm_rfr2 IS(default "") - sex
- cm_rfr3 CM_RANGE(default {}) - age range
- cm_rfr4 CM_RANGE(default {}) - age gestation
- cm_rfr5 TX(default "") - species
- cm_rfr6 ST(default "") - race/subspecies
- cm_rfr7 TX(default "") - conditions
health.hl7v23: CM_RI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_ri1 IS(default "") - repeat pattern
- cm_ri2 ST(default "") - explicit time interval
health.hl7v23: CM_RMC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_rmc1 IS(default "") - room type
- cm_rmc2 IS(default "") - amount type
- cm_rmc3 NM(default "") - coverage amount
health.hl7v23: CM_SPD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_spd1 ST(default "") - specialty name
- cm_spd2 ST(default "") - governing board
- cm_spd3 ID(default "") - eligible or certified
- cm_spd4 DT(default "") - date of certification
health.hl7v23: CM_SPS
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_sps1 CE(default {}) - specimen source name or code
- cm_sps2 TX(default "") - additives
- cm_sps3 TX(default "") - freetext
- cm_sps4 CE(default {}) - body site
- cm_sps5 CE(default {}) - site modifier
- cm_sps6 CE(default {}) - collection modifier method code
health.hl7v23: CM_UVC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_uvc1 IS(default "") - value code
- cm_uvc2 NM(default "") - value amount
health.hl7v23: CM_VR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_vr1 ST(default "") - first data code value
- cm_vr2 ST(default "") - Last data code calue
health.hl7v23: CM_WVI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cm_wvi1 NM(default "") - Channel Number
- cm_wvi2 ST(default "") - Channel Name
health.hl7v23: CN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cn1 ST(default "") - ID number (ST)
- cn2 ST(default "") - family name
- cn3 ST(default "") - given name
- cn4 ST(default "") - middle initial or name
- cn5 ST(default "") - suffix (e.g., JR or III)
- cn6 ST(default "") - prefix (e.g., DR)
- cn7 ST(default "") - degree (e.g., MD)
- cn8 ID(default "") - source table
- cn9 HD(default {}) - assigning authority
health.hl7v23: CP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cp1 MO(default {}) - price
- cp2 ID(default "") - price type
- cp3 NM(default "") - from value
- cp4 NM(default "") - to value
- cp5 CE(default {}) - range units
- cp6 ID(default "") - range type
health.hl7v23: CQ
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cq1 NM(default "") - quantity
- cq2 CE(default {}) - units
health.hl7v23: CRM_C01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CRM_C01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- patient CRM_C01_PATIENT[](default [{pid:{}, csr:{}}]) - CRM_C01_PATIENT Segment Group
health.hl7v23: CRM_C01_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CRM_C01_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- csp CSP[](default [{}]) -
- csr CSR -
- pid PID -
- pv1 PV1? -
health.hl7v23: CSP
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CSP_SEGMENT_NAME) - Segment Name
- csp1 CE(default {}) - Study Phase Identifier
- csp2 TS(default {}) - Date/time Study Phase Began
- csp3 TS(default {}) - Date/time Study Phase Ended
- csp4 CE(default {}) - Study Phase Evaluability
health.hl7v23: CSR
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CSR_SEGMENT_NAME) - Segment Name
- csr1 EI(default {}) - Sponsor Study ID
- csr2 EI(default {}) - Alternate Study ID
- csr3 CE(default {}) - Institution Registering the Patient
- csr4 CX(default {}) - Sponsor Patient ID
- csr5 CX(default {}) - Alternate Patient ID
- csr6 TS(default {}) - Date/Time of Patient Study Registration
- csr7 XCN(default {}) - Person Performing Study Registration
- csr8 XCN(default {}) - Study Authorizing Provider
- csr9 TS(default {}) - Date/time Patient Study Consent Signed
- csr10 CE(default {}) - Patient Study Eligibility Status
- csr11 TS[](default [{}]) - Study Randomization Date/time
- csr12 CE[](default [{}]) - Study Randomized Arm
- csr13 CE[](default [{}]) - Stratum for Study Randomization
- csr14 CE(default {}) - Patient Evaluability Status
- csr15 TS(default {}) - Date/time Ended Study
- csr16 CE(default {}) - Reason Ended Study
health.hl7v23: CSS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CSS_SEGMENT_NAME) - Segment Name
- css1 CE(default {}) - Study Scheduled Time Point
- css2 TS(default {}) - Study Scheduled Patient Time Point
- css3 CE[](default [{}]) - Study Quality Control Codes
health.hl7v23: CSU_C09
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CSU_C09_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- patient CSU_C09_PATIENT[](default [{pid:{}, csr:{}}]) - CSU_C09_PATIENT Segment Group
health.hl7v23: CSU_C09_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- csr CSR -
- csu_c09_study_phase CSU_C09_STUDY_PHASE[](default [{}]) -
- pid PID -
- csu_c09_visit CSU_C09_VISIT? -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v23: CSU_C09_RX_ADMIN
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_RX_ADMIN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxa RXA -
- rxr RXR -
health.hl7v23: CSU_C09_STUDY_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- obx OBX[](default [{}]) -
- obr OBR -
health.hl7v23: CSU_C09_STUDY_PHARM
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_PHARM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- csu_c09_rx_admin CSU_C09_RX_ADMIN[](default [{rxa:{}, rxr:{}}]) -
health.hl7v23: CSU_C09_STUDY_PHASE
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_PHASE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- csu_c09_study_schedule CSU_C09_STUDY_SCHEDULE[](default [{}]) -
- csp CSP? -
health.hl7v23: CSU_C09_STUDY_SCHEDULE
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_SCHEDULE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- css CSS? -
- csu_c09_study_observation CSU_C09_STUDY_OBSERVATION[](default [{obr:{}}]) -
- csu_c09_study_pharm CSU_C09_STUDY_PHARM[](default [{}]) -
health.hl7v23: CSU_C09_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v23: CTD
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CTD_SEGMENT_NAME) - Segment Name
- ctd1 CE[](default [{}]) - Contact Role
- ctd2 XPN[](default [{}]) - Contact Name
- ctd3 XAD[](default [{}]) - Contact Address
- ctd4 PL(default {}) - Contact Location
- ctd5 XTN[](default [{}]) - Contact Communication Information
- ctd6 CE(default {}) - Preferred Method of Contact
- ctd7 CM_PI[](default [{}]) - Contact Identifiers
health.hl7v23: CTI
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default CTI_SEGMENT_NAME) - Segment Name
- cti1 EI(default {}) - Sponsor Study ID
- cti2 CE(default {}) - Study Phase Identifier
- cti3 CE(default {}) - Study Scheduled Time Point
health.hl7v23: CX
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cx1 ST(default "") - ID
- cx2 ST(default "") - check digit
- cx3 ID(default "") - code identifying the check digit scheme employed
- cx4 HD(default {}) - assigning authority
- cx5 IS(default "") - identifier type code
- cx6 HD(default {}) - assigning facility
health.hl7v23: DB1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default DB1_SEGMENT_NAME) - Segment Name
- db11 SI(default "") - Set ID - DB1
- db12 IS(default "") - Disabled person code
- db13 CX[](default [{}]) - Disabled person identifier
- db14 ID(default "") - Disabled Indicator
- db15 DT(default "") - Disability start date
- db16 DT(default "") - Disability end date
- db17 DT(default "") - Disability return to work date
- db18 DT(default "") - Disability unable to work date
health.hl7v23: DFT_P03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default DFT_P03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1? - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- financial DFT_P03_FINANCIAL[](default [{ft1:{}}]) - DFT_P03_FINANCIAL Segment Group
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- gt1 GT1[](default []) - GT1 Segment
- insurance DFT_P03_INSURANCE[](default [{in1:{}}]) - DFT_P03_INSURANCE Segment Group
- acc ACC? - ACC Segment
health.hl7v23: DFT_P03_FINANCIAL
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ft1 FT1 -
- dft_p03_financial_procedure DFT_P03_FINANCIAL_PROCEDURE[](default [{pr1:{}}]) -
health.hl7v23: DFT_P03_FINANCIAL_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v23: DFT_P03_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v23: DG1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default DG1_SEGMENT_NAME) - Segment Name
- dg11 SI(default "") - Set ID - Diagnosis
- dg12 ID(default "") - Diagnosis Coding Method
- dg13 CE(default {}) - Diagnosis Code
- dg14 ST(default "") - Diagnosis Description
- dg15 TS(default {}) - Diagnosis Date/Time
- dg16 IS(default "") - Diagnosis Type
- dg17 CE(default {}) - Major Diagnostic Category
- dg18 CE(default {}) - Diagnostic Related Group
- dg19 ID(default "") - DRG Approval Indicator
- dg110 IS(default "") - DRG Grouper Review Code
- dg111 CE(default {}) - Outlier Type
- dg112 NM(default "") - Outlier Days
- dg113 CP(default {}) - Outlier Cost
- dg114 ST(default "") - Grouper Version and Type
- dg115 NM(default "") - Diagnosis Priority
- dg116 XCN[](default [{}]) - Diagnosing Clinician
- dg117 IS(default "") - Diagnosis Classification
- dg118 ID(default "") - Confidential Indicator
- dg119 TS(default {}) - Attestation Date/Time
health.hl7v23: DLN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dln1 ST(default "") - Driver´s License Number
- dln2 IS(default "") - Issuing State, province, country
- dln3 DT(default "") - expiration date
health.hl7v23: DOC_T12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default DOC_T12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qrd QRD - QRD Segment
- result DOC_T12_RESULT[](default [{pid:{}, pv1:{}, txa:{}}]) - DOC_T12_RESULT Segment Group
- dsc DSC? - DSC Segment
health.hl7v23: DOC_T12_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default DOC_T12_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- pid PID -
- pv1 PV1 -
- evn EVN? -
- txa TXA -
health.hl7v23: DR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dr1 TS(default {}) - range start date/time
- dr2 TS(default {}) - range end date/time
health.hl7v23: DRG
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default DRG_SEGMENT_NAME) - Segment Name
- drg1 CE(default {}) - Diagnostic Related Group
- drg2 TS(default {}) - DRG Assigned Date/Time
- drg3 ID(default "") - DRG Approval Indicator
- drg4 IS(default "") - DRG Grouper Review Code
- drg5 CE(default {}) - Outlier Type
- drg6 NM(default "") - Outlier Days
- drg7 CP(default {}) - Outlier Cost
- drg8 IS(default "") - DRG Payor
- drg9 CP(default {}) - Outlier Reimbursement
- drg10 ID(default "") - Confidential Indicator
health.hl7v23: DSC
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default DSC_SEGMENT_NAME) - Segment Name
- dsc1 ST(default "") - Continuation Pointer
health.hl7v23: DSP
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default DSP_SEGMENT_NAME) - Segment Name
- dsp1 SI(default "") - Set ID - Display Data
- dsp2 SI(default "") - Display Level
- dsp3 TX(default "") - Data Line
- dsp4 ST(default "") - Logical Break Point
- dsp5 TX(default "") - Result ID
health.hl7v23: DSR_Q01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default DSR_Q01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
health.hl7v23: DSR_Q03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default DSR_Q03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA? - MSA Segment
- err ERR? - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
health.hl7v23: ED
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ed1 HD(default {}) - source application
- ed2 ID(default "") - type of data
- ed3 ID(default "") - data
- ed4 ID(default "") - encoding
- ed5 ST(default "") - data
health.hl7v23: EDR_Q01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EDR_Q01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
health.hl7v23: EI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ei1 ST(default "") - entity identifier
- ei2 IS(default "") - namespace ID
- ei3 ST(default "") - universal ID
- ei4 ID(default "") - universal ID type
health.hl7v23: EQL
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default EQL_SEGMENT_NAME) - Segment Name
- eql1 ST(default "") - Query tag
- eql2 ID(default "") - Query/ Response Format Code
- eql3 CE(default {}) - EQL Query Name
- eql4 ST(default "") - EQL Query Statement
health.hl7v23: EQQ_Q01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EQQ_Q01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- eql EQL - EQL Segment
- dsc DSC? - DSC Segment
health.hl7v23: ERP_Q01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ERP_Q01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- erq ERQ - ERQ Segment
- dsc DSC? - DSC Segment
health.hl7v23: ERQ
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default ERQ_SEGMENT_NAME) - Segment Name
- erq1 ST(default "") - Query tag
- erq2 CE(default {}) - Event identifier
- erq3 QIP[](default [{}]) - Input parameter list
health.hl7v23: ERR
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default ERR_SEGMENT_NAME) - Segment Name
- err1 CM_ELD[](default [{}]) - Error Code and Location
health.hl7v23: escapeType
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
health.hl7v23: EVN
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default EVN_SEGMENT_NAME) - Segment Name
- evn1 ID(default "") - Event Type Code
- evn2 TS(default {}) - Recorded Date/Time
- evn3 TS(default {}) - Date/Time Planned Event
- evn4 IS(default "") - Event Reason Code
- evn5 XCN(default {}) - Operator ID
- evn6 TS(default {}) - Event occured
health.hl7v23: FAC
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default FAC_SEGMENT_NAME) - Segment Name
- fac1 EI(default {}) - Facility ID
- fac2 ID(default "") - Facility Type
- fac3 XAD(default {}) - Facility Address
- fac4 XTN(default {}) - Facility Telecommunication
- fac5 XCN[](default [{}]) - Contact Person
- fac6 ST[](default [""]) - Contact Title
- fac7 XAD[](default [{}]) - Contact Address
- fac8 XTN[](default [{}]) - Contact Telecommunication
- fac9 XCN(default {}) - Signature Authority
- fac10 ST(default "") - Signature Authority Title
- fac11 XAD(default {}) - Signature Authority Address
- fac12 XTN(default {}) - Signature Authority Telecommunication
health.hl7v23: FC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- fc1 IS(default "") - Financial Class
- fc2 TS(default {}) - Effective Date
health.hl7v23: FHS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default FHS_SEGMENT_NAME) - Segment Name
- fhs1 ST(default "") - File Field Separator
- fhs2 ST(default "") - File Encoding Characters
- fhs3 ST(default "") - File Sending Application
- fhs4 ST(default "") - File Sending Facility
- fhs5 ST(default "") - File Receiving Application
- fhs6 ST(default "") - File Receiving Facility
- fhs7 TS(default {}) - File Creation Date/Time
- fhs8 ST(default "") - File Security
- fhs9 ST(default "") - File Name/ID
- fhs10 ST(default "") - File Header Comment
- fhs11 ST(default "") - File Control ID
- fhs12 ST(default "") - Reference File Control ID
health.hl7v23: FT1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default FT1_SEGMENT_NAME) - Segment Name
- ft11 SI(default "") - Set ID - Financial Transaction
- ft12 ST(default "") - Transaction ID
- ft13 ST(default "") - Transaction Batch ID
- ft14 TS(default {}) - Transaction Date
- ft15 TS(default {}) - Transaction Posting Date
- ft16 IS(default "") - Transaction Type
- ft17 CE(default {}) - Transaction Code
- ft18 ST(default "") - Transaction Description
- ft19 ST(default "") - Transaction Description - alternate
- ft110 NM(default "") - Transaction Quantity
- ft111 CP(default {}) - Transaction Amount - Extended
- ft112 CP(default {}) - Transaction Amount - Unit
- ft113 CE(default {}) - Department Code
- ft114 CE(default {}) - Insurance Plan ID
- ft115 CP(default {}) - Insurance Amount
- ft116 PL(default {}) - Assigned Patient Location
- ft117 IS(default "") - Fee Schedule
- ft118 IS(default "") - Patient Type
- ft119 CE[](default [{}]) - Diagnosis Code
- ft120 XCN(default {}) - Performed By Code
- ft121 XCN(default {}) - Ordered By Code
- ft122 CP(default {}) - Unit Cost
- ft123 EI(default {}) - Filler Order Number
- ft124 XCN(default {}) - Entered By Code
- ft125 CE(default {}) - Procedure Code
health.hl7v23: FTS
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default FTS_SEGMENT_NAME) - Segment Name
- fts1 NM(default "") - File Batch Count
- fts2 ST(default "") - File Trailer Comment
health.hl7v23: GenericMessage
Represents a generic HL7 message.
Fields
- Fields Included from *Message
- name string
- anydata...
- name string? - Message name
- segments Segment[] - Array of segments
health.hl7v23: GOL
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default GOL_SEGMENT_NAME) - Segment Name
- gol1 ID(default "") - Action Code
- gol2 TS(default {}) - Action Date/Time
- gol3 CE(default {}) - Goal ID
- gol4 EI(default {}) - Goal Instance ID
- gol5 EI(default {}) - Episode of Care ID
- gol6 NM(default "") - Goal List Priority
- gol7 TS(default {}) - Goal Established Date/Time
- gol8 TS(default {}) - Expected Goal Achievement Date/Time
- gol9 CE(default {}) - Goal Classification
- gol10 CE(default {}) - Goal Management Discipline
- gol11 CE(default {}) - Current Goal Review Status
- gol12 TS(default {}) - Current Goal Review Date/Time
- gol13 TS(default {}) - Next Goal Review Date/Time
- gol14 TS(default {}) - Previous Goal Review Date/Time
- gol15 TQ(default {}) - Goal Review Interval
- gol16 CE(default {}) - Goal Evaluation
- gol17 ST[](default [""]) - Goal Evaluation Comment
- gol18 CE(default {}) - Goal Life Cycle Status
- gol19 TS(default {}) - Goal Life Cycle Status Date/Time
- gol20 CE[](default [{}]) - Goal Target Type
- gol21 XPN[](default [{}]) - Goal Target Name
health.hl7v23: GT1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default GT1_SEGMENT_NAME) - Segment Name
- gt11 SI(default "") - Set ID - Guarantor
- gt12 CX[](default [{}]) - Guarantor Number
- gt13 XPN[](default [{}]) - Guarantor Name
- gt14 XPN[](default [{}]) - Guarantor Spouse Name
- gt15 XAD[](default [{}]) - Guarantor Address
- gt16 XTN[](default [{}]) - Guarantor Ph Num- Home
- gt17 XTN[](default [{}]) - Guarantor Ph Num-Business
- gt18 TS(default {}) - Guarantor Date/Time of Birth
- gt19 IS(default "") - Guarantor Sex
- gt110 IS(default "") - Guarantor Type
- gt111 IS(default "") - Guarantor Relationship
- gt112 ST(default "") - Guarantor SSN
- gt113 DT(default "") - Guarantor Date - Begin
- gt114 DT(default "") - Guarantor Date - End
- gt115 NM(default "") - Guarantor Priority
- gt116 XPN[](default [{}]) - Guarantor Employer Name
- gt117 XAD[](default [{}]) - Guarantor Employer Address
- gt118 XTN[](default [{}]) - Guarantor Employ Phone Number
- gt119 CX[](default [{}]) - Guarantor Employee ID Number
- gt120 IS(default "") - Guarantor Employment Status
- gt121 XON[](default [{}]) - Guarantor Organization
- gt122 ID(default "") - Guarantor Billing Hold Flag
- gt123 CE(default {}) - Guarantor Credit Rating Code
- gt124 TS(default {}) - Guarantor Death Date And Time
- gt125 ID(default "") - Guarantor Death Flag
- gt126 CE(default {}) - Guarantor Charge Adjustment Code
- gt127 CP(default {}) - Guarantor Household Annual Income
- gt128 NM(default "") - Guarantor Household Size
- gt129 CX[](default [{}]) - Guarantor Employer ID Number
- gt130 IS(default "") - Guarantor Marital Status Code
- gt131 DT(default "") - Guarantor Hire Effective Date
- gt132 DT(default "") - Employment Stop Date
- gt133 IS(default "") - Living Dependency
- gt134 IS(default "") - Ambulatory Status
- gt135 IS(default "") - Citizenship
- gt136 CE(default {}) - Primary Language
- gt137 IS(default "") - Living Arrangement
- gt138 CE(default {}) - Publicity Indicator
- gt139 ID(default "") - Protection Indicator
- gt140 IS(default "") - Student Indicator
- gt141 IS(default "") - Religion
- gt142 XPN(default {}) - Mother’s Maiden Name
- gt143 CE(default {}) - Nationality Code
- gt144 IS(default "") - Ethnic Group
- gt145 XPN[](default [{}]) - Contact Person's Name
- gt146 XTN[](default [{}]) - Contact Person’s Telephone Number
- gt147 CE(default {}) - Contact Reason
- gt148 IS(default "") - Contact Relationship Code
- gt149 ST(default "") - Job Title
- gt150 JCC(default {}) - Job Code/Class
- gt151 XON[](default [{}]) - Guarantor Employer's Organization Name
- gt152 IS(default "") - Handicap
- gt153 IS(default "") - Job Status
- gt154 FC(default {}) - Guarantor Financial Class
- gt155 IS(default "") - Guarantor Race
health.hl7v23: HD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- hd1 IS(default "") - namespace ID
- hd2 ST(default "") - universal ID
- hd3 ID(default "") - universal ID type
health.hl7v23: IN1
The ACC segment contains patient information relative to an accident in which the patient has been involved.
Fields
- Fields Included from *Segment
- name string
- anydata...
- name string(default IN1_SEGMENT_NAME) - Segment Name
- in11 SI(default "") - Set ID - Insurance
- in12 CE(default {}) - Insurance Plan ID
- in13 CX[](default [{}]) - Insurance Company ID
- in14 XON[](default [{}]) - Insurance Company Name
- in15 XAD[](default [{}]) - Insurance Company Address
- in16 XPN[](default [{}]) - Insurance Co. Contact Ppers
- in17 XTN[](default [{}]) - Insurance Co Phone Number
- in18 ST(default "") - Group Number
- in19 XON[](default [{}]) - Group Name
- in110 CX[](default [{}]) - Insured's group employer ID
- in111 XON[](default [{}]) - Insured's Group Emp Name
- in112 DT(default "") - Plan Effective Date
- in113 DT(default "") - Plan Expiration Date
- in114 CM_AUI(default {}) - Authorization Information
- in115 IS(default "") - Plan Type
- in116 XPN