health.hl7v27
Module health.hl7v27
Declarations
Definitions
ballerinax/health.hl7v27 Ballerina library
Module for HL7 v2.7 specification.
HL7 v2.7 Module
Module Overview
This Module holds the messages, segments and data types for the HL7 version 2.7.
Usage
To add the HL7 v2.7 dependency the project simply import the package as below,
import ballerinax/health.hl7v27
Sample: Simple HL7 Server implementation compatible for HL7 v2.7 which accept any message HL7 message available
in this package. This server binds to port 3000
Tip: Use Hapi TestPanel or any HL7 v2.7 compatible client to invoke this server.
import ballerina/io; import ballerina/tcp; import ballerina/uuid; import ballerinax/health.hl7v2; import ballerinax/health.hl7v27; 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). hl7v27:MSH? msh = (); if parsedMsg is hl7v2:Message && parsedMsg.hasKey("msh") { anydata mshEntry = parsedMsg["msh"]; hl7v27: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. hl7v27:ACK ack = { msh: { msh2: "^~\\&", msh3: {hd1: "TESTSERVER"}, msh4: {hd1: "WSO2OH"}, msh5: {hd1: msh.msh3.hd1}, msh6: {hd1: msh.msh4.hd1}, msh9: {"cm_msg1": hl7v27:ACK_MESSAGE_TYPE}, msh10: uuid:createType1AsString().substring(0, 8), msh11: {pt1: "P"}, msh12: {vid1: "2.7"} }, msa: { msa1: "AA", msa2: msh.msh10 } }; // Encode message to wire format. byte[]|hl7v2:HL7Error encodedMsg = hl7v2:encode(hl7v27: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
createHL7v27Encoder
function createHL7v27Encoder() returns Encoder
Function to create hl7v2:Encoder implementation for HL7 v${versionSeperated}. 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
createHL7v27Parser
function createHL7v27Parser() returns Parser
Function to create hl7v2:Parser implementation for HL7 v2.7. 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.hl7v27: ABS_SEGMENT_NAME
health.hl7v27: ACC_SEGMENT_NAME
health.hl7v27: ACK_MESSAGE_TYPE
health.hl7v27: ADD_SEGMENT_NAME
health.hl7v27: ADJ_SEGMENT_NAME
health.hl7v27: ADT_A01_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: ADT_A01_MESSAGE_TYPE
health.hl7v27: ADT_A01_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: ADT_A02_MESSAGE_TYPE
health.hl7v27: ADT_A03_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: ADT_A03_MESSAGE_TYPE
health.hl7v27: ADT_A03_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: ADT_A05_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: ADT_A05_MESSAGE_TYPE
health.hl7v27: ADT_A05_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: ADT_A06_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: ADT_A06_MESSAGE_TYPE
health.hl7v27: ADT_A06_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: ADT_A09_MESSAGE_TYPE
health.hl7v27: ADT_A12_MESSAGE_TYPE
health.hl7v27: ADT_A15_MESSAGE_TYPE
health.hl7v27: ADT_A16_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: ADT_A16_MESSAGE_TYPE
health.hl7v27: ADT_A16_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: ADT_A17_MESSAGE_TYPE
health.hl7v27: ADT_A20_MESSAGE_TYPE
health.hl7v27: ADT_A21_MESSAGE_TYPE
health.hl7v27: ADT_A24_MESSAGE_TYPE
health.hl7v27: ADT_A37_MESSAGE_TYPE
health.hl7v27: ADT_A38_MESSAGE_TYPE
health.hl7v27: ADT_A39_MESSAGE_TYPE
health.hl7v27: ADT_A39_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ADT_A43_MESSAGE_TYPE
health.hl7v27: ADT_A43_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ADT_A44_MESSAGE_TYPE
health.hl7v27: ADT_A44_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ADT_A45_MERGE_INFO_SEGMENT_COMPONENT
health.hl7v27: ADT_A45_MESSAGE_TYPE
health.hl7v27: ADT_A50_MESSAGE_TYPE
health.hl7v27: ADT_A52_MESSAGE_TYPE
health.hl7v27: ADT_A54_MESSAGE_TYPE
health.hl7v27: ADT_A60_ADVERSE_REACTION_GROUP_SEGMENT_COMPONENT
health.hl7v27: ADT_A60_MESSAGE_TYPE
health.hl7v27: ADT_A60_VISIT_SEGMENT_COMPONENT
health.hl7v27: ADT_A61_MESSAGE_TYPE
health.hl7v27: AFF_SEGMENT_NAME
health.hl7v27: AIG_SEGMENT_NAME
health.hl7v27: AIL_SEGMENT_NAME
health.hl7v27: AIP_SEGMENT_NAME
health.hl7v27: AIS_SEGMENT_NAME
health.hl7v27: AL1_SEGMENT_NAME
health.hl7v27: APR_SEGMENT_NAME
health.hl7v27: ARQ_SEGMENT_NAME
health.hl7v27: ARV_SEGMENT_NAME
health.hl7v27: AUT_SEGMENT_NAME
health.hl7v27: BAR_P01_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: BAR_P01_MESSAGE_TYPE
health.hl7v27: BAR_P01_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: BAR_P01_VISIT_SEGMENT_COMPONENT
health.hl7v27: BAR_P02_MESSAGE_TYPE
health.hl7v27: BAR_P02_PATIENT_SEGMENT_COMPONENT
health.hl7v27: BAR_P05_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: BAR_P05_MESSAGE_TYPE
health.hl7v27: BAR_P05_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: BAR_P05_VISIT_SEGMENT_COMPONENT
health.hl7v27: BAR_P06_MESSAGE_TYPE
health.hl7v27: BAR_P06_PATIENT_SEGMENT_COMPONENT
health.hl7v27: BAR_P10_MESSAGE_TYPE
health.hl7v27: BAR_P10_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: BAR_P12_MESSAGE_TYPE
health.hl7v27: BAR_P12_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: BHS_SEGMENT_NAME
health.hl7v27: BLC_SEGMENT_NAME
health.hl7v27: BLG_SEGMENT_NAME
health.hl7v27: BPO_SEGMENT_NAME
health.hl7v27: BPS_O29_MESSAGE_TYPE
health.hl7v27: BPS_O29_ORDER_SEGMENT_COMPONENT
health.hl7v27: BPS_O29_PATIENT_SEGMENT_COMPONENT
health.hl7v27: BPS_O29_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: BPS_O29_PRODUCT_SEGMENT_COMPONENT
health.hl7v27: BPS_O29_TIMING_SEGMENT_COMPONENT
health.hl7v27: BPX_SEGMENT_NAME
health.hl7v27: BRP_O30_MESSAGE_TYPE
health.hl7v27: BRP_O30_ORDER_SEGMENT_COMPONENT
health.hl7v27: BRP_O30_PATIENT_SEGMENT_COMPONENT
health.hl7v27: BRP_O30_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: BRP_O30_TIMING_SEGMENT_COMPONENT
health.hl7v27: BRT_O32_MESSAGE_TYPE
health.hl7v27: BRT_O32_ORDER_SEGMENT_COMPONENT
health.hl7v27: BRT_O32_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: BRT_O32_TIMING_SEGMENT_COMPONENT
health.hl7v27: BTS_O31_MESSAGE_TYPE
health.hl7v27: BTS_O31_ORDER_SEGMENT_COMPONENT
health.hl7v27: BTS_O31_PATIENT_SEGMENT_COMPONENT
health.hl7v27: BTS_O31_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: BTS_O31_PRODUCT_STATUS_SEGMENT_COMPONENT
health.hl7v27: BTS_O31_TIMING_SEGMENT_COMPONENT
health.hl7v27: BTS_SEGMENT_NAME
health.hl7v27: BTX_SEGMENT_NAME
health.hl7v27: CCF_I22_MESSAGE_TYPE
health.hl7v27: CCI_I22_APPOINTMENT_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_MEDICATION_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_MESSAGE_TYPE
health.hl7v27: CCI_I22_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_PATIENT_VISITS_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_RESOURCE_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_RESOURCE_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCI_I22_ROLE_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_APPOINTMENT_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_MEDICATION_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_MESSAGE_TYPE
health.hl7v27: CCM_I21_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_PATIENT_VISITS_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_RESOURCE_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_RESOURCE_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCM_I21_ROLE_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCQ_I19_MESSAGE_TYPE
health.hl7v27: CCQ_I19_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_APPOINTMENT_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_ORDER_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_ORDER_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_CLINICAL_ORDER_TIMING_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_MEDICATION_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_MESSAGE_TYPE
health.hl7v27: CCR_I16_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_PATIENT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_PATIENT_VISITS_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_RESOURCE_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_RESOURCE_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCR_I16_ROLE_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_APPOINTMENT_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_MEDICATION_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_MESSAGE_TYPE
health.hl7v27: CCU_I20_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_PATIENT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_PATIENT_VISITS_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_RESOURCE_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_RESOURCE_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_GOAL_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CCU_I20_ROLE_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CDM_SEGMENT_NAME
health.hl7v27: CER_SEGMENT_NAME
health.hl7v27: CM0_SEGMENT_NAME
health.hl7v27: CM1_SEGMENT_NAME
health.hl7v27: CM2_SEGMENT_NAME
health.hl7v27: CNS_SEGMENT_NAME
health.hl7v27: CON_SEGMENT_NAME
health.hl7v27: CQU_I19_APPOINTMENT_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_GOAL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_MEDICATION_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_MESSAGE_TYPE
health.hl7v27: CQU_I19_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_PATIENT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_PATIENT_VISITS_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_RESOURCE_DETAIL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_RESOURCE_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_GOAL_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT
health.hl7v27: CQU_I19_ROLE_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: CRM_C01_MESSAGE_TYPE
health.hl7v27: CRM_C01_PATIENT_SEGMENT_COMPONENT
health.hl7v27: CRM_C01_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: CSP_SEGMENT_NAME
health.hl7v27: CSR_SEGMENT_NAME
health.hl7v27: CSS_SEGMENT_NAME
health.hl7v27: CSU_C09_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_MESSAGE_TYPE
health.hl7v27: CSU_C09_PATIENT_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_RX_ADMIN_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_STUDY_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_STUDY_PHARM_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_STUDY_PHASE_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_STUDY_SCHEDULE_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: CSU_C09_VISIT_SEGMENT_COMPONENT
health.hl7v27: CTD_SEGMENT_NAME
health.hl7v27: CTI_SEGMENT_NAME
health.hl7v27: DB1_SEGMENT_NAME
health.hl7v27: DFT_P03_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_FINANCIAL_TIMING_QUANTITY_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_MESSAGE_TYPE
health.hl7v27: DFT_P03_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_TIMING_QUANTITY_SEGMENT_COMPONENT
health.hl7v27: DFT_P03_VISIT_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_FINANCIAL_TIMING_QUANTITY_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_MESSAGE_TYPE
health.hl7v27: DFT_P11_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_ORDER_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_TIMING_QUANTITY_SEGMENT_COMPONENT
health.hl7v27: DFT_P11_VISIT_SEGMENT_COMPONENT
health.hl7v27: DG1_SEGMENT_NAME
health.hl7v27: DMI_SEGMENT_NAME
health.hl7v27: DRG_SEGMENT_NAME
health.hl7v27: DSC_SEGMENT_NAME
health.hl7v27: DSP_SEGMENT_NAME
health.hl7v27: EAC_U07_COMMAND_SEGMENT_COMPONENT
health.hl7v27: EAC_U07_MESSAGE_TYPE
health.hl7v27: EAC_U07_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: EAN_U09_MESSAGE_TYPE
health.hl7v27: EAN_U09_NOTIFICATION_SEGMENT_COMPONENT
health.hl7v27: EAR_U08_COMMAND_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: EAR_U08_MESSAGE_TYPE
health.hl7v27: EAR_U08_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: ECD_SEGMENT_NAME
health.hl7v27: ECR_SEGMENT_NAME
health.hl7v27: EDU_SEGMENT_NAME
health.hl7v27: EHC_E01_DIAGNOSIS_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_INVOICE_INFORMATION_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_INVOICE_PROCESSING_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_MESSAGE_TYPE
health.hl7v27: EHC_E01_PATIENT_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_PRODUCT_SERVICE_LINE_ITEM_SEGMENT_COMPONENT
health.hl7v27: EHC_E01_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT
health.hl7v27: EHC_E02_INVOICE_INFORMATION_SEGMENT_COMPONENT
health.hl7v27: EHC_E02_MESSAGE_TYPE
health.hl7v27: EHC_E02_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT
health.hl7v27: EHC_E02_PSG_SEGMENT_COMPONENT
health.hl7v27: EHC_E04_MESSAGE_TYPE
health.hl7v27: EHC_E04_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT
health.hl7v27: EHC_E04_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT
health.hl7v27: EHC_E04_REASSESSMENT_REQUEST_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E10_INVOICE_PROCESSING_RESULTS_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E10_MESSAGE_TYPE
health.hl7v27: EHC_E10_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT
health.hl7v27: EHC_E10_PRODUCT_SERVICE_LINE_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E10_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT
health.hl7v27: EHC_E12_MESSAGE_TYPE
health.hl7v27: EHC_E12_REQUEST_SEGMENT_COMPONENT
health.hl7v27: EHC_E13_MESSAGE_TYPE
health.hl7v27: EHC_E13_REQUEST_SEGMENT_COMPONENT
health.hl7v27: EHC_E13_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_ADJUSTMENT_PAYEE_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_MESSAGE_TYPE
health.hl7v27: EHC_E15_PAYMENT_REMITTANCE_DETAIL_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_PAYMENT_REMITTANCE_HEADER_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT
health.hl7v27: EHC_E15_PSL_ITEM_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E20_AUTHORIZATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: EHC_E20_DIAGNOSIS_SEGMENT_COMPONENT
health.hl7v27: EHC_E20_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: EHC_E20_MESSAGE_TYPE
health.hl7v27: EHC_E20_PAT_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E20_PSL_ITEM_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E21_AUTHORIZATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: EHC_E21_MESSAGE_TYPE
health.hl7v27: EHC_E21_PSL_ITEM_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E24_AUTHORIZATION_RESPONSE_INFO_SEGMENT_COMPONENT
health.hl7v27: EHC_E24_MESSAGE_TYPE
health.hl7v27: EHC_E24_PAYER_ADJUSTMENT_SEGMENT_COMPONENT
health.hl7v27: EHC_E24_PSL_ITEM_INFO_SEGMENT_COMPONENT
health.hl7v27: EQP_SEGMENT_NAME
health.hl7v27: EQU_SEGMENT_NAME
health.hl7v27: ERR_SEGMENT_NAME
health.hl7v27: ESR_U02_MESSAGE_TYPE
health.hl7v27: ESU_U01_MESSAGE_TYPE
health.hl7v27: EVN_SEGMENT_NAME
health.hl7v27: FAC_SEGMENT_NAME
health.hl7v27: FHS_SEGMENT_NAME
health.hl7v27: FT1_SEGMENT_NAME
health.hl7v27: FTS_SEGMENT_NAME
health.hl7v27: GOL_SEGMENT_NAME
health.hl7v27: GP1_SEGMENT_NAME
health.hl7v27: GP2_SEGMENT_NAME
health.hl7v27: GT1_SEGMENT_NAME
health.hl7v27: Hxx_SEGMENT_NAME
health.hl7v27: IAM_SEGMENT_NAME
health.hl7v27: IAR_SEGMENT_NAME
health.hl7v27: IIM_SEGMENT_NAME
health.hl7v27: ILT_SEGMENT_NAME
health.hl7v27: IN1_SEGMENT_NAME
health.hl7v27: IN2_SEGMENT_NAME
health.hl7v27: IN3_SEGMENT_NAME
health.hl7v27: INR_U06_MESSAGE_TYPE
health.hl7v27: INU_U05_MESSAGE_TYPE
health.hl7v27: INV_SEGMENT_NAME
health.hl7v27: IPC_SEGMENT_NAME
health.hl7v27: IPR_SEGMENT_NAME
health.hl7v27: ISD_SEGMENT_NAME
health.hl7v27: ITM_SEGMENT_NAME
health.hl7v27: IVC_SEGMENT_NAME
health.hl7v27: IVT_SEGMENT_NAME
health.hl7v27: LAN_SEGMENT_NAME
health.hl7v27: LCC_SEGMENT_NAME
health.hl7v27: LCH_SEGMENT_NAME
health.hl7v27: LDP_SEGMENT_NAME
health.hl7v27: LOC_SEGMENT_NAME
health.hl7v27: LRL_SEGMENT_NAME
health.hl7v27: LSU_U12_MESSAGE_TYPE
health.hl7v27: MDM_T01_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: MDM_T01_MESSAGE_TYPE
health.hl7v27: MDM_T01_TIMING_SEGMENT_COMPONENT
health.hl7v27: MDM_T02_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: MDM_T02_MESSAGE_TYPE
health.hl7v27: MDM_T02_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: MDM_T02_TIMING_SEGMENT_COMPONENT
health.hl7v27: MFA_SEGMENT_NAME
health.hl7v27: MFE_SEGMENT_NAME
health.hl7v27: MFI_SEGMENT_NAME
health.hl7v27: MFK_M01_MESSAGE_TYPE
health.hl7v27: MFN_M02_MESSAGE_TYPE
health.hl7v27: MFN_M02_MF_STAFF_SEGMENT_COMPONENT
health.hl7v27: MFN_M04_MESSAGE_TYPE
health.hl7v27: MFN_M04_MF_CDM_SEGMENT_COMPONENT
health.hl7v27: MFN_M05_MESSAGE_TYPE
health.hl7v27: MFN_M05_MF_LOC_DEPT_SEGMENT_COMPONENT
health.hl7v27: MFN_M05_MF_LOCATION_SEGMENT_COMPONENT
health.hl7v27: MFN_M06_MESSAGE_TYPE
health.hl7v27: MFN_M06_MF_CLIN_STUDY_SEGMENT_COMPONENT
health.hl7v27: MFN_M06_MF_PHASE_SCHED_DETAIL_SEGMENT_COMPONENT
health.hl7v27: MFN_M07_MESSAGE_TYPE
health.hl7v27: MFN_M07_MF_CLIN_STUDY_SCHED_SEGMENT_COMPONENT
health.hl7v27: MFN_M08_MESSAGE_TYPE
health.hl7v27: MFN_M08_MF_TEST_NUMERIC_SEGMENT_COMPONENT
health.hl7v27: MFN_M09_MESSAGE_TYPE
health.hl7v27: MFN_M09_MF_TEST_CAT_DETAIL_SEGMENT_COMPONENT
health.hl7v27: MFN_M09_MF_TEST_CATEGORICAL_SEGMENT_COMPONENT
health.hl7v27: MFN_M10_MESSAGE_TYPE
health.hl7v27: MFN_M10_MF_TEST_BATT_DETAIL_SEGMENT_COMPONENT
health.hl7v27: MFN_M10_MF_TEST_BATTERIES_SEGMENT_COMPONENT
health.hl7v27: MFN_M11_MESSAGE_TYPE
health.hl7v27: MFN_M11_MF_TEST_CALC_DETAIL_SEGMENT_COMPONENT
health.hl7v27: MFN_M11_MF_TEST_CALCULATED_SEGMENT_COMPONENT
health.hl7v27: MFN_M12_MESSAGE_TYPE
health.hl7v27: MFN_M12_MF_OBS_ATTRIBUTES_SEGMENT_COMPONENT
health.hl7v27: MFN_M13_MESSAGE_TYPE
health.hl7v27: MFN_M15_MESSAGE_TYPE
health.hl7v27: MFN_M15_MF_INV_ITEM_SEGMENT_COMPONENT
health.hl7v27: MFN_M16_MATERIAL_ITEM_RECORD_SEGMENT_COMPONENT
health.hl7v27: MFN_M16_MATERIAL_LOCATION_SEGMENT_COMPONENT
health.hl7v27: MFN_M16_MESSAGE_TYPE
health.hl7v27: MFN_M16_PACKAGING_SEGMENT_COMPONENT
health.hl7v27: MFN_M16_PURCHASING_VENDOR_SEGMENT_COMPONENT
health.hl7v27: MFN_M16_STERILIZATION_SEGMENT_COMPONENT
health.hl7v27: MFN_M17_MESSAGE_TYPE
health.hl7v27: MFN_M17_MF_DRG_SEGMENT_COMPONENT
health.hl7v27: MFN_Znn_MESSAGE_TYPE
health.hl7v27: MFN_Znn_MF_SITE_DEFINED_SEGMENT_COMPONENT
health.hl7v27: MRG_SEGMENT_NAME
health.hl7v27: MSA_SEGMENT_NAME
health.hl7v27: MSH_SEGMENT_NAME
health.hl7v27: NCK_SEGMENT_NAME
health.hl7v27: NDS_SEGMENT_NAME
health.hl7v27: NK1_SEGMENT_NAME
health.hl7v27: NMD_N02_APP_STATS_SEGMENT_COMPONENT
health.hl7v27: NMD_N02_APP_STATUS_SEGMENT_COMPONENT
health.hl7v27: NMD_N02_CLOCK_AND_STATS_WITH_NOTES_SEGMENT_COMPONENT
health.hl7v27: NMD_N02_CLOCK_SEGMENT_COMPONENT
health.hl7v27: NMD_N02_MESSAGE_TYPE
health.hl7v27: NPU_SEGMENT_NAME
health.hl7v27: NSC_SEGMENT_NAME
health.hl7v27: NST_SEGMENT_NAME
health.hl7v27: NTE_SEGMENT_NAME
health.hl7v27: OBR_SEGMENT_NAME
health.hl7v27: OBX_SEGMENT_NAME
health.hl7v27: ODS_SEGMENT_NAME
health.hl7v27: ODT_SEGMENT_NAME
health.hl7v27: OM1_SEGMENT_NAME
health.hl7v27: OM2_SEGMENT_NAME
health.hl7v27: OM3_SEGMENT_NAME
health.hl7v27: OM4_SEGMENT_NAME
health.hl7v27: OM5_SEGMENT_NAME
health.hl7v27: OM6_SEGMENT_NAME
health.hl7v27: OM7_SEGMENT_NAME
health.hl7v27: OMB_O27_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMB_O27_MESSAGE_TYPE
health.hl7v27: OMB_O27_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMB_O27_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMB_O27_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMB_O27_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMB_O27_TIMING_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_DIET_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_MESSAGE_TYPE
health.hl7v27: OMD_O03_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_ORDER_DIET_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_ORDER_TRAY_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_TIMING_DIET_SEGMENT_COMPONENT
health.hl7v27: OMD_O03_TIMING_TRAY_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_CONTAINER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_MESSAGE_TYPE
health.hl7v27: OMG_O19_OBSERVATION_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_ORDER_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_PATIENT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_PRIOR_RESULT_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_TIMING_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OMG_O19_TIMING_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_MESSAGE_TYPE
health.hl7v27: OMI_O23_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMI_O23_TIMING_SEGMENT_COMPONENT
health.hl7v27: OML_O21_CONTAINER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O21_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OML_O21_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OML_O21_MESSAGE_TYPE
health.hl7v27: OML_O21_OBSERVATION_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O21_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OML_O21_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O21_ORDER_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O21_ORDER_SEGMENT_COMPONENT
health.hl7v27: OML_O21_PATIENT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O21_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OML_O21_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O21_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OML_O21_PRIOR_RESULT_SEGMENT_COMPONENT
health.hl7v27: OML_O21_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O21_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OML_O21_TIMING_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O21_TIMING_SEGMENT_COMPONENT
health.hl7v27: OML_O33_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OML_O33_MESSAGE_TYPE
health.hl7v27: OML_O33_OBSERVATION_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O33_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OML_O33_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O33_ORDER_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O33_ORDER_SEGMENT_COMPONENT
health.hl7v27: OML_O33_PATIENT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O33_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OML_O33_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O33_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OML_O33_PRIOR_RESULT_SEGMENT_COMPONENT
health.hl7v27: OML_O33_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O33_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OML_O33_TIMING_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O33_TIMING_SEGMENT_COMPONENT
health.hl7v27: OML_O35_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OML_O35_MESSAGE_TYPE
health.hl7v27: OML_O35_OBSERVATION_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O35_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OML_O35_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O35_ORDER_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O35_ORDER_SEGMENT_COMPONENT
health.hl7v27: OML_O35_PATIENT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O35_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OML_O35_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O35_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OML_O35_PRIOR_RESULT_SEGMENT_COMPONENT
health.hl7v27: OML_O35_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OML_O35_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O35_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OML_O35_TIMING_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OML_O35_TIMING_SEGMENT_COMPONENT
health.hl7v27: OML_O39_CONTAINER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O39_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OML_O39_MESSAGE_TYPE
health.hl7v27: OML_O39_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OML_O39_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O39_ORDER_SEGMENT_COMPONENT
health.hl7v27: OML_O39_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: OML_O39_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OML_O39_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OML_O39_SHIPMENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O39_SPECIMEN_CONTAINER_IN_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: OML_O39_SPECIMEN_IN_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: OML_O39_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OML_O39_SPECIMEN_SHIPMENT_SEGMENT_COMPONENT
health.hl7v27: OML_O39_TIMING_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_MESSAGE_TYPE
health.hl7v27: OMN_O07_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMN_O07_TIMING_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_COMPONENT_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_MESSAGE_TYPE
health.hl7v27: OMP_O09_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMP_O09_TIMING_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_MESSAGE_TYPE
health.hl7v27: OMS_O05_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_ORDER_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: OMS_O05_TIMING_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_CONTAINER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_GUARANTOR_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_MESSAGE_TYPE
health.hl7v27: OPL_O37_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_OBSERVATION_RESULT_GROUP_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_OBSERVATIONS_ON_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_ORDER_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_ORDER_RELATED_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_ORDER_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_PATIENT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_PRIOR_RESULT_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_TIMING2_SEGMENT_COMPONENT
health.hl7v27: OPL_O37_TIMING_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_MESSAGE_TYPE
health.hl7v27: OPR_O38_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_ORDER_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OPR_O38_TIMING_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_ACCESSION_DETAIL_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_MESSAGE_TYPE
health.hl7v27: OPU_R25_ORDER_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_PATIENT_VISIT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_RESULT_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OPU_R25_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: ORA_R33_MESSAGE_TYPE
health.hl7v27: ORB_O28_MESSAGE_TYPE
health.hl7v27: ORB_O28_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORB_O28_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORB_O28_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORB_O28_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORC_SEGMENT_NAME
health.hl7v27: ORD_O04_MESSAGE_TYPE
health.hl7v27: ORD_O04_ORDER_DIET_SEGMENT_COMPONENT
health.hl7v27: ORD_O04_ORDER_TRAY_SEGMENT_COMPONENT
health.hl7v27: ORD_O04_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORD_O04_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORD_O04_TIMING_DIET_SEGMENT_COMPONENT
health.hl7v27: ORD_O04_TIMING_TRAY_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_MESSAGE_TYPE
health.hl7v27: ORG_O20_OBSERVATION_GROUP_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: ORG_O20_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORG_SEGMENT_NAME
health.hl7v27: ORI_O24_MESSAGE_TYPE
health.hl7v27: ORI_O24_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORI_O24_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORI_O24_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORI_O24_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORL_O22_MESSAGE_TYPE
health.hl7v27: ORL_O22_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: ORL_O22_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORL_O22_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORL_O22_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: ORL_O22_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_MESSAGE_TYPE
health.hl7v27: ORL_O34_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: ORL_O34_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_MESSAGE_TYPE
health.hl7v27: ORL_O36_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: ORL_O36_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_MESSAGE_TYPE
health.hl7v27: ORL_O40_OBSERVATION_REQUEST_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_SPECIMEN_CONTAINER_IN_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_SPECIMEN_IN_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_SPECIMEN_SHIPMENT_SEGMENT_COMPONENT
health.hl7v27: ORL_O40_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORN_O08_MESSAGE_TYPE
health.hl7v27: ORN_O08_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORN_O08_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORN_O08_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORN_O08_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_COMPONENT_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_MESSAGE_TYPE
health.hl7v27: ORP_O10_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORP_O10_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORS_O06_MESSAGE_TYPE
health.hl7v27: ORS_O06_ORDER_SEGMENT_COMPONENT
health.hl7v27: ORS_O06_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORS_O06_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: ORS_O06_TIMING_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_MESSAGE_TYPE
health.hl7v27: ORU_R01_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_PATIENT_RESULT_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_PATIENT_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: ORU_R01_VISIT_SEGMENT_COMPONENT
health.hl7v27: ORU_R30_MESSAGE_TYPE
health.hl7v27: ORU_R30_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R30_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: ORU_R30_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: ORU_R30_VISIT_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_CONTAINER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_MESSAGE_TYPE
health.hl7v27: OSM_R26_PACKAGE_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_PATIENT_INFORMATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_PATIENT_VISIT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SHIPMENT_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SHIPPING_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SUBJECT_PERSON_ANIMAL_IDENTIFICATION_SEGMENT_COMPONENT
health.hl7v27: OSM_R26_SUBJECT_POPULATION_LOCATION_IDENTIFICATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_MESSAGE_TYPE
health.hl7v27: OUL_R22_ORDER_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_RESULT_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: OUL_R22_VISIT_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_MESSAGE_TYPE
health.hl7v27: OUL_R23_ORDER_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_RESULT_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: OUL_R23_VISIT_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_MESSAGE_TYPE
health.hl7v27: OUL_R24_ORDER_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_PATIENT_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_PATIENT_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_RESULT_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: OUL_R24_VISIT_SEGMENT_COMPONENT
health.hl7v27: OVR_SEGMENT_NAME
health.hl7v27: PAC_SEGMENT_NAME
health.hl7v27: PCE_SEGMENT_NAME
health.hl7v27: PCR_SEGMENT_NAME
health.hl7v27: PD1_SEGMENT_NAME
health.hl7v27: PDA_SEGMENT_NAME
health.hl7v27: PDC_SEGMENT_NAME
health.hl7v27: PEO_SEGMENT_NAME
health.hl7v27: PES_SEGMENT_NAME
health.hl7v27: PEX_P07_ASSOCIATED_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_ASSOCIATED_PERSON_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_ASSOCIATED_RX_ADMIN_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_ASSOCIATED_RX_ORDER_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_EXPERIENCE_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_MESSAGE_TYPE
health.hl7v27: PEX_P07_NK1_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_PEX_CAUSE_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_PEX_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_RX_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_RX_ORDER_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_STUDY_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_TIMING_QTY_SEGMENT_COMPONENT
health.hl7v27: PEX_P07_VISIT_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_GOAL_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_MESSAGE_TYPE
health.hl7v27: PGL_PC6_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_ORDER_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PGL_PC6_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PID_SEGMENT_NAME
health.hl7v27: PKG_SEGMENT_NAME
health.hl7v27: PMT_SEGMENT_NAME
health.hl7v27: PMU_B01_MESSAGE_TYPE
health.hl7v27: PMU_B03_MESSAGE_TYPE
health.hl7v27: PMU_B04_MESSAGE_TYPE
health.hl7v27: PMU_B07_CERTIFICATE_SEGMENT_COMPONENT
health.hl7v27: PMU_B07_MESSAGE_TYPE
health.hl7v27: PMU_B08_MESSAGE_TYPE
health.hl7v27: PPG_PCG_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_GOAL_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_MESSAGE_TYPE
health.hl7v27: PPG_PCG_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_ORDER_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPG_PCG_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_GOAL_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_MESSAGE_TYPE
health.hl7v27: PPP_PCB_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_ORDER_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPP_PCB_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_GOAL_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_MESSAGE_TYPE
health.hl7v27: PPR_PC1_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_ORDER_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPR_PC1_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_GOAL_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_MESSAGE_TYPE
health.hl7v27: PPT_PCL_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_ORDER_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PATIENT_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPT_PCL_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_GOAL_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_GOAL_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_MESSAGE_TYPE
health.hl7v27: PPV_PCA_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_ORDER_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_PATIENT_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PPV_PCA_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PR1_SEGMENT_NAME
health.hl7v27: PRA_SEGMENT_NAME
health.hl7v27: PRB_SEGMENT_NAME
health.hl7v27: PRC_SEGMENT_NAME
health.hl7v27: PRD_SEGMENT_NAME
health.hl7v27: PRR_PC5_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_GOAL_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_MESSAGE_TYPE
health.hl7v27: PRR_PC5_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_ORDER_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PATIENT_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PROBLEM_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PRR_PC5_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PRT_SEGMENT_NAME
health.hl7v27: PSG_SEGMENT_NAME
health.hl7v27: PSH_SEGMENT_NAME
health.hl7v27: PSL_SEGMENT_NAME
health.hl7v27: PSS_SEGMENT_NAME
health.hl7v27: PTH_SEGMENT_NAME
health.hl7v27: PTR_PCF_CHOICE_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_GOAL_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_GOAL_ROLE_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_GOAL_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_MESSAGE_TYPE
health.hl7v27: PTR_PCF_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_ORDER_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_ORDER_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PATHWAY_ROLE_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PATHWAY_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PATIENT_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PROBLEM_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PROBLEM_ROLE_SEGMENT_COMPONENT
health.hl7v27: PTR_PCF_PROBLEM_SEGMENT_COMPONENT
health.hl7v27: PV1_SEGMENT_NAME
health.hl7v27: PV2_SEGMENT_NAME
health.hl7v27: PYE_SEGMENT_NAME
health.hl7v27: QAK_SEGMENT_NAME
health.hl7v27: QBP_E03_MESSAGE_TYPE
health.hl7v27: QBP_E03_QUERY_INFORMATION_SEGMENT_COMPONENT
health.hl7v27: QBP_E22_MESSAGE_TYPE
health.hl7v27: QBP_E22_QUERY_SEGMENT_COMPONENT
health.hl7v27: QBP_Q11_MESSAGE_TYPE
health.hl7v27: QBP_Q11_QBP_SEGMENT_COMPONENT
health.hl7v27: QBP_Q13_MESSAGE_TYPE
health.hl7v27: QBP_Q13_QBP_SEGMENT_COMPONENT
health.hl7v27: QBP_Q15_MESSAGE_TYPE
health.hl7v27: QBP_Q21_MESSAGE_TYPE
health.hl7v27: QBP_Qnn_MESSAGE_TYPE
health.hl7v27: QBP_Z73_MESSAGE_TYPE
health.hl7v27: QCN_J01_MESSAGE_TYPE
health.hl7v27: QID_SEGMENT_NAME
health.hl7v27: QPD_SEGMENT_NAME
health.hl7v27: QRD_SEGMENT_NAME
health.hl7v27: QRF_SEGMENT_NAME
health.hl7v27: QRI_SEGMENT_NAME
health.hl7v27: QRY_PC4_MESSAGE_TYPE
health.hl7v27: QSB_Q16_MESSAGE_TYPE
health.hl7v27: QVR_Q17_MESSAGE_TYPE
health.hl7v27: QVR_Q17_QBP_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_COMPONENTS_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_MESSAGE_TYPE
health.hl7v27: RAS_O17_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_ORDER_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RAS_O17_TIMING_SEGMENT_COMPONENT
health.hl7v27: RCI_I05_MESSAGE_TYPE
health.hl7v27: RCI_I05_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RCI_I05_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RCI_I05_RESULTS_SEGMENT_COMPONENT
health.hl7v27: RCL_I06_MESSAGE_TYPE
health.hl7v27: RCL_I06_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RCP_SEGMENT_NAME
health.hl7v27: RDE_O11_COMPONENT_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_MESSAGE_TYPE
health.hl7v27: RDE_O11_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_ORDER_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RDE_O11_TIMING_SEGMENT_COMPONENT
health.hl7v27: RDF_SEGMENT_NAME
health.hl7v27: RDR_RDR_DEFINITION_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_DISPENSE_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_MESSAGE_TYPE
health.hl7v27: RDR_RDR_ORDER_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RDR_RDR_TIMING_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_COMPONENT_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_MESSAGE_TYPE
health.hl7v27: RDS_O13_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_ORDER_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RDS_O13_TIMING_SEGMENT_COMPONENT
health.hl7v27: RDT_SEGMENT_NAME
health.hl7v27: RDY_K15_MESSAGE_TYPE
health.hl7v27: REF_I12_AUTHORIZATION_CONTACT2_SEGMENT_COMPONENT
health.hl7v27: REF_I12_AUTHORIZATION_CONTACT_SEGMENT_COMPONENT
health.hl7v27: REF_I12_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: REF_I12_MESSAGE_TYPE
health.hl7v27: REF_I12_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: REF_I12_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: REF_I12_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: REF_I12_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: REF_I12_RESULTS_NOTES_SEGMENT_COMPONENT
health.hl7v27: REL_SEGMENT_NAME
health.hl7v27: RF1_SEGMENT_NAME
health.hl7v27: RFI_SEGMENT_NAME
health.hl7v27: RGS_SEGMENT_NAME
health.hl7v27: RGV_O15_COMPONENTS_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_GIVE_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_MESSAGE_TYPE
health.hl7v27: RGV_O15_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_ORDER_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_TIMING_GIVE_SEGMENT_COMPONENT
health.hl7v27: RGV_O15_TIMING_SEGMENT_COMPONENT
health.hl7v27: RMI_SEGMENT_NAME
health.hl7v27: ROL_SEGMENT_NAME
health.hl7v27: RPA_I08_AUTHORIZATION2_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_MESSAGE_TYPE
health.hl7v27: RPA_I08_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_RESULTS_SEGMENT_COMPONENT
health.hl7v27: RPA_I08_VISIT_SEGMENT_COMPONENT
health.hl7v27: RPI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RPI_I01_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RPI_I01_MESSAGE_TYPE
health.hl7v27: RPI_I01_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RPI_I04_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RPI_I04_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RPI_I04_MESSAGE_TYPE
health.hl7v27: RPI_I04_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RPL_I02_MESSAGE_TYPE
health.hl7v27: RPL_I02_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RPR_I03_MESSAGE_TYPE
health.hl7v27: RPR_I03_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RQ1_SEGMENT_NAME
health.hl7v27: RQA_I08_AUTHORIZATION2_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_AUTHORIZATION_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_MESSAGE_TYPE
health.hl7v27: RQA_I08_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_RESULTS_SEGMENT_COMPONENT
health.hl7v27: RQA_I08_VISIT_SEGMENT_COMPONENT
health.hl7v27: RQC_I05_MESSAGE_TYPE
health.hl7v27: RQC_I05_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RQD_SEGMENT_NAME
health.hl7v27: RQI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RQI_I01_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: RQI_I01_MESSAGE_TYPE
health.hl7v27: RQI_I01_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RQP_I04_MESSAGE_TYPE
health.hl7v27: RQP_I04_PROVIDER_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_MESSAGE_TYPE
health.hl7v27: RRA_O18_ORDER_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_TIMING_SEGMENT_COMPONENT
health.hl7v27: RRA_O18_TREATMENT_SEGMENT_COMPONENT
health.hl7v27: RRD_O14_DISPENSE_SEGMENT_COMPONENT
health.hl7v27: RRD_O14_MESSAGE_TYPE
health.hl7v27: RRD_O14_ORDER_SEGMENT_COMPONENT
health.hl7v27: RRD_O14_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RRD_O14_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RRD_O14_TIMING_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_MESSAGE_TYPE
health.hl7v27: RRE_O12_ORDER_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RRE_O12_TIMING_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_GIVE_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_MESSAGE_TYPE
health.hl7v27: RRG_O16_ORDER_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_TIMING_GIVE_SEGMENT_COMPONENT
health.hl7v27: RRG_O16_TIMING_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_AUTHORIZATION_CONTACT2_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_AUTHORIZATION_CONTACT_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_MESSAGE_TYPE
health.hl7v27: RRI_I12_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_PROCEDURE_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_PROVIDER_CONTACT_SEGMENT_COMPONENT
health.hl7v27: RRI_I12_RESULTS_NOTES_SEGMENT_COMPONENT
health.hl7v27: RSP_E03_INVOICE_PROCESSING_RESULTS_INFO_SEGMENT_COMPONENT
health.hl7v27: RSP_E03_MESSAGE_TYPE
health.hl7v27: RSP_E03_QUERY_ACK_SEGMENT_COMPONENT
health.hl7v27: RSP_E22_AUTHORIZATION_INFO_SEGMENT_COMPONENT
health.hl7v27: RSP_E22_MESSAGE_TYPE
health.hl7v27: RSP_E22_PSL_ITEM_INFO_SEGMENT_COMPONENT
health.hl7v27: RSP_E22_QUERY_ACK_SEGMENT_COMPONENT
health.hl7v27: RSP_K11_MESSAGE_TYPE
health.hl7v27: RSP_K11_SEGMENT_PATTERN_SEGMENT_COMPONENT
health.hl7v27: RSP_K21_MESSAGE_TYPE
health.hl7v27: RSP_K21_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_K22_MESSAGE_TYPE
health.hl7v27: RSP_K22_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_K23_MESSAGE_TYPE
health.hl7v27: RSP_K23_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_K25_MESSAGE_TYPE
health.hl7v27: RSP_K25_STAFF_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_COMPONENTS_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_ENCODING_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_MESSAGE_TYPE
health.hl7v27: RSP_K31_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_PATIENT_VISIT_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RSP_K31_TIMING_SEGMENT_COMPONENT
health.hl7v27: RSP_K32_MESSAGE_TYPE
health.hl7v27: RSP_K32_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_ENCODED_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_MESSAGE_TYPE
health.hl7v27: RSP_Z82_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_TIMING_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_TREATMENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z82_VISIT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_ADMINISTRATION_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_DISPENSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_ENCODED_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_GIVE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_MESSAGE_TYPE
health.hl7v27: RSP_Z86_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RSP_Z86_TIMING_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_ALLERGY_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_COMPONENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_MESSAGE_TYPE
health.hl7v27: RSP_Z88_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_ORDER_DETAIL_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_ORDER_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_TIMING_ENCODED_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_TIMING_SEGMENT_COMPONENT
health.hl7v27: RSP_Z88_VISIT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_COMMON_ORDER_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_MESSAGE_TYPE
health.hl7v27: RSP_Z90_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_PATIENT_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_QUERY_RESPONSE_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_TIMING_SEGMENT_COMPONENT
health.hl7v27: RSP_Z90_VISIT_SEGMENT_COMPONENT
health.hl7v27: RTB_K13_MESSAGE_TYPE
health.hl7v27: RTB_K13_ROW_DEFINITION_SEGMENT_COMPONENT
health.hl7v27: RTB_Knn_MESSAGE_TYPE
health.hl7v27: RTB_Z74_MESSAGE_TYPE
health.hl7v27: RTB_Z74_ROW_DEFINITION_SEGMENT_COMPONENT
health.hl7v27: RXA_SEGMENT_NAME
health.hl7v27: RXC_SEGMENT_NAME
health.hl7v27: RXD_SEGMENT_NAME
health.hl7v27: RXE_SEGMENT_NAME
health.hl7v27: RXG_SEGMENT_NAME
health.hl7v27: RXO_SEGMENT_NAME
health.hl7v27: RXR_SEGMENT_NAME
health.hl7v27: SAC_SEGMENT_NAME
health.hl7v27: SCD_SEGMENT_NAME
health.hl7v27: SCH_SEGMENT_NAME
health.hl7v27: SCP_SEGMENT_NAME
health.hl7v27: SDD_SEGMENT_NAME
health.hl7v27: SDR_S31_ANTI_MICROBIAL_DEVICE_DATA_SEGMENT_COMPONENT
health.hl7v27: SDR_S31_MESSAGE_TYPE
health.hl7v27: SDR_S32_ANTI_MICROBIAL_DEVICE_CYCLE_DATA_SEGMENT_COMPONENT
health.hl7v27: SDR_S32_MESSAGE_TYPE
health.hl7v27: SFT_SEGMENT_NAME
health.hl7v27: SHP_SEGMENT_NAME
health.hl7v27: SID_SEGMENT_NAME
health.hl7v27: SIU_S12_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SIU_S12_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SIU_S12_MESSAGE_TYPE
health.hl7v27: SIU_S12_PATIENT_SEGMENT_COMPONENT
health.hl7v27: SIU_S12_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SIU_S12_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: SIU_S12_SERVICE_SEGMENT_COMPONENT
health.hl7v27: SLR_S28_MESSAGE_TYPE
health.hl7v27: SLT_SEGMENT_NAME
health.hl7v27: SPM_SEGMENT_NAME
health.hl7v27: SRM_S01_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRM_S01_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRM_S01_MESSAGE_TYPE
health.hl7v27: SRM_S01_PATIENT_SEGMENT_COMPONENT
health.hl7v27: SRM_S01_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRM_S01_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: SRM_S01_SERVICE_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_GENERAL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_LOCATION_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_MESSAGE_TYPE
health.hl7v27: SRR_S01_PATIENT_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_PERSONNEL_RESOURCE_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_RESOURCES_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_SCHEDULE_SEGMENT_COMPONENT
health.hl7v27: SRR_S01_SERVICE_SEGMENT_COMPONENT
health.hl7v27: SSR_U04_MESSAGE_TYPE
health.hl7v27: SSR_U04_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: SSU_U03_MESSAGE_TYPE
health.hl7v27: SSU_U03_SPECIMEN_CONTAINER_SEGMENT_COMPONENT
health.hl7v27: SSU_U03_SPECIMEN_SEGMENT_COMPONENT
health.hl7v27: STC_S33_MESSAGE_TYPE
health.hl7v27: STF_SEGMENT_NAME
health.hl7v27: STZ_SEGMENT_NAME
health.hl7v27: TCC_SEGMENT_NAME
health.hl7v27: TCD_SEGMENT_NAME
health.hl7v27: TCU_U10_MESSAGE_TYPE
health.hl7v27: TCU_U10_TEST_CONFIGURATION_SEGMENT_COMPONENT
health.hl7v27: TQ1_SEGMENT_NAME
health.hl7v27: TQ2_SEGMENT_NAME
health.hl7v27: TXA_SEGMENT_NAME
health.hl7v27: UAC_SEGMENT_NAME
health.hl7v27: UB1_SEGMENT_NAME
health.hl7v27: UB2_SEGMENT_NAME
health.hl7v27: UDM_Q05_MESSAGE_TYPE
health.hl7v27: URD_SEGMENT_NAME
health.hl7v27: URS_SEGMENT_NAME
health.hl7v27: VAR_SEGMENT_NAME
health.hl7v27: VERSION
health.hl7v27: VND_SEGMENT_NAME
health.hl7v27: VXU_V04_INSURANCE_SEGMENT_COMPONENT
health.hl7v27: VXU_V04_MESSAGE_TYPE
health.hl7v27: VXU_V04_OBSERVATION_SEGMENT_COMPONENT
health.hl7v27: VXU_V04_ORDER_SEGMENT_COMPONENT
health.hl7v27: VXU_V04_PATIENT_SEGMENT_COMPONENT
health.hl7v27: VXU_V04_TIMING_SEGMENT_COMPONENT
health.hl7v27: ZL7_SEGMENT_NAME
health.hl7v27: Zxx_SEGMENT_NAME
Records
health.hl7v27: ABS
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 ABS_SEGMENT_NAME) - Segment Name
- abs1 XCN(default {}) - Discharge Care Provider
- abs2 CWE(default {}) - Transfer Medical Service Code
- abs3 CWE(default {}) - Severity of Illness Code
- abs4 DTM(default "") - Date/Time of Attestation
- abs5 XCN(default {}) - Attested By
- abs6 CWE(default {}) - Triage Code
- abs7 DTM(default "") - Abstract Completion Date/Time
- abs8 XCN(default {}) - Abstracted By
- abs9 CWE(default {}) - Case Category Code
- abs10 ID(default "") - Caesarian Section Indicator
- abs11 CWE(default {}) - Gestation Category Code
- abs12 NM(default "") - Gestation Period - Weeks
- abs13 CWE(default {}) - Newborn Code
- abs14 ID(default "") - Stillborn Indicator
health.hl7v27: 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 DTM(default "") - Accident Date/Time
- acc2 CWE(default {}) - Accident Code
- acc3 ST(default "") - Accident Location
- acc4 CWE(default {}) - Auto Accident State
- acc5 ID(default "") - Accident Job Related Indicator
- acc6 ID(default "") - Accident Death Indicator
- acc7 XCN(default {}) - Entered By
- acc8 ST(default "") - Accident Description
- acc9 ST(default "") - Brought In By
- acc10 ID(default "") - Police Notified Indicator
- acc11 XAD(default {}) - Accident Address
- acc12 NM(default "") - Degree of patient liability
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
health.hl7v27: 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.hl7v27: 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.hl7v27: ADJ
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 ADJ_SEGMENT_NAME) - Segment Name
- adj1 EI(default {}) - Provider Adjustment Number
- adj2 EI(default {}) - Payer Adjustment Number
- adj3 SI(default "") - Adjustment Sequence Number
- adj4 CWE(default {}) - Adjustment Category
- adj5 CP(default {}) - Adjustment Amount
- adj6 CQ(default {}) - Adjustment Quantity
- adj7 CWE(default {}) - Adjustment Reason PA
- adj8 ST(default "") - Adjustment Description
- adj9 NM(default "") - Original Value
- adj10 NM(default "") - Substitute Value
- adj11 CWE(default {}) - Adjustment Action
- adj12 EI(default {}) - Provider Adjustment Number Cross Reference
- adj13 EI(default {}) - Provider Product/Service Line Item Number Cross Reference
- adj14 DTM(default "") - Adjustment Date
- adj15 XON(default {}) - Responsible Organization
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL 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
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- ub1 UB1? - UB1 Segment
- ub2 UB2? - UB2 Segment
- pda PDA? - PDA Segment
- procedure ADT_A01_PROCEDURE[](default [{pr1:{}}]) - ADT_A01_PROCEDURE Segment Group
- insurance ADT_A01_INSURANCE[](default [{in1:{}}]) - ADT_A01_INSURANCE Segment Group
health.hl7v27: ADT_A01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
- pda PDA? - PDA Segment
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL Segment
- nk1 NK1[](default []) - NK1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- al1 AL1[](default []) - AL1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- obx OBX[](default []) - OBX Segment
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- pda PDA? - PDA Segment
- procedure ADT_A03_PROCEDURE[](default [{pr1:{}}]) - ADT_A03_PROCEDURE Segment Group
- insurance ADT_A03_INSURANCE[](default [{in1:{}}]) - ADT_A03_INSURANCE Segment Group
health.hl7v27: ADT_A03_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A03_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: 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.hl7v27: ADT_A05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL 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
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- ub1 UB1? - UB1 Segment
- ub2 UB2? - UB2 Segment
- procedure ADT_A05_PROCEDURE[](default [{pr1:{}}]) - ADT_A05_PROCEDURE Segment Group
- insurance ADT_A05_INSURANCE[](default [{in1:{}}]) - ADT_A05_INSURANCE Segment Group
health.hl7v27: ADT_A05_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A05_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: ADT_A05_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A05_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL Segment
- mrg MRG? - MRG 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
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- ub1 UB1? - UB1 Segment
- ub2 UB2? - UB2 Segment
- procedure ADT_A06_PROCEDURE[](default [{pr1:{}}]) - ADT_A06_PROCEDURE Segment Group
- insurance ADT_A06_INSURANCE[](default [{in1:{}}]) - ADT_A06_INSURANCE Segment Group
health.hl7v27: ADT_A06_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A06_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: ADT_A15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- db1 DB1[](default []) - DB1 Segment
- obx OBX[](default []) - OBX Segment
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- arv ARV[](default []) - ARV Segment
- rol ROL[](default []) - ROL 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
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- procedure ADT_A16_PROCEDURE[](default [{pr1:{}}]) - ADT_A16_PROCEDURE Segment Group
- insurance ADT_A16_INSURANCE[](default [{in1:{}}]) - ADT_A16_INSURANCE Segment Group
health.hl7v27: ADT_A16_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A16_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: ADT_A16_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A16_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- npu NPU - NPU Segment
health.hl7v27: ADT_A21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1? - PV1 Segment
- db1 DB1[](default []) - DB1 Segment
health.hl7v27: ADT_A37
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A37_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1? - PV1 Segment
- db1 DB1[](default []) - DB1 Segment
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- patient ADT_A39_PATIENT[](default [{pid:{}, mrg:{}}]) - ADT_A39_PATIENT Segment Group
health.hl7v27: 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- patient ADT_A43_PATIENT[](default [{pid:{}, mrg:{}}]) - ADT_A43_PATIENT Segment Group
health.hl7v27: 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.hl7v27: ADT_A44
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A44_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- patient ADT_A44_PATIENT[](default [{pid:{}, mrg:{}}]) - ADT_A44_PATIENT Segment Group
health.hl7v27: ADT_A44_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A44_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mrg MRG -
- arv ARV[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC 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.hl7v27: 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.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- mrg MRG - MRG Segment
- pv1 PV1 - PV1 Segment
health.hl7v27: ADT_A52
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A52_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
health.hl7v27: ADT_A54
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A54_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
health.hl7v27: ADT_A60
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A60_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- arv ARV[](default []) - ARV Segment
- visit ADT_A60_VISIT[](default [{pv1:{}}]) - ADT_A60_VISIT Segment Group
- adverse_reaction_group ADT_A60_ADVERSE_REACTION_GROUP[](default [{iam:{}}]) - ADT_A60_ADVERSE_REACTION_GROUP Segment Group
health.hl7v27: ADT_A60_ADVERSE_REACTION_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A60_ADVERSE_REACTION_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- iam IAM -
- iar IAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ADT_A60_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default ADT_A60_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- arv ARV[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: ADT_A61
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ADT_A61_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
health.hl7v27: AFF
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 AFF_SEGMENT_NAME) - Segment Name
- aff1 SI(default "") - Set ID - AFF
- aff2 XON(default {}) - Professional Organization
- aff3 XAD(default {}) - Professional Organization Address
- aff4 DR[](default [{}]) - Professional Organization Affiliation Date Range
- aff5 ST(default "") - Professional Affiliation Additional Information
health.hl7v27: 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 CWE(default {}) - Resource ID
- aig4 CWE(default {}) - Resource Type
- aig5 CWE[](default [{}]) - Resource Group
- aig6 NM(default "") - Resource Quantity
- aig7 CNE(default {}) - Resource Quantity Units
- aig8 DTM(default "") - Start Date/Time
- aig9 NM(default "") - Start Date/Time Offset
- aig10 CNE(default {}) - Start Date/Time Offset Units
- aig11 NM(default "") - Duration
- aig12 CNE(default {}) - Duration Units
- aig13 CWE(default {}) - Allow Substitution Code
- aig14 CWE(default {}) - Filler Status Code
health.hl7v27: 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 CWE(default {}) - Location Type - AIL
- ail5 CWE(default {}) - Location Group
- ail6 DTM(default "") - Start Date/Time
- ail7 NM(default "") - Start Date/Time Offset
- ail8 CNE(default {}) - Start Date/Time Offset Units
- ail9 NM(default "") - Duration
- ail10 CNE(default {}) - Duration Units
- ail11 CWE(default {}) - Allow Substitution Code
- ail12 CWE(default {}) - Filler Status Code
health.hl7v27: 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 CWE(default {}) - Resource Type
- aip5 CWE(default {}) - Resource Group
- aip6 DTM(default "") - Start Date/Time
- aip7 NM(default "") - Start Date/Time Offset
- aip8 CNE(default {}) - Start Date/Time Offset Units
- aip9 NM(default "") - Duration
- aip10 CNE(default {}) - Duration Units
- aip11 CWE(default {}) - Allow Substitution Code
- aip12 CWE(default {}) - Filler Status Code
health.hl7v27: 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 CWE(default {}) - Universal Service Identifier
- ais4 DTM(default "") - Start Date/Time
- ais5 NM(default "") - Start Date/Time Offset
- ais6 CNE(default {}) - Start Date/Time Offset Units
- ais7 NM(default "") - Duration
- ais8 CNE(default {}) - Duration Units
- ais9 CWE(default {}) - Allow Substitution Code
- ais10 CWE(default {}) - Filler Status Code
- ais11 CWE[](default [{}]) - Placer Supplemental Service Information
- ais12 CWE[](default [{}]) - Filler Supplemental Service Information
health.hl7v27: 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 CWE(default {}) - Allergen Type Code
- al13 CWE(default {}) - Allergen Code/Mnemonic/Description
- al14 CWE(default {}) - Allergy Severity Code
- al15 ST[](default [""]) - Allergy Reaction Code
health.hl7v27: 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.hl7v27: 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 CWE(default {}) - Schedule ID
- arq6 CWE(default {}) - Request Event Reason
- arq7 CWE(default {}) - Appointment Reason
- arq8 CWE(default {}) - Appointment Type
- arq9 NM(default "") - Appointment Duration
- arq10 CNE(default {}) - Appointment Duration Units
- arq11 DR[](default [{}]) - Requested Start Date/Time Range
- arq12 ST(default "") - Priority-ARQ
- 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
- arq24 EI[](default [{}]) - Placer Order Number
- arq25 EI[](default [{}]) - Filler Order Number
health.hl7v27: ARV
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 ARV_SEGMENT_NAME) - Segment Name
- arv1 SI(default "") - Set ID
- arv2 CNE(default {}) - Access Restriction Action Code
- arv3 CWE(default {}) - Access Restriction Value
- arv4 CWE[](default [{}]) - Access Restriction Reason
- arv5 ST[](default [""]) - Special Access Restriction Instructions
- arv6 DR(default {}) - Access Restriction Date Range
health.hl7v27: AUI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- aui1 ST(default "") - Authorization Number
- aui2 DT(default "") - Date
- aui3 ST(default "") - Source
health.hl7v27: 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 CWE(default {}) - Authorizing Payor, Plan ID
- aut2 CWE(default {}) - Authorizing Payor, Company ID
- aut3 ST(default "") - Authorizing Payor, Company Name
- aut4 DTM(default "") - Authorization Effective Date
- aut5 DTM(default "") - Authorization Expiration Date
- aut6 EI(default {}) - Authorization Identifier
- aut7 CP(default {}) - Reimbursement Limit
- aut8 CQ(default {}) - Requested Number of Treatments
- aut9 CQ(default {}) - Authorized Number of Treatments
- aut10 DTM(default "") - Process Date
- aut11 CWE[](default [{}]) - Requested Discipline(s)
- aut12 CWE[](default [{}]) - Authorized Discipline(s)
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- visit BAR_P01_VISIT[](default [{}]) - BAR_P01_VISIT Segment Group
health.hl7v27: BAR_P01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: 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.hl7v27: 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? -
- rol ROL[](default [{}]) -
- dg1 DG1[](default [{}]) -
- db1 DB1[](default [{}]) -
- nk1 NK1[](default [{}]) -
- drg DRG? -
- bar_p01_procedure BAR_P01_PROCEDURE[](default [{pr1:{}}]) -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- patient BAR_P02_PATIENT[](default [{pid:{}}]) - BAR_P02_PATIENT Segment Group
health.hl7v27: 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.hl7v27: BAR_P05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- visit BAR_P05_VISIT[](default [{}]) - BAR_P05_VISIT Segment Group
health.hl7v27: BAR_P05_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P05_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: BAR_P05_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P05_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v27: BAR_P05_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P05_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- acc ACC? -
- obx OBX[](default [{}]) -
- ub2 UB2? -
- gt1 GT1[](default [{}]) -
- ub1 UB1? -
- al1 AL1[](default [{}]) -
- bar_p05_procedure BAR_P05_PROCEDURE[](default [{pr1:{}}]) -
- pv1 PV1? -
- pv2 PV2? -
- rol ROL[](default [{}]) -
- dg1 DG1[](default [{}]) -
- rmi RMI? -
- db1 DB1[](default [{}]) -
- abs ABS? -
- nk1 NK1[](default [{}]) -
- drg DRG? -
- blc BLC[](default [{}]) -
- bar_p05_insurance BAR_P05_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- patient BAR_P06_PATIENT[](default [{pid:{}}]) - BAR_P06_PATIENT Segment Group
health.hl7v27: 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.hl7v27: BAR_P10
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P10_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pv1 PV1 - PV1 Segment
- dg1 DG1[](default []) - DG1 Segment
- gp1 GP1 - GP1 Segment
- procedure BAR_P10_PROCEDURE[](default [{pr1:{}}]) - BAR_P10_PROCEDURE Segment Group
health.hl7v27: BAR_P10_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P10_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gp2 GP2? -
- pr1 PR1 -
health.hl7v27: BAR_P12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BAR_P12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pv1 PV1 - PV1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- obx OBX? - OBX Segment
- procedure BAR_P12_PROCEDURE[](default [{pr1:{}}]) - BAR_P12_PROCEDURE Segment Group
health.hl7v27: BAR_P12_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default BAR_P12_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v27: 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 HD(default {}) - Batch Sending Application
- bhs4 HD(default {}) - Batch Sending Facility
- bhs5 HD(default {}) - Batch Receiving Application
- bhs6 HD(default {}) - Batch Receiving Facility
- bhs7 DTM(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
- bhs13 HD(default {}) - Batch Sending Network Address
- bhs14 HD(default {}) - Batch Receiving Network Address
health.hl7v27: BLC
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 BLC_SEGMENT_NAME) - Segment Name
- blc1 CWE(default {}) - Blood Product Code
- blc2 CQ(default {}) - Blood Amount
health.hl7v27: 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 CCD(default {}) - When to Charge
- blg2 ID(default "") - Charge Type
- blg3 CX(default {}) - Account ID
- blg4 CWE(default {}) - Charge Type Reason
health.hl7v27: BPO
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 BPO_SEGMENT_NAME) - Segment Name
- bpo1 SI(default "") - Set ID - BPO
- bpo2 CWE(default {}) - BP Universal Service Identifier
- bpo3 CWE[](default [{}]) - BP Processing Requirements
- bpo4 NM(default "") - BP Quantity
- bpo5 NM(default "") - BP Amount
- bpo6 CWE(default {}) - BP Units
- bpo7 DTM(default "") - BP Intended Use Date/Time
- bpo8 PL(default {}) - BP Intended Dispense From Location
- bpo9 XAD(default {}) - BP Intended Dispense From Address
- bpo10 DTM(default "") - BP Requested Dispense Date/Time
- bpo11 PL(default {}) - BP Requested Dispense To Location
- bpo12 XAD(default {}) - BP Requested Dispense To Address
- bpo13 CWE[](default [{}]) - BP Indication for Use
- bpo14 ID(default "") - BP Informed Consent Indicator
health.hl7v27: BPS_O29
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BPS_O29_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient BPS_O29_PATIENT[](default [{pid:{}}]) - BPS_O29_PATIENT Segment Group
- 'order BPS_O29_ORDER[](default [{orc:{}, bpo:{}}]) -
health.hl7v27: BPS_O29_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default BPS_O29_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpo BPO -
- orc ORC -
- bps_o29_product BPS_O29_PRODUCT[](default [{bpx:{}}]) -
- bps_o29_timing BPS_O29_TIMING[](default [{tq1:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: BPS_O29_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default BPS_O29_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bps_o29_patient_visit BPS_O29_PATIENT_VISIT? -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: BPS_O29_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default BPS_O29_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: BPS_O29_PRODUCT
Fields
- Fields Included from *SegmentComponent
- name string(default BPS_O29_PRODUCT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpx BPX -
- nte NTE[](default [{}]) -
health.hl7v27: BPS_O29_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default BPS_O29_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: BPX
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 BPX_SEGMENT_NAME) - Segment Name
- bpx1 SI(default "") - Set ID - BPX
- bpx2 CWE(default {}) - BP Dispense Status
- bpx3 ID(default "") - BP Status
- bpx4 DTM(default "") - BP Date/Time of Status
- bpx5 EI(default {}) - BC Donation ID
- bpx6 CNE(default {}) - BC Component
- bpx7 CNE(default {}) - BC Donation Type / Intended Use
- bpx8 CWE(default {}) - CP Commercial Product
- bpx9 XON(default {}) - CP Manufacturer
- bpx10 EI(default {}) - CP Lot Number
- bpx11 CNE(default {}) - BP Blood Group
- bpx12 CNE[](default [{}]) - BC Special Testing
- bpx13 DTM(default "") - BP Expiration Date/Time
- bpx14 NM(default "") - BP Quantity
- bpx15 NM(default "") - BP Amount
- bpx16 CWE(default {}) - BP Units
- bpx17 EI(default {}) - BP Unique ID
- bpx18 PL(default {}) - BP Actual Dispensed To Location
- bpx19 XAD(default {}) - BP Actual Dispensed To Address
- bpx20 XCN(default {}) - BP Dispensed to Receiver
- bpx21 XCN(default {}) - BP Dispensing Individual
health.hl7v27: BRP_O30
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BRP_O30_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response BRP_O30_RESPONSE[](default [{}]) - BRP_O30_RESPONSE Segment Group
health.hl7v27: BRP_O30_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default BRP_O30_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- brp_o30_timing BRP_O30_TIMING[](default [{tq1:{}}]) -
- bpo BPO? -
- orc ORC -
- bpx BPX[](default [{}]) -
health.hl7v27: BRP_O30_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default BRP_O30_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- brp_o30_order BRP_O30_ORDER[](default [{orc:{}}]) -
- pid PID -
health.hl7v27: BRP_O30_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default BRP_O30_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- brp_o30_patient BRP_O30_PATIENT? -
health.hl7v27: BRP_O30_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default BRP_O30_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: BRT_O32
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BRT_O32_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response BRT_O32_RESPONSE[](default [{}]) - BRT_O32_RESPONSE Segment Group
health.hl7v27: BRT_O32_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default BRT_O32_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpo BPO? -
- orc ORC -
- brt_o32_timing BRT_O32_TIMING[](default [{tq1:{}}]) -
- btx BTX[](default [{}]) -
health.hl7v27: BRT_O32_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default BRT_O32_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- brt_o32_order BRT_O32_ORDER[](default [{orc:{}}]) -
- pid PID? -
health.hl7v27: BRT_O32_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default BRT_O32_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: 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.hl7v27: BTS_O31
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default BTS_O31_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient BTS_O31_PATIENT[](default [{pid:{}}]) - BTS_O31_PATIENT Segment Group
- 'order BTS_O31_ORDER[](default [{orc:{}, bpo:{}}]) -
health.hl7v27: BTS_O31_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default BTS_O31_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpo BPO -
- orc ORC -
- bts_o31_product_status BTS_O31_PRODUCT_STATUS[](default [{btx:{}}]) -
- bts_o31_timing BTS_O31_TIMING[](default [{tq1:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: BTS_O31_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default BTS_O31_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- bts_o31_patient_visit BTS_O31_PATIENT_VISIT? -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: BTS_O31_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default BTS_O31_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: BTS_O31_PRODUCT_STATUS
Fields
- Fields Included from *SegmentComponent
- name string(default BTS_O31_PRODUCT_STATUS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- btx BTX -
- nte NTE[](default [{}]) -
health.hl7v27: BTS_O31_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default BTS_O31_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: BTX
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 BTX_SEGMENT_NAME) - Segment Name
- btx1 SI(default "") - Set ID - BTX
- btx2 EI(default {}) - BC Donation ID
- btx3 CNE(default {}) - BC Component
- btx4 CNE(default {}) - BC Blood Group
- btx5 CWE(default {}) - CP Commercial Product
- btx6 XON(default {}) - CP Manufacturer
- btx7 EI(default {}) - CP Lot Number
- btx8 NM(default "") - BP Quantity
- btx9 NM(default "") - BP Amount
- btx10 CWE(default {}) - BP Units
- btx11 CWE(default {}) - BP Transfusion/Disposition Status
- btx12 ID(default "") - BP Message Status
- btx13 DTM(default "") - BP Date/Time of Status
- btx14 XCN(default {}) - BP Transfusion Administrator
- btx15 XCN(default {}) - BP Transfusion Verifier
- btx16 DTM(default "") - BP Transfusion Start Date/Time of Status
- btx17 DTM(default "") - BP Transfusion End Date/Time of Status
- btx18 CWE[](default [{}]) - BP Adverse Reaction Type
- btx19 CWE(default {}) - BP Transfusion Interrupted Reason
health.hl7v27: CCD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ccd1 ID(default "") - Invocation Event
- ccd2 DTM(default "") - Date/time
health.hl7v27: CCF_I22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCF_I22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
health.hl7v27: CCI_I22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCI_I22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- nk1 NK1[](default []) - NK1 Segment
- rel REL[](default []) - REL Segment
- insurance CCI_I22_INSURANCE[](default [{in1:{}}]) - CCI_I22_INSURANCE Segment Group
- appointment_history CCI_I22_APPOINTMENT_HISTORY[](default [{sch:{}}]) - CCI_I22_APPOINTMENT_HISTORY Segment Group
- clinical_history CCI_I22_CLINICAL_HISTORY[](default [{orc:{}}]) - CCI_I22_CLINICAL_HISTORY Segment Group
- patient_visits CCI_I22_PATIENT_VISITS[](default [{pv1:{}}]) - CCI_I22_PATIENT_VISITS Segment Group
- medication_history CCI_I22_MEDICATION_HISTORY[](default [{orc:{}}]) - CCI_I22_MEDICATION_HISTORY Segment Group
- problem CCI_I22_PROBLEM[](default [{prb:{}}]) - CCI_I22_PROBLEM Segment Group
- goal CCI_I22_GOAL[](default [{gol:{}}]) - CCI_I22_GOAL Segment Group
- pathway CCI_I22_PATHWAY[](default [{pth:{}}]) - CCI_I22_PATHWAY Segment Group
health.hl7v27: CCI_I22_APPOINTMENT_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_APPOINTMENT_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cci_i22_resources CCI_I22_RESOURCES[](default [{rgs:{}}]) -
- sch SCH -
health.hl7v27: CCI_I22_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- cci_i22_clinical_history_detail CCI_I22_CLINICAL_HISTORY_DETAIL[](default [{cci_i22_clinical_history_object:{}}]) -
- cti CTI[](default [{}]) -
- cci_i22_role_clinical_history CCI_I22_ROLE_CLINICAL_HISTORY[](default [{cci_i22_role_clinical_history_object:{}}]) -
health.hl7v27: CCI_I22_CLINICAL_HISTORY_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cci_i22_clinical_history_object CCI_I22_CLINICAL_HISTORY_OBJECT -
- obx OBX[](default [{}]) -
health.hl7v27: CCI_I22_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCI_I22_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- cci_i22_role_goal CCI_I22_ROLE_GOAL[](default [{cci_i22_role_goal_object:{}}]) -
health.hl7v27: CCI_I22_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: CCI_I22_MEDICATION_ADMINISTRATION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: CCI_I22_MEDICATION_ENCODING_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: CCI_I22_MEDICATION_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_MEDICATION_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- cci_i22_medication_order_detail CCI_I22_MEDICATION_ORDER_DETAIL? -
- cci_i22_medication_administration_detail CCI_I22_MEDICATION_ADMINISTRATION_DETAIL[](default [{rxr:{}}]) -
- cti CTI[](default [{}]) -
- cci_i22_medication_encoding_detail CCI_I22_MEDICATION_ENCODING_DETAIL? -
health.hl7v27: CCI_I22_MEDICATION_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxo RXO -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: CCI_I22_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cci_i22_role_pathway CCI_I22_ROLE_PATHWAY[](default [{cci_i22_role_pathway_object:{}}]) -
- obx OBX[](default [{}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCI_I22_PATIENT_VISITS
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_PATIENT_VISITS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: CCI_I22_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- obx OBX[](default [{}]) -
- 'var 'VAR[](default [{}]) -
- cci_i22_role_problem CCI_I22_ROLE_PROBLEM[](default [{cci_i22_role_problem_object:{}}]) -
health.hl7v27: CCI_I22_RESOURCE_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_RESOURCE_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- cci_i22_resource_object CCI_I22_RESOURCE_OBJECT -
health.hl7v27: CCI_I22_RESOURCE_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_RESOURCE_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCI_I22_RESOURCES
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_RESOURCES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rgs RGS -
- cci_i22_resource_detail CCI_I22_RESOURCE_DETAIL[](default [{cci_i22_resource_object:{}}]) -
health.hl7v27: CCI_I22_ROLE_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cci_i22_role_clinical_history_object CCI_I22_ROLE_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCI_I22_ROLE_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCI_I22_ROLE_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cci_i22_role_goal_object CCI_I22_ROLE_GOAL_OBJECT -
health.hl7v27: CCI_I22_ROLE_GOAL_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCI_I22_ROLE_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cci_i22_role_pathway_object CCI_I22_ROLE_PATHWAY_OBJECT -
health.hl7v27: CCI_I22_ROLE_PATHWAY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCI_I22_ROLE_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cci_i22_role_problem_object CCI_I22_ROLE_PROBLEM_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCI_I22_ROLE_PROBLEM_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCI_I22_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCM_I21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- nk1 NK1[](default []) - NK1 Segment
- rel REL[](default []) - REL Segment
- insurance CCM_I21_INSURANCE[](default [{in1:{}}]) - CCM_I21_INSURANCE Segment Group
- appointment_history CCM_I21_APPOINTMENT_HISTORY[](default [{sch:{}}]) - CCM_I21_APPOINTMENT_HISTORY Segment Group
- clinical_history CCM_I21_CLINICAL_HISTORY[](default [{orc:{}}]) - CCM_I21_CLINICAL_HISTORY Segment Group
- patient_visits CCM_I21_PATIENT_VISITS[](default [{pv1:{}}]) - CCM_I21_PATIENT_VISITS Segment Group
- medication_history CCM_I21_MEDICATION_HISTORY[](default [{orc:{}}]) - CCM_I21_MEDICATION_HISTORY Segment Group
- problem CCM_I21_PROBLEM[](default [{prb:{}}]) - CCM_I21_PROBLEM Segment Group
- goal CCM_I21_GOAL[](default [{gol:{}}]) - CCM_I21_GOAL Segment Group
- pathway CCM_I21_PATHWAY[](default [{pth:{}}]) - CCM_I21_PATHWAY Segment Group
health.hl7v27: CCM_I21_APPOINTMENT_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_APPOINTMENT_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_resources CCM_I21_RESOURCES[](default [{rgs:{}}]) -
- sch SCH -
health.hl7v27: CCM_I21_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccm_i21_clinical_history_detail CCM_I21_CLINICAL_HISTORY_DETAIL[](default [{ccm_i21_clinical_history_object:{}}]) -
- ccm_i21_role_clinical_history CCM_I21_ROLE_CLINICAL_HISTORY[](default [{ccm_i21_role_clinical_history_object:{}}]) -
- cti CTI[](default [{}]) -
health.hl7v27: CCM_I21_CLINICAL_HISTORY_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- ccm_i21_clinical_history_object CCM_I21_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCM_I21_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- ccm_i21_role_goal CCM_I21_ROLE_GOAL[](default [{ccm_i21_role_goal_object:{}}]) -
health.hl7v27: CCM_I21_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: CCM_I21_MEDICATION_ADMINISTRATION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: CCM_I21_MEDICATION_ENCODING_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: CCM_I21_MEDICATION_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_MEDICATION_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_medication_encoding_detail CCM_I21_MEDICATION_ENCODING_DETAIL? -
- orc ORC -
- ccm_i21_medication_order_detail CCM_I21_MEDICATION_ORDER_DETAIL? -
- cti CTI[](default [{}]) -
- ccm_i21_medication_administration_detail CCM_I21_MEDICATION_ADMINISTRATION_DETAIL[](default [{rxr:{}}]) -
health.hl7v27: CCM_I21_MEDICATION_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxo RXO -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: CCM_I21_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- ccm_i21_role_pathway CCM_I21_ROLE_PATHWAY[](default [{ccm_i21_role_pathway_object:{}}]) -
health.hl7v27: CCM_I21_PATIENT_VISITS
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_PATIENT_VISITS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: CCM_I21_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- obx OBX[](default [{}]) -
- 'var 'VAR[](default [{}]) -
- ccm_i21_role_problem CCM_I21_ROLE_PROBLEM[](default [{ccm_i21_role_problem_object:{}}]) -
health.hl7v27: CCM_I21_RESOURCE_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_RESOURCE_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_resource_object CCM_I21_RESOURCE_OBJECT -
- obx OBX[](default [{}]) -
health.hl7v27: CCM_I21_RESOURCE_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_RESOURCE_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21_RESOURCES
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_RESOURCES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_resource_detail CCM_I21_RESOURCE_DETAIL[](default [{ccm_i21_resource_object:{}}]) -
- rgs RGS -
health.hl7v27: CCM_I21_ROLE_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_role_clinical_history_object CCM_I21_ROLE_CLINICAL_HISTORY_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCM_I21_ROLE_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21_ROLE_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccm_i21_role_goal_object CCM_I21_ROLE_GOAL_OBJECT -
health.hl7v27: CCM_I21_ROLE_GOAL_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21_ROLE_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_role_pathway_object CCM_I21_ROLE_PATHWAY_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCM_I21_ROLE_PATHWAY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCM_I21_ROLE_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccm_i21_role_problem_object CCM_I21_ROLE_PROBLEM_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCM_I21_ROLE_PROBLEM_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCM_I21_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ccp1 NM(default "") - Channel Calibration Sensitivity Correction Factor
- ccp2 NM(default "") - Channel Calibration Baseline
- ccp3 NM(default "") - Channel Calibration Time Skew
health.hl7v27: CCQ_I19
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCQ_I19_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- rf1 RF1 - RF1 Segment
- rel REL[](default []) - REL Segment
- provider_contact CCQ_I19_PROVIDER_CONTACT[](default [{prd:{}}]) - CCQ_I19_PROVIDER_CONTACT Segment Group
health.hl7v27: CCQ_I19_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default CCQ_I19_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: CCR_I16
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCR_I16_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- rf1 RF1[](default []) - RF1 Segment
- nk1 NK1[](default []) - NK1 Segment
- rel REL[](default []) - REL Segment
- provider_contact CCR_I16_PROVIDER_CONTACT[](default [{prd:{}}]) - CCR_I16_PROVIDER_CONTACT Segment Group
- clinical_order CCR_I16_CLINICAL_ORDER[](default [{orc:{}}]) - CCR_I16_CLINICAL_ORDER Segment Group
- patient CCR_I16_PATIENT[](default [{pid:{}}]) - CCR_I16_PATIENT Segment Group
- insurance CCR_I16_INSURANCE[](default [{in1:{}}]) - CCR_I16_INSURANCE Segment Group
- appointment_history CCR_I16_APPOINTMENT_HISTORY[](default [{sch:{}}]) - CCR_I16_APPOINTMENT_HISTORY Segment Group
- clinical_history CCR_I16_CLINICAL_HISTORY[](default [{orc:{}}]) - CCR_I16_CLINICAL_HISTORY Segment Group
- patient_visits CCR_I16_PATIENT_VISITS[](default [{pv1:{}}]) - CCR_I16_PATIENT_VISITS Segment Group
- medication_history CCR_I16_MEDICATION_HISTORY[](default [{orc:{}}]) - CCR_I16_MEDICATION_HISTORY Segment Group
- problem CCR_I16_PROBLEM[](default [{prb:{}}]) - CCR_I16_PROBLEM Segment Group
- goal CCR_I16_GOAL[](default [{gol:{}}]) - CCR_I16_GOAL Segment Group
- pathway CCR_I16_PATHWAY[](default [{pth:{}}]) - CCR_I16_PATHWAY Segment Group
health.hl7v27: CCR_I16_APPOINTMENT_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_APPOINTMENT_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_resources CCR_I16_RESOURCES[](default [{rgs:{}}]) -
- sch SCH -
health.hl7v27: CCR_I16_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccr_i16_clinical_history_detail CCR_I16_CLINICAL_HISTORY_DETAIL[](default [{ccr_i16_clinical_history_object:{}}]) -
- cti CTI[](default [{}]) -
- ccr_i16_role_clinical_history CCR_I16_ROLE_CLINICAL_HISTORY[](default [{ccr_i16_role_clinical_history_object:{}}]) -
health.hl7v27: CCR_I16_CLINICAL_HISTORY_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- ccr_i16_clinical_history_object CCR_I16_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCR_I16_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_CLINICAL_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccr_i16_clinical_order_timing CCR_I16_CLINICAL_ORDER_TIMING[](default [{tq1:{}}]) -
- ccr_i16_clinical_order_detail CCR_I16_CLINICAL_ORDER_DETAIL[](default [{ccr_i16_clinical_order_object:{}}]) -
- cti CTI[](default [{}]) -
health.hl7v27: CCR_I16_CLINICAL_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_clinical_order_object CCR_I16_CLINICAL_ORDER_OBJECT -
- obx OBX[](default [{}]) -
health.hl7v27: CCR_I16_CLINICAL_ORDER_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_ORDER_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_CLINICAL_ORDER_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_CLINICAL_ORDER_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: CCR_I16_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- ccr_i16_role_goal CCR_I16_ROLE_GOAL[](default [{ccr_i16_role_goal_object:{}}]) -
health.hl7v27: CCR_I16_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: CCR_I16_MEDICATION_ADMINISTRATION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: CCR_I16_MEDICATION_ENCODING_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: CCR_I16_MEDICATION_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_MEDICATION_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccr_i16_medication_encoding_detail CCR_I16_MEDICATION_ENCODING_DETAIL? -
- ccr_i16_medication_order_detail CCR_I16_MEDICATION_ORDER_DETAIL? -
- cti CTI[](default [{}]) -
- ccr_i16_medication_administration_detail CCR_I16_MEDICATION_ADMINISTRATION_DETAIL[](default [{rxr:{}}]) -
health.hl7v27: CCR_I16_MEDICATION_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxo RXO -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: CCR_I16_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_role_pathway CCR_I16_ROLE_PATHWAY[](default [{ccr_i16_role_pathway_object:{}}]) -
- obx OBX[](default [{}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCR_I16_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- pd1 PD1? -
health.hl7v27: CCR_I16_PATIENT_VISITS
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_PATIENT_VISITS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: CCR_I16_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_role_problem CCR_I16_ROLE_PROBLEM[](default [{ccr_i16_role_problem_object:{}}]) -
- prb PRB -
- obx OBX[](default [{}]) -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCR_I16_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: CCR_I16_RESOURCE_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_RESOURCE_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- ccr_i16_resource_object CCR_I16_RESOURCE_OBJECT -
health.hl7v27: CCR_I16_RESOURCE_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_RESOURCE_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_RESOURCES
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_RESOURCES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_resource_detail CCR_I16_RESOURCE_DETAIL[](default [{ccr_i16_resource_object:{}}]) -
- rgs RGS -
health.hl7v27: CCR_I16_ROLE_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccr_i16_role_clinical_history_object CCR_I16_ROLE_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCR_I16_ROLE_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_ROLE_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccr_i16_role_goal_object CCR_I16_ROLE_GOAL_OBJECT -
health.hl7v27: CCR_I16_ROLE_GOAL_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_ROLE_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccr_i16_role_pathway_object CCR_I16_ROLE_PATHWAY_OBJECT -
health.hl7v27: CCR_I16_ROLE_PATHWAY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCR_I16_ROLE_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccr_i16_role_problem_object CCR_I16_ROLE_PROBLEM_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCR_I16_ROLE_PROBLEM_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCR_I16_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CCU_I20_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- rf1 RF1 - RF1 Segment
- nk1 NK1[](default []) - NK1 Segment
- rel REL[](default []) - REL Segment
- provider_contact CCU_I20_PROVIDER_CONTACT[](default [{prd:{}}]) - CCU_I20_PROVIDER_CONTACT Segment Group
- patient CCU_I20_PATIENT[](default [{pid:{}}]) - CCU_I20_PATIENT Segment Group
- insurance CCU_I20_INSURANCE[](default [{in1:{}}]) - CCU_I20_INSURANCE Segment Group
- appointment_history CCU_I20_APPOINTMENT_HISTORY[](default [{sch:{}}]) - CCU_I20_APPOINTMENT_HISTORY Segment Group
- clinical_history CCU_I20_CLINICAL_HISTORY[](default [{orc:{}}]) - CCU_I20_CLINICAL_HISTORY Segment Group
- patient_visits CCU_I20_PATIENT_VISITS[](default [{pv1:{}}]) - CCU_I20_PATIENT_VISITS Segment Group
- medication_history CCU_I20_MEDICATION_HISTORY[](default [{orc:{}}]) - CCU_I20_MEDICATION_HISTORY Segment Group
- problem CCU_I20_PROBLEM[](default [{prb:{}}]) - CCU_I20_PROBLEM Segment Group
- goal CCU_I20_GOAL[](default [{gol:{}}]) - CCU_I20_GOAL Segment Group
- pathway CCU_I20_PATHWAY[](default [{pth:{}}]) - CCU_I20_PATHWAY Segment Group
health.hl7v27: CCU_I20_APPOINTMENT_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_APPOINTMENT_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccu_i20_resources CCU_I20_RESOURCES[](default [{rgs:{}}]) -
- sch SCH -
health.hl7v27: CCU_I20_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccu_i20_clinical_history_detail CCU_I20_CLINICAL_HISTORY_DETAIL[](default [{ccu_i20_clinical_history_object:{}}]) -
- ccu_i20_role_clinical_history CCU_I20_ROLE_CLINICAL_HISTORY[](default [{ccu_i20_role_clinical_history_object:{}}]) -
- cti CTI[](default [{}]) -
health.hl7v27: CCU_I20_CLINICAL_HISTORY_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- ccu_i20_clinical_history_object CCU_I20_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCU_I20_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccu_i20_role_goal CCU_I20_ROLE_GOAL[](default [{ccu_i20_role_goal_object:{}}]) -
- obx OBX[](default [{}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCU_I20_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: CCU_I20_MEDICATION_ADMINISTRATION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: CCU_I20_MEDICATION_ENCODING_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: CCU_I20_MEDICATION_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_MEDICATION_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ccu_i20_medication_administration_detail CCU_I20_MEDICATION_ADMINISTRATION_DETAIL[](default [{rxr:{}}]) -
- ccu_i20_medication_encoding_detail CCU_I20_MEDICATION_ENCODING_DETAIL? -
- cti CTI[](default [{}]) -
- ccu_i20_medication_order_detail CCU_I20_MEDICATION_ORDER_DETAIL? -
health.hl7v27: CCU_I20_MEDICATION_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxo RXO -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: CCU_I20_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- ccu_i20_role_pathway CCU_I20_ROLE_PATHWAY[](default [{ccu_i20_role_pathway_object:{}}]) -
health.hl7v27: CCU_I20_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- pd1 PD1? -
health.hl7v27: CCU_I20_PATIENT_VISITS
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_PATIENT_VISITS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: CCU_I20_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- obx OBX[](default [{}]) -
- 'var 'VAR[](default [{}]) -
- ccu_i20_role_problem CCU_I20_ROLE_PROBLEM[](default [{ccu_i20_role_problem_object:{}}]) -
health.hl7v27: CCU_I20_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: CCU_I20_RESOURCE_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_RESOURCE_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- ccu_i20_resource_object CCU_I20_RESOURCE_OBJECT -
health.hl7v27: CCU_I20_RESOURCE_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_RESOURCE_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20_RESOURCES
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_RESOURCES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccu_i20_resource_detail CCU_I20_RESOURCE_DETAIL[](default [{ccu_i20_resource_object:{}}]) -
- rgs RGS -
health.hl7v27: CCU_I20_ROLE_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccu_i20_role_clinical_history_object CCU_I20_ROLE_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CCU_I20_ROLE_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20_ROLE_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ccu_i20_role_goal_object CCU_I20_ROLE_GOAL_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CCU_I20_ROLE_GOAL_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20_ROLE_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccu_i20_role_pathway_object CCU_I20_ROLE_PATHWAY_OBJECT -
health.hl7v27: CCU_I20_ROLE_PATHWAY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CCU_I20_ROLE_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- ccu_i20_role_problem_object CCU_I20_ROLE_PROBLEM_OBJECT -
health.hl7v27: CCU_I20_ROLE_PROBLEM_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CCU_I20_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cd1 WVI(default {}) - Channel Identifier
- cd2 WVS(default {}) - Waveform Source
- cd3 CSU(default {}) - Channel Sensitivity and Units
- cd4 CCP(default {}) - Channel Calibration Parameters
- cd5 NM(default "") - Channel Sampling Frequency
- cd6 NR(default {}) - Minimum and Maximum Data Values
health.hl7v27: 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 CWE(default {}) - Primary Key Value - CDM
- cdm2 CWE[](default [{}]) - Charge Code Alias
- cdm3 ST(default "") - Charge Description Short
- cdm4 ST(default "") - Charge Description Long
- cdm5 CWE(default {}) - Description Override Indicator
- cdm6 CWE[](default [{}]) - Exploding Charges
- cdm7 CNE[](default [{}]) - Procedure Code
- cdm8 ID(default "") - Active/Inactive Flag
- cdm9 CWE[](default [{}]) - Inventory Number
- cdm10 NM(default "") - Resource Load
- cdm11 CX[](default [{}]) - Contract Number
- cdm12 XON[](default [{}]) - Contract Organization
- cdm13 ID(default "") - Room Fee Indicator
health.hl7v27: CER
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 CER_SEGMENT_NAME) - Segment Name
- cer1 SI(default "") - Set ID - CER
- cer2 ST(default "") - Serial Number
- cer3 ST(default "") - Version
- cer4 XON(default {}) - Granting Authority
- cer5 XCN(default {}) - Issuing Authority
- cer6 ED(default {}) - Signature
- cer7 ID(default "") - Granting Country
- cer8 CWE(default {}) - Granting State/Province
- cer9 CWE(default {}) - Granting County/Parish
- cer10 CWE(default {}) - Certificate Type
- cer11 CWE(default {}) - Certificate Domain
- cer12 EI(default {}) - Subject ID
- cer13 ST(default "") - Subject Name
- cer14 CWE[](default [{}]) - Subject Directory Attribute Extension
- cer15 CWE(default {}) - Subject Public Key Info
- cer16 CWE(default {}) - Authority Key Identifier
- cer17 ID(default "") - Basic Constraint
- cer18 CWE[](default [{}]) - CRL Distribution Point
- cer19 ID(default "") - Jurisdiction Country
- cer20 CWE(default {}) - Jurisdiction State/Province
- cer21 CWE(default {}) - Jurisdiction County/Parish
- cer22 CWE[](default [{}]) - Jurisdiction Breadth
- cer23 DTM(default "") - Granting Date
- cer24 DTM(default "") - Issuing Date
- cer25 DTM(default "") - Activation Date
- cer26 DTM(default "") - Inactivation Date
- cer27 DTM(default "") - Expiration Date
- cer28 DTM(default "") - Renewal Date
- cer29 DTM(default "") - Revocation Date
- cer30 CWE(default {}) - Revocation Reason Code
- cer31 CWE(default {}) - Certificate Status Code
health.hl7v27: CF
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cf1 ST(default "") - Identifier
- cf2 FT(default "") - Formatted Text
- cf3 ID(default "") - Name of Coding System
- cf4 ST(default "") - Alternate Identifier
- cf5 FT(default "") - Alternate Formatted Text
- cf6 ID(default "") - Name of Alternate Coding System
- cf7 ST(default "") - Coding System Version ID
- cf8 ST(default "") - Alternate Coding System Version ID
- cf9 ST(default "") - Original Text
- cf10 ST(default "") - Second Alternate Identifier
- cf11 FT(default "") - Second Alternate Formatted Text
- cf12 ID(default "") - Name of Second Alternate Coding System
- cf13 ST(default "") - Second Alternate Coding System Version ID
- cf14 ST(default "") - Coding System OID
- cf15 ST(default "") - Value Set OID
- cf16 DTM(default "") - Value Set Version ID
- cf17 ST(default "") - Alternate Coding System OID
- cf18 ST(default "") - Alternate Value Set OID
- cf19 DTM(default "") - Alternate Value Set Version ID
- cf20 ST(default "") - Second Alternate Coding System OID
- cf21 ST(default "") - Second Alternate Value Set OID
- cf22 DTM(default "") - Second Alternate Value Set Version ID
health.hl7v27: 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 "") - Set ID - CM0
- cm02 EI(default {}) - Sponsor Study ID
- cm03 EI(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 Telephone Number
- cm011 XAD[](default [{}]) - Contact's Address
health.hl7v27: 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 "") - Set ID - CM1
- cm12 CWE(default {}) - Study Phase Identifier
- cm13 ST(default "") - Description of Study Phase
health.hl7v27: 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 "") - Set ID- CM2
- cm22 CWE(default {}) - Scheduled Time Point
- cm23 ST(default "") - Description of Time Point
- cm24 CWE(default {}) - Events Scheduled This Time Point
health.hl7v27: CNE
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cne1 ST(default "") - Identifier
- cne2 ST(default "") - Text
- cne3 ID(default "") - Name of Coding System
- cne4 ST(default "") - Alternate Identifier
- cne5 ST(default "") - Alternate Text
- cne6 ID(default "") - Name of Alternate Coding System
- cne7 ST(default "") - Coding System Version ID
- cne8 ST(default "") - Alternate Coding System Version ID
- cne9 ST(default "") - Original Text
- cne10 ST(default "") - Second Alternate Identifier
- cne11 ST(default "") - Second Alternate Text
- cne12 ID(default "") - Name of Second Alternate Coding System
- cne13 ST(default "") - Second Alternate Coding System Version ID
- cne14 ST(default "") - Coding System OID
- cne15 ST(default "") - Value Set OID
- cne16 DTM(default "") - Value Set Version ID
- cne17 ST(default "") - Alternate Coding System OID
- cne18 ST(default "") - Alternate Value Set OID
- cne19 DTM(default "") - Alternate Value Set Version ID
- cne20 ST(default "") - Second Alternate Coding System OID
- cne21 ST(default "") - Second Alternate Value Set OID
- cne22 DTM(default "") - Second Alternate Value Set Version ID
health.hl7v27: CNN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cnn1 ST(default "") - ID Number
- cnn2 ST(default "") - Family Name
- cnn3 ST(default "") - Given Name
- cnn4 ST(default "") - Second and Further Given Names or Initials Thereof
- cnn5 ST(default "") - Suffix (e.g., JR or III)
- cnn6 ST(default "") - Prefix (e.g., DR)
- cnn7 IS(default "") - Degree (e.g., MD)
- cnn8 IS(default "") - Source Table
- cnn9 IS(default "") - Assigning Authority - Namespace ID
- cnn10 ST(default "") - Assigning Authority - Universal ID
- cnn11 ID(default "") - Assigning Authority - Universal ID Type
health.hl7v27: CNS
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 CNS_SEGMENT_NAME) - Segment Name
- cns1 NM(default "") - Starting Notification Reference Number
- cns2 NM(default "") - Ending Notification Reference Number
- cns3 DTM(default "") - Starting Notification Date/Time
- cns4 DTM(default "") - Ending Notification Date/Time
- cns5 CWE(default {}) - Starting Notification Code
- cns6 CWE(default {}) - Ending Notification Code
health.hl7v27: CON
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 CON_SEGMENT_NAME) - Segment Name
- con1 SI(default "") - Set ID - CON
- con2 CWE(default {}) - Consent Type
- con3 ST(default "") - Consent Form ID and Version
- con4 EI(default {}) - Consent Form Number
- con5 FT[](default [""]) - Consent Text
- con6 FT[](default [""]) - Subject-specific Consent Text
- con7 FT[](default [""]) - Consent Background Information
- con8 FT[](default [""]) - Subject-specific Consent Background Text
- con9 FT[](default [""]) - Consenter-imposed limitations
- con10 CNE(default {}) - Consent Mode
- con11 CNE(default {}) - Consent Status
- con12 DTM(default "") - Consent Discussion Date/Time
- con13 DTM(default "") - Consent Decision Date/Time
- con14 DTM(default "") - Consent Effective Date/Time
- con15 DTM(default "") - Consent End Date/Time
- con16 ID(default "") - Subject Competence Indicator
- con17 ID(default "") - Translator Assistance Indicator
- con18 CWE(default {}) - Language Translated To
- con19 ID(default "") - Informational Material Supplied Indicator
- con20 CWE(default {}) - Consent Bypass Reason
- con21 ID(default "") - Consent Disclosure Level
- con22 CWE(default {}) - Consent Non-disclosure Reason
- con23 CWE(default {}) - Non-subject Consenter Reason
- con24 XPN[](default [{}]) - Consenter ID
- con25 CWE[](default [{}]) - Relationship to Subject
health.hl7v27: 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 CWE(default {}) - Range Units
- cp6 ID(default "") - Range Type
health.hl7v27: CQ
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cq1 NM(default "") - Quantity
- cq2 CWE(default {}) - Units
health.hl7v27: CQU_I19
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default CQU_I19_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- rf1 RF1 - RF1 Segment
- nk1 NK1[](default []) - NK1 Segment
- rel REL[](default []) - REL Segment
- provider_contact CQU_I19_PROVIDER_CONTACT[](default [{prd:{}}]) - CQU_I19_PROVIDER_CONTACT Segment Group
- patient CQU_I19_PATIENT[](default [{pid:{}}]) - CQU_I19_PATIENT Segment Group
- insurance CQU_I19_INSURANCE[](default [{in1:{}}]) - CQU_I19_INSURANCE Segment Group
- appointment_history CQU_I19_APPOINTMENT_HISTORY[](default [{sch:{}}]) - CQU_I19_APPOINTMENT_HISTORY Segment Group
- clinical_history CQU_I19_CLINICAL_HISTORY[](default [{orc:{}}]) - CQU_I19_CLINICAL_HISTORY Segment Group
- patient_visits CQU_I19_PATIENT_VISITS[](default [{pv1:{}}]) - CQU_I19_PATIENT_VISITS Segment Group
- medication_history CQU_I19_MEDICATION_HISTORY[](default [{orc:{}}]) - CQU_I19_MEDICATION_HISTORY Segment Group
- problem CQU_I19_PROBLEM[](default [{prb:{}}]) - CQU_I19_PROBLEM Segment Group
- goal CQU_I19_GOAL[](default [{gol:{}}]) - CQU_I19_GOAL Segment Group
- pathway CQU_I19_PATHWAY[](default [{pth:{}}]) - CQU_I19_PATHWAY Segment Group
health.hl7v27: CQU_I19_APPOINTMENT_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_APPOINTMENT_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cqu_i19_resources CQU_I19_RESOURCES[](default [{rgs:{}}]) -
- sch SCH -
health.hl7v27: CQU_I19_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- cti CTI[](default [{}]) -
- cqu_i19_clinical_history_detail CQU_I19_CLINICAL_HISTORY_DETAIL[](default [{cqu_i19_clinical_history_object:{}}]) -
- cqu_i19_role_clinical_history CQU_I19_ROLE_CLINICAL_HISTORY[](default [{cqu_i19_role_clinical_history_object:{}}]) -
health.hl7v27: CQU_I19_CLINICAL_HISTORY_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_CLINICAL_HISTORY_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- cqu_i19_clinical_history_object CQU_I19_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CQU_I19_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CQU_I19_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_goal CQU_I19_ROLE_GOAL[](default [{cqu_i19_role_goal_object:{}}]) -
health.hl7v27: CQU_I19_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: CQU_I19_MEDICATION_ADMINISTRATION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_MEDICATION_ADMINISTRATION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: CQU_I19_MEDICATION_ENCODING_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_MEDICATION_ENCODING_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: CQU_I19_MEDICATION_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_MEDICATION_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cqu_i19_medication_administration_detail CQU_I19_MEDICATION_ADMINISTRATION_DETAIL[](default [{rxr:{}}]) -
- orc ORC -
- cqu_i19_medication_order_detail CQU_I19_MEDICATION_ORDER_DETAIL? -
- cti CTI[](default [{}]) -
- cqu_i19_medication_encoding_detail CQU_I19_MEDICATION_ENCODING_DETAIL? -
health.hl7v27: CQU_I19_MEDICATION_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_MEDICATION_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- rxo RXO -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: CQU_I19_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_pathway CQU_I19_ROLE_PATHWAY[](default [{cqu_i19_role_pathway_object:{}}]) -
health.hl7v27: CQU_I19_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- pd1 PD1? -
health.hl7v27: CQU_I19_PATIENT_VISITS
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_PATIENT_VISITS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: CQU_I19_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- obx OBX[](default [{}]) -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_problem CQU_I19_ROLE_PROBLEM[](default [{cqu_i19_role_problem_object:{}}]) -
health.hl7v27: CQU_I19_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: CQU_I19_RESOURCE_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_RESOURCE_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX[](default [{}]) -
- cqu_i19_resource_object CQU_I19_RESOURCE_OBJECT -
health.hl7v27: CQU_I19_RESOURCE_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_RESOURCE_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CQU_I19_RESOURCES
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_RESOURCES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cqu_i19_resource_detail CQU_I19_RESOURCE_DETAIL[](default [{cqu_i19_resource_object:{}}]) -
- rgs RGS -
health.hl7v27: CQU_I19_ROLE_CLINICAL_HISTORY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_CLINICAL_HISTORY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_clinical_history_object CQU_I19_ROLE_CLINICAL_HISTORY_OBJECT -
health.hl7v27: CQU_I19_ROLE_CLINICAL_HISTORY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_CLINICAL_HISTORY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CQU_I19_ROLE_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_goal_object CQU_I19_ROLE_GOAL_OBJECT -
health.hl7v27: CQU_I19_ROLE_GOAL_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_GOAL_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CQU_I19_ROLE_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cqu_i19_role_pathway_object CQU_I19_ROLE_PATHWAY_OBJECT -
- 'var 'VAR[](default [{}]) -
health.hl7v27: CQU_I19_ROLE_PATHWAY_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_PATHWAY_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: CQU_I19_ROLE_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- cqu_i19_role_problem_object CQU_I19_ROLE_PROBLEM_OBJECT -
health.hl7v27: CQU_I19_ROLE_PROBLEM_OBJECT
Fields
- Fields Included from *SegmentComponent
- name string(default CQU_I19_ROLE_PROBLEM_OBJECT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- patient CRM_C01_PATIENT[](default [{pid:{}, csr:{}}]) - CRM_C01_PATIENT Segment Group
health.hl7v27: CRM_C01_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CRM_C01_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- crm_c01_patient_visit CRM_C01_PATIENT_VISIT? -
- csp CSP[](default [{}]) -
- prt PRT[](default [{}]) -
- csr CSR -
- pid PID -
health.hl7v27: CRM_C01_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default CRM_C01_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
health.hl7v27: 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 CWE(default {}) - Study Phase Identifier
- csp2 DTM(default "") - Date/time Study Phase Began
- csp3 DTM(default "") - Date/time Study Phase Ended
- csp4 CWE(default {}) - Study Phase Evaluability
health.hl7v27: 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 CWE(default {}) - Institution Registering the Patient
- csr4 CX(default {}) - Sponsor Patient ID
- csr5 CX(default {}) - Alternate Patient ID - CSR
- csr6 DTM(default "") - Date/Time of Patient Study Registration
- csr7 XCN[](default [{}]) - Person Performing Study Registration
- csr8 XCN[](default [{}]) - Study Authorizing Provider
- csr9 DTM(default "") - Date/Time Patient Study Consent Signed
- csr10 CWE(default {}) - Patient Study Eligibility Status
- csr11 DTM(default "") - Study Randomization Date/time
- csr12 CWE(default {}) - Randomized Study Arm
- csr13 CWE(default {}) - Stratum for Study Randomization
- csr14 CWE(default {}) - Patient Evaluability Status
- csr15 DTM(default "") - Date/Time Ended Study
- csr16 CWE(default {}) - Reason Ended Study
health.hl7v27: 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 CWE(default {}) - Study Scheduled Time Point
- css2 DTM(default "") - Study Scheduled Patient Time Point
- css3 CWE(default {}) - Study Quality Control Codes
health.hl7v27: CSU
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- csu1 NM(default "") - Channel Sensitivity
- csu2 ST(default "") - Unit of Measure Identifier
- csu3 ST(default "") - Unit of Measure Description
- csu4 ID(default "") - Unit of Measure Coding System
- csu5 ST(default "") - Alternate Unit of Measure Identifier
- csu6 ST(default "") - Alternate Unit of Measure Description
- csu7 ID(default "") - Alternate Unit of Measure Coding System
- csu8 ST(default "") - Unit of Measure Coding System Version ID
- csu9 ST(default "") - Alternate Unit of Measure Coding System Version ID
- csu10 ST(default "") - Original Text
- csu11 ST(default "") - Second Alternate Unit of Measure Identifier
- csu12 ST(default "") - Second Alternate Unit of Measure Text
- csu13 ID(default "") - Name of Second Alternate Unit of Measure Coding Sy
- csu14 ST(default "") - Second Alternate Unit of Measure Coding System Ver
- csu15 ST(default "") - Unit of Measure Coding System OID
- csu16 ST(default "") - Unit of Measure Value Set OID
- csu17 DTM(default "") - Unit of Measure Value Set Version ID
- csu18 ST(default "") - Alternate Unit of Measure Coding System OID
- csu19 ST(default "") - Alternate Unit of Measure Value Set OID
- csu20 DTM(default "") - Alternate Unit of Measure Value Set Version ID
- csu21 ST(default "") - Alternate Unit of Measure Coding System OID
- csu22 ST(default "") - Alternate Unit of Measure Value Set OID
- csu23 ST(default "") - Alternate Unit of Measure Value Set Version ID
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- patient CSU_C09_PATIENT[](default [{pid:{}, csr:{}}]) - CSU_C09_PATIENT Segment Group
health.hl7v27: CSU_C09_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
health.hl7v27: CSU_C09_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- 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.hl7v27: CSU_C09_RX_ADMIN
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_RX_ADMIN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- rxa RXA -
- rxr RXR -
health.hl7v27: CSU_C09_STUDY_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- csu_c09_timing_qty CSU_C09_TIMING_QTY[](default [{tq1:{}}]) -
- prt PRT[](default [{}]) -
- obx OBX -
- obr OBR -
health.hl7v27: CSU_C09_STUDY_PHARM
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_STUDY_PHARM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- csu_c09_common_order CSU_C09_COMMON_ORDER? -
- csu_c09_rx_admin CSU_C09_RX_ADMIN[](default [{rxa:{}, rxr:{}}]) -
health.hl7v27: 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.hl7v27: 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:{}, obx:{}}]) -
- csu_c09_study_pharm CSU_C09_STUDY_PHARM[](default [{}]) -
health.hl7v27: CSU_C09_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: CSU_C09_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default CSU_C09_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: 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 CWE[](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 CWE(default {}) - Preferred Method of Contact
- ctd7 PLN[](default [{}]) - Contact Identifiers
health.hl7v27: 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 CWE(default {}) - Study Phase Identifier
- cti3 CWE(default {}) - Study Scheduled Time Point
health.hl7v27: CWE
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cwe1 ST(default "") - Identifier
- cwe2 ST(default "") - Text
- cwe3 ID(default "") - Name of Coding System
- cwe4 ST(default "") - Alternate Identifier
- cwe5 ST(default "") - Alternate Text
- cwe6 ID(default "") - Name of Alternate Coding System
- cwe7 ST(default "") - Coding System Version ID
- cwe8 ST(default "") - Alternate Coding System Version ID
- cwe9 ST(default "") - Original Text
- cwe10 ST(default "") - Second Alternate Identifier
- cwe11 ST(default "") - Second Alternate Text
- cwe12 ID(default "") - Name of Second Alternate Coding System
- cwe13 ST(default "") - Second Alternate Coding System Version ID
- cwe14 ST(default "") - Coding System OID
- cwe15 ST(default "") - Value Set OID
- cwe16 DTM(default "") - Value Set Version ID
- cwe17 ST(default "") - Alternate Coding System OID
- cwe18 ST(default "") - Alternate Value Set OID
- cwe19 DTM(default "") - Alternate Value Set Version ID
- cwe20 ST(default "") - Second Alternate Coding System OID
- cwe21 ST(default "") - Second Alternate Value Set OID
- cwe22 DTM(default "") - Second Alternate Value Set Version ID
health.hl7v27: CX
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- cx1 ST(default "") - ID Number
- cx2 ST(default "") - Identifier Check Digit
- cx3 ID(default "") - Check Digit Scheme
- cx4 HD(default {}) - Assigning Authority
- cx5 ID(default "") - Identifier Type Code
- cx6 HD(default {}) - Assigning Facility
- cx7 DT(default "") - Effective Date
- cx8 DT(default "") - Expiration Date
- cx9 CWE(default {}) - Assigning Jurisdiction
- cx10 CWE(default {}) - Assigning Agency or Department
- cx11 ST(default "") - Security Check
- cx12 ID(default "") - Security Check Scheme
health.hl7v27: 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 CWE(default {}) - Disabled Person Code
- db13 CX[](default [{}]) - Disabled Person Identifier
- db14 ID(default "") - Disability 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.hl7v27: DDI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ddi1 NM(default "") - Delay Days
- ddi2 MO(default {}) - Monetary Amount
- ddi3 NM(default "") - Number of Days
health.hl7v27: 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
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- db1 DB1[](default []) - DB1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- visit DFT_P03_VISIT[](default [{pv1:{}}]) - DFT_P03_VISIT Segment Group
- common_order DFT_P03_COMMON_ORDER[](default [{}]) - DFT_P03_COMMON_ORDER Segment Group
- financial DFT_P03_FINANCIAL[](default [{ft1:{}}]) - DFT_P03_FINANCIAL Segment Group
- insurance DFT_P03_INSURANCE[](default [{in1:{}}]) - DFT_P03_INSURANCE Segment Group
health.hl7v27: DFT_P03_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- dft_p03_order DFT_P03_ORDER? -
- dft_p03_timing_quantity DFT_P03_TIMING_QUANTITY[](default [{tq1:{}}]) -
- dft_p03_observation DFT_P03_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: 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_common_order DFT_P03_FINANCIAL_COMMON_ORDER[](default [{}]) -
- dft_p03_financial_procedure DFT_P03_FINANCIAL_PROCEDURE[](default [{pr1:{}}]) -
- nte NTE? -
health.hl7v27: DFT_P03_FINANCIAL_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- dft_p03_financial_order DFT_P03_FINANCIAL_ORDER? -
- dft_p03_financial_observation DFT_P03_FINANCIAL_OBSERVATION[](default [{obx:{}}]) -
- dft_p03_financial_timing_quantity DFT_P03_FINANCIAL_TIMING_QUANTITY[](default [{tq1:{}}]) -
health.hl7v27: DFT_P03_FINANCIAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P03_FINANCIAL_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: 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.hl7v27: DFT_P03_FINANCIAL_TIMING_QUANTITY
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_FINANCIAL_TIMING_QUANTITY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: DFT_P03_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: DFT_P03_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P03_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P03_TIMING_QUANTITY
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_TIMING_QUANTITY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: DFT_P03_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P03_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
- rol ROL[](default [{}]) -
health.hl7v27: DFT_P11
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default DFT_P11_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- rol ROL[](default []) - ROL Segment
- db1 DB1[](default []) - DB1 Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG? - DRG Segment
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- visit DFT_P11_VISIT[](default [{pv1:{}}]) - DFT_P11_VISIT Segment Group
- common_order DFT_P11_COMMON_ORDER[](default [{}]) - DFT_P11_COMMON_ORDER Segment Group
- insurance DFT_P11_INSURANCE[](default [{in1:{}}]) - DFT_P11_INSURANCE Segment Group
- financial DFT_P11_FINANCIAL[](default [{ft1:{}}]) - DFT_P11_FINANCIAL Segment Group
health.hl7v27: DFT_P11_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- dft_p11_observation DFT_P11_OBSERVATION[](default [{obx:{}}]) -
- dft_p11_timing_quantity DFT_P11_TIMING_QUANTITY[](default [{tq1:{}}]) -
- dft_p11_order DFT_P11_ORDER? -
health.hl7v27: DFT_P11_FINANCIAL
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- dft_p11_financial_common_order DFT_P11_FINANCIAL_COMMON_ORDER[](default [{}]) -
- dft_p11_financial_insurance DFT_P11_FINANCIAL_INSURANCE[](default [{in1:{}}]) -
- ft1 FT1 -
- dft_p11_financial_procedure DFT_P11_FINANCIAL_PROCEDURE[](default [{pr1:{}}]) -
- gt1 GT1[](default [{}]) -
- drg DRG? -
- dg1 DG1[](default [{}]) -
health.hl7v27: DFT_P11_FINANCIAL_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- dft_p11_financial_observation DFT_P11_FINANCIAL_OBSERVATION[](default [{obx:{}}]) -
- dft_p11_financial_timing_quantity DFT_P11_FINANCIAL_TIMING_QUANTITY[](default [{tq1:{}}]) -
- dft_p11_financial_order DFT_P11_FINANCIAL_ORDER? -
health.hl7v27: DFT_P11_FINANCIAL_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: DFT_P11_FINANCIAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P11_FINANCIAL_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P11_FINANCIAL_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rol ROL[](default [{}]) -
health.hl7v27: DFT_P11_FINANCIAL_TIMING_QUANTITY
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_FINANCIAL_TIMING_QUANTITY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: DFT_P11_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- rol ROL[](default [{}]) -
- in3 IN3[](default [{}]) -
health.hl7v27: DFT_P11_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P11_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: DFT_P11_TIMING_QUANTITY
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_TIMING_QUANTITY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: DFT_P11_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default DFT_P11_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
- rol ROL[](default [{}]) -
health.hl7v27: 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 - DG1
- dg12 ST(default "") - Withdrawn field
- dg13 CWE(default {}) - Diagnosis Code - DG1
- dg14 ST(default "") - Withdrawn field
- dg15 DTM(default "") - Diagnosis Date/Time
- dg16 CWE(default {}) - Diagnosis Type
- dg17 ST(default "") - Withdrawn field
- dg18 ST(default "") - Withdrawn field
- dg19 ST(default "") - Withdrawn field
- dg110 ST(default "") - Withdrawn field
- dg111 ST(default "") - Withdrawn field
- dg112 ST(default "") - Withdrawn field
- dg113 ST(default "") - Withdrawn field
- dg114 ST(default "") - Withdrawn field
- dg115 NM(default "") - Diagnosis Priority
- dg116 XCN[](default [{}]) - Diagnosing Clinician
- dg117 CWE(default {}) - Diagnosis Classification
- dg118 ID(default "") - Confidential Indicator
- dg119 DTM(default "") - Attestation Date/Time
- dg120 EI(default {}) - Diagnosis Identifier
- dg121 ID(default "") - Diagnosis Action Code
- dg122 EI(default {}) - Parent Diagnosis
- dg123 CWE(default {}) - DRG CCL Value Code
- dg124 ID(default "") - DRG Grouping Usage
- dg125 CWE(default {}) - DRG Diagnosis Determination Status
- dg126 CWE(default {}) - Present On Admission (POA) Indicator
health.hl7v27: DIN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- din1 DTM(default "") - Date
- din2 CWE(default {}) - Institution Name
health.hl7v27: DLD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dld1 CWE(default {}) - Discharge to Location
- dld2 DTM(default "") - Effective Date
health.hl7v27: DLN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dln1 ST(default "") - License Number
- dln2 CWE(default {}) - Issuing State, Province, Country
- dln3 DT(default "") - Expiration Date
health.hl7v27: DLT
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dlt1 NR(default {}) - Normal Range
- dlt2 NM(default "") - Numeric Threshold
- dlt3 ID(default "") - Change Computation
- dlt4 NM(default "") - Days Retained
health.hl7v27: DMI
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 DMI_SEGMENT_NAME) - Segment Name
- dmi1 CNE(default {}) - Diagnostic Related Group
- dmi2 CNE(default {}) - Major Diagnostic Category
- dmi3 NR(default {}) - Lower and Upper Trim Points
- dmi4 NM(default "") - Average Length of Stay
- dmi5 NM(default "") - Relative Weight
health.hl7v27: DR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dr1 DTM(default "") - Range Start Date/Time
- dr2 DTM(default "") - Range End Date/Time
health.hl7v27: 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 CNE(default {}) - Diagnostic Related Group
- drg2 DTM(default "") - DRG Assigned Date/Time
- drg3 ID(default "") - DRG Approval Indicator
- drg4 CWE(default {}) - DRG Grouper Review Code
- drg5 CWE(default {}) - Outlier Type
- drg6 NM(default "") - Outlier Days
- drg7 CP(default {}) - Outlier Cost
- drg8 CWE(default {}) - DRG Payor
- drg9 CP(default {}) - Outlier Reimbursement
- drg10 ID(default "") - Confidential Indicator
- drg11 CWE(default {}) - DRG Transfer Type
- drg12 XPN(default {}) - Name of Coder
- drg13 CWE(default {}) - Grouper Status
- drg14 CWE(default {}) - PCCL Value Code
- drg15 NM(default "") - Effective Weight
- drg16 MO(default {}) - Monetary Amount
- drg17 CWE(default {}) - Status Patient
- drg18 ST(default "") - Grouper Software Name
- drg19 ST(default "") - Grouper Software Version
- drg20 CWE(default {}) - Status Financial Calculation
- drg21 MO(default {}) - Relative Discount/Surcharge
- drg22 MO(default {}) - Basic Charge
- drg23 MO(default {}) - Total Charge
- drg24 MO(default {}) - Discount/Surcharge
- drg25 NM(default "") - Calculated Days
- drg26 CWE(default {}) - Status Gender
- drg27 CWE(default {}) - Status Age
- drg28 CWE(default {}) - Status Length of Stay
- drg29 CWE(default {}) - Status Same Day Flag
- drg30 CWE(default {}) - Status Separation Mode
- drg31 CWE(default {}) - Status Weight at Birth
- drg32 CWE(default {}) - Status Respiration Minutes
- drg33 CWE(default {}) - Status Admission
health.hl7v27: 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
- dsc2 ID(default "") - Continuation Style
health.hl7v27: 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 - DSP
- dsp2 SI(default "") - Display Level
- dsp3 TX(default "") - Data Line
- dsp4 ST(default "") - Logical Break Point
- dsp5 TX(default "") - Result ID
health.hl7v27: DTN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- dtn1 CWE(default {}) - Day Type
- dtn2 NM(default "") - Number of Days
health.hl7v27: EAC_U07
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EAC_U07_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- rol ROL? - ROL Segment
- command EAC_U07_COMMAND[](default [{ecd:{}}]) - EAC_U07_COMMAND Segment Group
health.hl7v27: EAC_U07_COMMAND
Fields
- Fields Included from *SegmentComponent
- name string(default EAC_U07_COMMAND_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq1 TQ1? -
- ecd ECD -
- cns CNS? -
- eac_u07_specimen_container EAC_U07_SPECIMEN_CONTAINER? -
health.hl7v27: EAC_U07_SPECIMEN_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default EAC_U07_SPECIMEN_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM[](default [{}]) -
- sac SAC -
health.hl7v27: EAN_U09
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EAN_U09_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- rol ROL? - ROL Segment
- notification EAN_U09_NOTIFICATION[](default [{nds:{}}]) - EAN_U09_NOTIFICATION Segment Group
health.hl7v27: EAN_U09_NOTIFICATION
Fields
- Fields Included from *SegmentComponent
- name string(default EAN_U09_NOTIFICATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nds NDS -
- nte NTE? -
health.hl7v27: EAR_U08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EAR_U08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- rol ROL? - ROL Segment
- command_response EAR_U08_COMMAND_RESPONSE[](default [{ecd:{}, ecr:{}}]) - EAR_U08_COMMAND_RESPONSE Segment Group
health.hl7v27: EAR_U08_COMMAND_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default EAR_U08_COMMAND_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ecr ECR -
- ecd ECD -
- ear_u08_specimen_container EAR_U08_SPECIMEN_CONTAINER? -
health.hl7v27: EAR_U08_SPECIMEN_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default EAR_U08_SPECIMEN_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM[](default [{}]) -
- sac SAC -
health.hl7v27: ECD
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 ECD_SEGMENT_NAME) - Segment Name
- ecd1 NM(default "") - Reference Command Number
- ecd2 CWE(default {}) - Remote Control Command
- ecd3 ID(default "") - Response Required
- ecd4 ST(default "") - Withdrawn field
- ecd5 TX[](default [""]) - Parameters
health.hl7v27: ECR
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 ECR_SEGMENT_NAME) - Segment Name
- ecr1 CWE(default {}) - Command Response
- ecr2 DTM(default "") - Date/Time Completed
- ecr3 TX[](default [""]) - Command Response Parameters
health.hl7v27: 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 Subtype
- ed4 ID(default "") - Encoding
- ed5 TX(default "") - Data
health.hl7v27: EDU
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 EDU_SEGMENT_NAME) - Segment Name
- edu1 SI(default "") - Set ID - EDU
- edu2 CWE(default {}) - Academic Degree
- edu3 DR(default {}) - Academic Degree Program Date Range
- edu4 DR(default {}) - Academic Degree Program Participation Date Range
- edu5 DT(default "") - Academic Degree Granted Date
- edu6 XON(default {}) - School
- edu7 CWE(default {}) - School Type Code
- edu8 XAD(default {}) - School Address
- edu9 CWE[](default [{}]) - Major Field of Study
health.hl7v27: EHC_E01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- invoice_information EHC_E01_INVOICE_INFORMATION[](default [{}]) - EHC_E01_INVOICE_INFORMATION Segment Group
health.hl7v27: EHC_E01_DIAGNOSIS
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_DIAGNOSIS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nte NTE[](default [{}]) -
- dg1 DG1 -
health.hl7v27: EHC_E01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
health.hl7v27: EHC_E01_INVOICE_INFORMATION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_INVOICE_INFORMATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E01_INVOICE_PROCESSING
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_INVOICE_PROCESSING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ipr IPR -
health.hl7v27: EHC_E01_PATIENT_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_PATIENT_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- acc ACC[](default [{}]) -
- obx OBX[](default [{}]) -
- ehc_e01_insurance EHC_E01_INSURANCE[](default [{in1:{}}]) -
- ehc_e01_diagnosis EHC_E01_DIAGNOSIS[](default [{dg1:{}}]) -
- pid PID -
- pv1 PV1? -
- pv2 PV2? -
health.hl7v27: EHC_E01_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- nte NTE[](default [{}]) -
- rol ROL[](default [{}]) -
health.hl7v27: EHC_E01_PRODUCT_SERVICE_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- loc LOC[](default [{}]) -
- ehc_e01_invoice_processing EHC_E01_INVOICE_PROCESSING[](default [{ipr:{}}]) -
- psg PSG -
- ehc_e01_product_service_line_item EHC_E01_PRODUCT_SERVICE_LINE_ITEM[](default [{psl:{}}]) -
- ehc_e01_patient_info EHC_E01_PATIENT_INFO[](default [{pid:{}}]) -
- rol ROL[](default [{}]) -
- ehc_e01_procedure EHC_E01_PROCEDURE[](default [{pr1:{}}]) -
health.hl7v27: EHC_E01_PRODUCT_SERVICE_LINE_ITEM
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_PRODUCT_SERVICE_LINE_ITEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT? -
- loc LOC[](default [{}]) -
- adj ADJ[](default [{}]) -
- psl PSL -
- nte NTE[](default [{}]) -
- rol ROL[](default [{}]) -
health.hl7v27: EHC_E01_PRODUCT_SERVICE_SECTION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E01_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pss PSS -
- ehc_e01_product_service_group EHC_E01_PRODUCT_SERVICE_GROUP[](default [{psg:{}}]) -
health.hl7v27: EHC_E02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- invoice_information EHC_E02_INVOICE_INFORMATION[](default [{}]) - EHC_E02_INVOICE_INFORMATION Segment Group
health.hl7v27: EHC_E02_INVOICE_INFORMATION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E02_INVOICE_INFORMATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E02_PRODUCT_SERVICE_SECTION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E02_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pss PSS -
- ehc_e02_psg EHC_E02_PSG[](default [{psg:{}}]) -
health.hl7v27: EHC_E02_PSG
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E02_PSG_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- psg PSG -
- psl PSL[](default [{}]) -
health.hl7v27: EHC_E04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- reassessment_request_info EHC_E04_REASSESSMENT_REQUEST_INFO[](default [{}]) - EHC_E04_REASSESSMENT_REQUEST_INFO Segment Group
health.hl7v27: EHC_E04_PRODUCT_SERVICE_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E04_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- psg PSG -
- psl PSL[](default [{}]) -
health.hl7v27: EHC_E04_PRODUCT_SERVICE_SECTION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E04_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pss PSS -
- ehc_e04_product_service_group EHC_E04_PRODUCT_SERVICE_GROUP[](default [{psg:{}}]) -
health.hl7v27: EHC_E04_REASSESSMENT_REQUEST_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E04_REASSESSMENT_REQUEST_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E10
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E10_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- invoice_processing_results_info EHC_E10_INVOICE_PROCESSING_RESULTS_INFO[](default [{ipr:{}, pye:{}, in1:{}, ivc:{}}]) - EHC_E10_INVOICE_PROCESSING_RESULTS_INFO Segment Group
health.hl7v27: EHC_E10_INVOICE_PROCESSING_RESULTS_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E10_INVOICE_PROCESSING_RESULTS_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ehc_e10_product_service_section EHC_E10_PRODUCT_SERVICE_SECTION[](default [{pss:{}}]) -
- ivc IVC -
- ipr IPR -
- in2 IN2? -
- pye PYE -
- in1 IN1 -
- nte NTE[](default [{}]) -
health.hl7v27: EHC_E10_PRODUCT_SERVICE_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E10_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ehc_e10_product_service_line_info EHC_E10_PRODUCT_SERVICE_LINE_INFO[](default [{psl:{}}]) -
- psg PSG -
health.hl7v27: EHC_E10_PRODUCT_SERVICE_LINE_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E10_PRODUCT_SERVICE_LINE_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- adj ADJ[](default [{}]) -
- psl PSL -
health.hl7v27: EHC_E10_PRODUCT_SERVICE_SECTION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E10_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pss PSS -
- ehc_e10_product_service_group EHC_E10_PRODUCT_SERVICE_GROUP[](default [{psg:{}}]) -
health.hl7v27: EHC_E12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- rfi RFI - RFI Segment
- ctd CTD[](default []) - CTD Segment
- ivc IVC - IVC Segment
- pss PSS - PSS Segment
- psg PSG - PSG Segment
- pid PID? - PID Segment
- psl PSL[](default []) - PSL Segment
- request EHC_E12_REQUEST[](default [{obr:{}}]) - EHC_E12_REQUEST Segment Group
health.hl7v27: EHC_E12_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E12_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD? -
- obx OBX[](default [{}]) -
- obr OBR -
- nte NTE? -
health.hl7v27: EHC_E13
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E13_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- rfi RFI - RFI Segment
- ctd CTD[](default []) - CTD Segment
- ivc IVC - IVC Segment
- pss PSS - PSS Segment
- psg PSG - PSG Segment
- pid PID? - PID Segment
- psl PSL? - PSL Segment
- request EHC_E13_REQUEST[](default [{obr:{}}]) - EHC_E13_REQUEST Segment Group
health.hl7v27: EHC_E13_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E13_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD? -
- ehc_e13_response EHC_E13_RESPONSE[](default [{obx:{}}]) -
- obr OBR -
- nte NTE? -
health.hl7v27: EHC_E13_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E13_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- txa TXA? -
- nte NTE? -
health.hl7v27: EHC_E15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- payment_remittance_header_info EHC_E15_PAYMENT_REMITTANCE_HEADER_INFO[](default [{}]) - EHC_E15_PAYMENT_REMITTANCE_HEADER_INFO Segment Group
- payment_remittance_detail_info EHC_E15_PAYMENT_REMITTANCE_DETAIL_INFO[](default [{ipr:{}, ivc:{}}]) - EHC_E15_PAYMENT_REMITTANCE_DETAIL_INFO Segment Group
- adjustment_payee EHC_E15_ADJUSTMENT_PAYEE[](default [{adj:{}}]) - EHC_E15_ADJUSTMENT_PAYEE Segment Group
health.hl7v27: EHC_E15_ADJUSTMENT_PAYEE
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_ADJUSTMENT_PAYEE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- adj ADJ -
- rol ROL? -
health.hl7v27: EHC_E15_PAYMENT_REMITTANCE_DETAIL_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_PAYMENT_REMITTANCE_DETAIL_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ehc_e15_product_service_section EHC_E15_PRODUCT_SERVICE_SECTION[](default [{pss:{}}]) -
- ivc IVC -
- ipr IPR -
health.hl7v27: EHC_E15_PAYMENT_REMITTANCE_HEADER_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_PAYMENT_REMITTANCE_HEADER_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E15_PRODUCT_SERVICE_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_PRODUCT_SERVICE_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- psg PSG -
- ehc_e15_psl_item_info EHC_E15_PSL_ITEM_INFO[](default [{psl:{}}]) -
health.hl7v27: EHC_E15_PRODUCT_SERVICE_SECTION
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_PRODUCT_SERVICE_SECTION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pss PSS -
- ehc_e15_product_service_group EHC_E15_PRODUCT_SERVICE_GROUP[](default [{psg:{}}]) -
health.hl7v27: EHC_E15_PSL_ITEM_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E15_PSL_ITEM_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- adj ADJ[](default [{}]) -
- psl PSL -
health.hl7v27: EHC_E20
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E20_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- authorization_request EHC_E20_AUTHORIZATION_REQUEST[](default [{}]) - EHC_E20_AUTHORIZATION_REQUEST Segment Group
health.hl7v27: EHC_E20_AUTHORIZATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E20_AUTHORIZATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E20_DIAGNOSIS
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E20_DIAGNOSIS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nte NTE[](default [{}]) -
- dg1 DG1 -
health.hl7v27: EHC_E20_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E20_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
health.hl7v27: EHC_E20_PAT_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E20_PAT_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- acc ACC[](default [{}]) -
- ehc_e20_insurance EHC_E20_INSURANCE[](default [{in1:{}}]) -
- obx OBX[](default [{}]) -
- ehc_e20_diagnosis EHC_E20_DIAGNOSIS[](default [{dg1:{}}]) -
- pid PID -
health.hl7v27: EHC_E20_PSL_ITEM_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E20_PSL_ITEM_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- loc LOC[](default [{}]) -
- adj ADJ[](default [{}]) -
- psl PSL -
- nte NTE[](default [{}]) -
- rol ROL[](default [{}]) -
health.hl7v27: EHC_E21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- authorization_request EHC_E21_AUTHORIZATION_REQUEST[](default [{}]) - EHC_E21_AUTHORIZATION_REQUEST Segment Group
health.hl7v27: EHC_E21_AUTHORIZATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E21_AUTHORIZATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E21_PSL_ITEM_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E21_PSL_ITEM_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT? -
- psl PSL -
- nte NTE[](default [{}]) -
health.hl7v27: EHC_E24
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default EHC_E24_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- authorization_response_info EHC_E24_AUTHORIZATION_RESPONSE_INFO[](default [{}]) - EHC_E24_AUTHORIZATION_RESPONSE_INFO Segment Group
health.hl7v27: EHC_E24_AUTHORIZATION_RESPONSE_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E24_AUTHORIZATION_RESPONSE_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: EHC_E24_PAYER_ADJUSTMENT
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E24_PAYER_ADJUSTMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- adj ADJ -
health.hl7v27: EHC_E24_PSL_ITEM_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default EHC_E24_PSL_ITEM_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT? -
- ehc_e24_payer_adjustment EHC_E24_PAYER_ADJUSTMENT[](default [{adj:{}}]) -
- psl PSL -
health.hl7v27: 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.hl7v27: EIP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- eip1 EI(default {}) - Placer Assigned Identifier
- eip2 EI(default {}) - Filler Assigned Identifier
health.hl7v27: EQP
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 EQP_SEGMENT_NAME) - Segment Name
- eqp1 CWE(default {}) - Event type
- eqp2 ST(default "") - File Name
- eqp3 DTM(default "") - Start Date/Time
- eqp4 DTM(default "") - End Date/Time
- eqp5 FT(default "") - Transaction Data
health.hl7v27: EQU
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 EQU_SEGMENT_NAME) - Segment Name
- equ1 EI(default {}) - Equipment Instance Identifier
- equ2 DTM(default "") - Event Date/Time
- equ3 CWE(default {}) - Equipment State
- equ4 CWE(default {}) - Local/Remote Control State
- equ5 CWE(default {}) - Alert Level
health.hl7v27: ERL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- erl1 ST(default "") - Segment ID
- erl2 NM(default "") - Segment Sequence
- erl3 NM(default "") - Field Position
- erl4 NM(default "") - Field Repetition
- erl5 NM(default "") - Component Number
- erl6 NM(default "") - Sub-Component Number
health.hl7v27: 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 ST(default "") - Withdrawn field
- err2 ERL[](default [{}]) - Error Location
- err3 CWE(default {}) - HL7 Error Code
- err4 ID(default "") - Severity
- err5 CWE(default {}) - Application Error Code
- err6 ST(default "") - Application Error Parameter
- err7 TX(default "") - Diagnostic Information
- err8 TX(default "") - User Message
- err9 CWE[](default [{}]) - Inform Person Indicator
- err10 CWE(default {}) - Override Type
- err11 CWE[](default [{}]) - Override Reason Code
- err12 XTN[](default [{}]) - Help Desk Contact Point
health.hl7v27: escapeType
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
health.hl7v27: ESR_U02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ESR_U02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- rol ROL? - ROL Segment
health.hl7v27: ESU_U01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ESU_U01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- isd ISD[](default []) - ISD Segment
- rol ROL? - ROL Segment
health.hl7v27: 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 ST(default "") - Withdrawn field
- evn2 DTM(default "") - Recorded Date/Time
- evn3 DTM(default "") - Date/Time Planned Event
- evn4 CWE(default {}) - Event Reason Code
- evn5 XCN[](default [{}]) - Operator ID
- evn6 DTM(default "") - Event Occurred
- evn7 HD(default {}) - Event Facility
health.hl7v27: 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-FAC
- 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.hl7v27: FC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- fc1 CWE(default {}) - Financial Class Code
- fc2 DTM(default "") - Effective Date
health.hl7v27: 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 HD(default {}) - File Sending Application
- fhs4 HD(default {}) - File Sending Facility
- fhs5 HD(default {}) - File Receiving Application
- fhs6 HD(default {}) - File Receiving Facility
- fhs7 DTM(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
- fhs13 HD(default {}) - File Sending Network Address
- fhs14 HD(default {}) - File Receiving Network Address
health.hl7v27: FN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- fn1 ST(default "") - Surname
- fn2 ST(default "") - Own Surname Prefix
- fn3 ST(default "") - Own Surname
- fn4 ST(default "") - Surname Prefix from Partner/Spouse
- fn5 ST(default "") - Surname from Partner/Spouse
health.hl7v27: 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 - FT1
- ft12 ST(default "") - Transaction ID
- ft13 ST(default "") - Transaction Batch ID
- ft14 DR(default {}) - Transaction Date
- ft15 DTM(default "") - Transaction Posting Date
- ft16 CWE(default {}) - Transaction Type
- ft17 CWE(default {}) - Transaction Code
- ft18 ST(default "") - Withdrawn field
- ft19 ST(default "") - Withdrawn field
- ft110 NM(default "") - Transaction Quantity
- ft111 CP(default {}) - Transaction Amount - Extended
- ft112 CP(default {}) - Transaction amount - unit
- ft113 CWE(default {}) - Department Code
- ft114 CWE(default {}) - Health Plan ID
- ft115 CP(default {}) - Insurance Amount
- ft116 PL(default {}) - Assigned Patient Location
- ft117 CWE(default {}) - Fee Schedule
- ft118 CWE(default {}) - Patient Type
- ft119 CWE[](default [{}]) - Diagnosis Code - FT1
- 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 CNE(default {}) - Procedure Code
- ft126 CNE[](default [{}]) - Procedure Code Modifier
- ft127 CWE(default {}) - Advanced Beneficiary Notice Code
- ft128 CWE(default {}) - Medically Necessary Duplicate Procedure Reason
- ft129 CWE(default {}) - NDC Code
- ft130 CX(default {}) - Payment Reference ID
- ft131 SI[](default [""]) - Transaction Reference Key
- ft132 XON[](default [{}]) - Performing Facility
- ft133 XON(default {}) - Ordering Facility
- ft134 CWE(default {}) - Item Number
- ft135 ST(default "") - Model Number
- ft136 CWE[](default [{}]) - Special Processing Code
- ft137 CWE(default {}) - Clinic Code
- ft138 CX(default {}) - Referral Number
- ft139 CX(default {}) - Authorization Number
- ft140 CWE(default {}) - Service Provider Taxonomy Code
- ft141 CWE(default {}) - Revenue Code
- ft142 ST(default "") - Prescription Number
- ft143 CQ(default {}) - NDC Qty and UOM
health.hl7v27: 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.hl7v27: GenericMessage
Fields
- Fields Included from *Message
- name string
- anydata...
- name string? -
- segments Segment[] -
health.hl7v27: 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 DTM(default "") - Action Date/Time
- gol3 CWE(default {}) - Goal ID
- gol4 EI(default {}) - Goal Instance ID
- gol5 EI(default {}) - Episode of Care ID
- gol6 NM(default "") - Goal List Priority
- gol7 DTM(default "") - Goal Established Date/Time
- gol8 DTM(default "") - Expected Goal Achieve Date/Time
- gol9 CWE(default {}) - Goal Classification
- gol10 CWE(default {}) - Goal Management Discipline
- gol11 CWE(default {}) - Current Goal Review Status
- gol12 DTM(default "") - Current Goal Review Date/Time
- gol13 DTM(default "") - Next Goal Review Date/Time
- gol14 DTM(default "") - Previous Goal Review Date/Time
- gol15 ST(default "") - Withdrawn field
- gol16 CWE(default {}) - Goal Evaluation
- gol17 ST[](default [""]) - Goal Evaluation Comment
- gol18 CWE(default {}) - Goal Life Cycle Status
- gol19 DTM(default "") - Goal Life Cycle Status Date/Time
- gol20 CWE[](default [{}]) - Goal Target Type
- gol21 XPN[](default [{}]) - Goal Target Name
- gol22 CNE(default {}) - Mood Code
health.hl7v27: GP1
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 GP1_SEGMENT_NAME) - Segment Name
- gp11 CWE(default {}) - Type of Bill Code
- gp12 CWE[](default [{}]) - Revenue Code
- gp13 CWE(default {}) - Overall Claim Disposition Code
- gp14 CWE[](default [{}]) - OCE Edits per Visit Code
- gp15 CP(default {}) - Outlier Cost
health.hl7v27: GP2
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 GP2_SEGMENT_NAME) - Segment Name
- gp21 CWE(default {}) - Revenue Code
- gp22 NM(default "") - Number of Service Units
- gp23 CP(default {}) - Charge
- gp24 CWE(default {}) - Reimbursement Action Code
- gp25 CWE(default {}) - Denial or Rejection Code
- gp26 CWE[](default [{}]) - OCE Edit Code
- gp27 CWE(default {}) - Ambulatory Payment Classification Code
- gp28 CWE[](default [{}]) - Modifier Edit Code
- gp29 CWE(default {}) - Payment Adjustment Code
- gp210 CWE(default {}) - Packaging Status Code
- gp211 CP(default {}) - Expected CMS Payment Amount
- gp212 CWE(default {}) - Reimbursement Type Code
- gp213 CP(default {}) - Co-Pay Amount
- gp214 NM(default "") - Pay Rate per Service Unit
health.hl7v27: 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 - GT1
- 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 DTM(default "") - Guarantor Date/Time Of Birth
- gt19 CWE(default {}) - Guarantor Administrative Sex
- gt110 CWE(default {}) - Guarantor Type
- gt111 CWE(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 Employer Phone Number
- gt119 CX[](default [{}]) - Guarantor Employee ID Number
- gt120 CWE(default {}) - Guarantor Employment Status
- gt121 XON[](default [{}]) - Guarantor Organization Name
- gt122 ID(default "") - Guarantor Billing Hold Flag
- gt123 CWE(default {}) - Guarantor Credit Rating Code
- gt124 DTM(default "") - Guarantor Death Date And Time
- gt125 ID(default "") - Guarantor Death Flag
- gt126 CWE(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 CWE(default {}) - Guarantor Marital Status Code
- gt131 DT(default "") - Guarantor Hire Effective Date
- gt132 DT(default "") - Employment Stop Date
- gt133 CWE(default {}) - Living Dependency
- gt134 CWE[](default [{}]) - Ambulatory Status
- gt135 CWE[](default [{}]) - Citizenship
- gt136 CWE(default {}) - Primary Language
- gt137 CWE(default {}) - Living Arrangement
- gt138 CWE(default {}) - Publicity Code
- gt139 ID(default "") - Protection Indicator
- gt140 CWE(default {}) - Student Indicator
- gt141 CWE(default {}) - Religion
- gt142 XPN[](default [{}]) - Mother's Maiden Name
- gt143 CWE(default {}) - Nationality
- gt144 CWE[](default [{}]) - Ethnic Group
- gt145 XPN[](default [{}]) - Contact Person's Name
- gt146 XTN[](default [{}]) - Contact Person's Telephone Number
- gt147 CWE(default {}) - Contact Reason
- gt148 CWE(default {}) - Contact Relationship
- gt149 ST(default "") - Job Title
- gt150 JCC(default {}) - Job Code/Class
- gt151 XON[](default [{}]) - Guarantor Employer's Organization Name
- gt152 CWE(default {}) - Handicap
- gt153 CWE(default {}) - Job Status
- gt154 FC(default {}) - Guarantor Financial Class
- gt155 CWE[](default [{}]) - Guarantor Race
- gt156 ST(default "") - Guarantor Birth Place
- gt157 CWE(default {}) - VIP Indicator
health.hl7v27: 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.hl7v27: Hxx
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 Hxx_SEGMENT_NAME) - Segment Name
health.hl7v27: IAM
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 IAM_SEGMENT_NAME) - Segment Name
- iam1 SI(default "") - Set ID - IAM
- iam2 CWE(default {}) - Allergen Type Code
- iam3 CWE(default {}) - Allergen Code/Mnemonic/Description
- iam4 CWE(default {}) - Allergy Severity Code
- iam5 ST[](default [""]) - Allergy Reaction Code
- iam6 CNE(default {}) - Allergy Action Code
- iam7 EI(default {}) - Allergy Unique Identifier
- iam8 ST(default "") - Action Reason
- iam9 CWE(default {}) - Sensitivity to Causative Agent Code
- iam10 CWE(default {}) - Allergen Group Code/Mnemonic/Description
- iam11 DT(default "") - Onset Date
- iam12 ST(default "") - Onset Date Text
- iam13 DTM(default "") - Reported Date/Time
- iam14 XPN(default {}) - Reported By
- iam15 CWE(default {}) - Relationship to Patient Code
- iam16 CWE(default {}) - Alert Device Code
- iam17 CWE(default {}) - Allergy Clinical Status Code
- iam18 XCN(default {}) - Statused by Person
- iam19 XON(default {}) - Statused by Organization
- iam20 DTM(default "") - Statused at Date/Time
- iam21 XCN(default {}) - Inactivated by Person
- iam22 DTM(default "") - Inactivated Date/Time
- iam23 XCN(default {}) - Initially Recorded by Person
- iam24 DTM(default "") - Initially Recorded Date/Time
- iam25 XCN(default {}) - Modified by Person
- iam26 DTM(default "") - Modified Date/Time
- iam27 CWE(default {}) - Clinician Identified Code
- iam28 XON(default {}) - Initially Recorded by Organization
- iam29 XON(default {}) - Modified by Organization
- iam30 XON(default {}) - Inactivated by Organization
health.hl7v27: IAR
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 IAR_SEGMENT_NAME) - Segment Name
- iar1 CWE(default {}) - Allergy Reaction Code
- iar2 CWE(default {}) - Allergy Severity Code
- iar3 CWE(default {}) - Sensitivity to Causative Agent Code
- iar4 ST(default "") - Management
health.hl7v27: ICD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- icd1 CWE(default {}) - Certification Patient Type
- icd2 ID(default "") - Certification Required
- icd3 DTM(default "") - Date/Time Certification Required
health.hl7v27: IIM
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 IIM_SEGMENT_NAME) - Segment Name
- iim1 CWE(default {}) - Primary Key Value - IIM
- iim2 CWE(default {}) - Service Item Code
- iim3 ST(default "") - Inventory Lot Number
- iim4 DTM(default "") - Inventory Expiration Date
- iim5 CWE(default {}) - Inventory Manufacturer Name
- iim6 CWE(default {}) - Inventory Location
- iim7 DTM(default "") - Inventory Received Date
- iim8 NM(default "") - Inventory Received Quantity
- iim9 CWE(default {}) - Inventory Received Quantity Unit
- iim10 MO(default {}) - Inventory Received Item Cost
- iim11 DTM(default "") - Inventory On Hand Date
- iim12 NM(default "") - Inventory On Hand Quantity
- iim13 CWE(default {}) - Inventory On Hand Quantity Unit
- iim14 CNE(default {}) - Procedure Code
- iim15 CNE[](default [{}]) - Procedure Code Modifier
health.hl7v27: ILT
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 ILT_SEGMENT_NAME) - Segment Name
- ilt1 SI(default "") - Set Id - ILT
- ilt2 ST(default "") - Inventory Lot Number
- ilt3 DTM(default "") - Inventory Expiration Date
- ilt4 DTM(default "") - Inventory Received Date
- ilt5 NM(default "") - Inventory Received Quantity
- ilt6 CWE(default {}) - Inventory Received Quantity Unit
- ilt7 MO(default {}) - Inventory Received Item Cost
- ilt8 DTM(default "") - Inventory On Hand Date
- ilt9 NM(default "") - Inventory On Hand Quantity
- ilt10 CWE(default {}) - Inventory On Hand Quantity Unit
health.hl7v27: 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 - IN1
- in12 CWE(default {}) - Health 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 Person
- in17 XTN[](default [{}]) - Insurance Co Phone Number
- in18 ST(default "") - Group Number
- in19 XON[](default [{}]) - Group Name
- in110 CX[](default [{}]) - Insured's Group Emp ID
- in111 XON[](default [{}]) - Insured's Group Emp Name
- in112 DT(default "") - Plan Effective Date
- in113 DT(default "") - Plan Expiration Date
- in114 AUI(default {}) - Authorization Information
- in115 CWE(default {}) - Plan Type
- in116 XPN[](default [{}]) - Name Of Insured
- in117 CWE(default {}) - Insured's Relationship To Patient
- in118 DTM(default "") - Insured's Date Of Birth
- in119 XAD[](default [{}]) - Insured's Address
- in120 CWE(default {}) - Assignment Of Benefits
- in121 CWE(default {}) - Coordination Of Benefits
- in122 ST(default "") - Coord Of Ben. Priority
- in123 ID(default "") - Notice Of Admission Flag
- in124 DT(default "") - Notice Of Admission Date
- in125 ID(default "") - Report Of Eligibility Flag
- in126 DT(default "") - Report Of Eligibility Date
- in127 CWE(default {}) - Release Information Code
- in128 ST(default "") - Pre-Admit Cert (PAC)
- in129 DTM(default "") - Verification Date/Time
- in130 XCN[](default [{}]) - Verification By
- in131 CWE(default {}) - Type Of Agreement Code
- in132 CWE(default {}) - Billing Status
- in133 NM(default "") - Lifetime Reserve Days
- in134 NM(default "") - Delay Before L.R. Day
- in135 CWE(default {}) - Company Plan Code
- in136 ST(default "") - Policy Number
- in137 CP(default {}) - Policy Deductible
- in138 ST(default "") - Withdrawn field
- in139 NM(default "") - Policy Limit - Days
- in140 ST(default "") - Withdrawn field
- in141 ST(default "") - Withdrawn field
- in142 CWE(default {}) - Insured's Employment Status
- in143 CWE(default {}) - Insured's Administrative Sex
- in144 XAD[](default [{}]) - Insured's Employer's Address
- in145 ST(default "") - Verification Status
- in146 CWE(default {}) - Prior Insurance Plan ID
- in147 CWE(default {}) - Coverage Type
- in148 CWE(default {}) - Handicap
- in149 CX[](default [{}]) - Insured's ID Number
- in150 CWE(default {}) - Signature Code
- in151 DT(default "") - Signature Code Date
- in152 ST(default "") - Insured's Birth Place
- in153 CWE(default {}) - VIP Indicator
- in154 CX[](default [{}]) - External Health Plan Identifiers
health.hl7v27: IN2
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 IN2_SEGMENT_NAME) - Segment Name
- in21 CX[](default [{}]) - Insured's Employee ID
- in22 ST(default "") - Insured's Social Security Number
- in23 XCN[](default [{}]) - Insured's Employer's Name and ID
- in24 CWE(default {}) - Employer Information Data
- in25 CWE[](default [{}]) - Mail Claim Party
- in26 ST(default "") - Medicare Health Ins Card Number
- in27 XPN[](default [{}]) - Medicaid Case Name
- in28 ST(default "") - Medicaid Case Number
- in29 XPN[](default [{}]) - Military Sponsor Name
- in210 ST(default "") - Military ID Number
- in211 CWE(default {}) - Dependent Of Military Recipient
- in212 ST(default "") - Military Organization
- in213 ST(default "") - Military Station
- in214 CWE(default {}) - Military Service
- in215 CWE(default {}) - Military Rank/Grade
- in216 CWE(default {}) - Military Status
- in217 DT(default "") - Military Retire Date
- in218 ID(default "") - Military Non-Avail Cert On File
- in219 ID(default "") - Baby Coverage
- in220 ID(default "") - Combine Baby Bill
- in221 ST(default "") - Blood Deductible
- in222 XPN[](default [{}]) - Special Coverage Approval Name
- in223 ST(default "") - Special Coverage Approval Title
- in224 CWE[](default [{}]) - Non-Covered Insurance Code
- in225 CX[](default [{}]) - Payor ID
- in226 CX[](default [{}]) - Payor Subscriber ID
- in227 CWE(default {}) - Eligibility Source
- in228 RMC[](default [{}]) - Room Coverage Type/Amount
- in229 PTA[](default [{}]) - Policy Type/Amount
- in230 DDI(default {}) - Daily Deductible
- in231 CWE(default {}) - Living Dependency
- in232 CWE[](default [{}]) - Ambulatory Status
- in233 CWE[](default [{}]) - Citizenship
- in234 CWE(default {}) - Primary Language
- in235 CWE(default {}) - Living Arrangement
- in236 CWE(default {}) - Publicity Code
- in237 ID(default "") - Protection Indicator
- in238 CWE(default {}) - Student Indicator
- in239 CWE(default {}) - Religion
- in240 XPN[](default [{}]) - Mother's Maiden Name
- in241 CWE(default {}) - Nationality
- in242 CWE[](default [{}]) - Ethnic Group
- in243 CWE[](default [{}]) - Marital Status
- in244 DT(default "") - Insured's Employment Start Date
- in245 DT(default "") - Employment Stop Date
- in246 ST(default "") - Job Title
- in247 JCC(default {}) - Job Code/Class
- in248 CWE(default {}) - Job Status
- in249 XPN[](default [{}]) - Employer Contact Person Name
- in250 XTN[](default [{}]) - Employer Contact Person Phone Number
- in251 CWE(default {}) - Employer Contact Reason
- in252 XPN[](default [{}]) - Insured's Contact Person's Name
- in253 XTN[](default [{}]) - Insured's Contact Person Phone Number
- in254 CWE[](default [{}]) - Insured's Contact Person Reason
- in255 DT(default "") - Relationship to the Patient Start Date
- in256 DT[](default [""]) - Relationship to the Patient Stop Date
- in257 CWE(default {}) - Insurance Co Contact Reason
- in258 XTN[](default [{}]) - Insurance Co Contact Phone Number
- in259 CWE(default {}) - Policy Scope
- in260 CWE(default {}) - Policy Source
- in261 CX(default {}) - Patient Member Number
- in262 CWE(default {}) - Guarantor's Relationship to Insured
- in263 XTN[](default [{}]) - Insured's Phone Number - Home
- in264 XTN[](default [{}]) - Insured's Employer Phone Number
- in265 CWE(default {}) - Military Handicapped Program
- in266 ID(default "") - Suspend Flag
- in267 ID(default "") - Copay Limit Flag
- in268 ID(default "") - Stoploss Limit Flag
- in269 XON[](default [{}]) - Insured Organization Name and ID
- in270 XON[](default [{}]) - Insured Employer Organization Name and ID
- in271 CWE[](default [{}]) - Race
- in272 CWE(default {}) - Patient's Relationship to Insured
health.hl7v27: IN3
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 IN3_SEGMENT_NAME) - Segment Name
- in31 SI(default "") - Set ID - IN3
- in32 CX(default {}) - Certification Number
- in33 XCN[](default [{}]) - Certified By
- in34 ID(default "") - Certification Required
- in35 MOP(default {}) - Penalty
- in36 DTM(default "") - Certification Date/Time
- in37 DTM(default "") - Certification Modify Date/Time
- in38 XCN[](default [{}]) - Operator
- in39 DT(default "") - Certification Begin Date
- in310 DT(default "") - Certification End Date
- in311 DTN(default {}) - Days
- in312 CWE(default {}) - Non-Concur Code/Description
- in313 DTM(default "") - Non-Concur Effective Date/Time
- in314 XCN[](default [{}]) - Physician Reviewer
- in315 ST(default "") - Certification Contact
- in316 XTN[](default [{}]) - Certification Contact Phone Number
- in317 CWE(default {}) - Appeal Reason
- in318 CWE(default {}) - Certification Agency
- in319 XTN[](default [{}]) - Certification Agency Phone Number
- in320 ICD[](default [{}]) - Pre-Certification Requirement
- in321 ST(default "") - Case Manager
- in322 DT(default "") - Second Opinion Date
- in323 CWE(default {}) - Second Opinion Status
- in324 CWE[](default [{}]) - Second Opinion Documentation Received
- in325 XCN[](default [{}]) - Second Opinion Physician
health.hl7v27: INR_U06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default INR_U06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- inv INV[](default []) - INV Segment
- rol ROL? - ROL Segment
health.hl7v27: INU_U05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default INU_U05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- inv INV[](default []) - INV Segment
- rol ROL? - ROL Segment
health.hl7v27: INV
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 INV_SEGMENT_NAME) - Segment Name
- inv1 CWE(default {}) - Substance Identifier
- inv2 CWE[](default [{}]) - Substance Status
- inv3 CWE(default {}) - Substance Type
- inv4 CWE(default {}) - Inventory Container Identifier
- inv5 CWE(default {}) - Container Carrier Identifier
- inv6 CWE(default {}) - Position on Carrier
- inv7 NM(default "") - Initial Quantity
- inv8 NM(default "") - Current Quantity
- inv9 NM(default "") - Available Quantity
- inv10 NM(default "") - Consumption Quantity
- inv11 CWE(default {}) - Quantity Units
- inv12 DTM(default "") - Expiration Date/Time
- inv13 DTM(default "") - First Used Date/Time
- inv14 ST(default "") - Withdrawn field
- inv15 CWE[](default [{}]) - Test/Fluid Identifier(s)
- inv16 ST(default "") - Manufacturer Lot Number
- inv17 CWE(default {}) - Manufacturer Identifier
- inv18 CWE(default {}) - Supplier Identifier
- inv19 CQ(default {}) - On Board Stability Time
- inv20 CQ(default {}) - Target Value
health.hl7v27: IPC
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 IPC_SEGMENT_NAME) - Segment Name
- ipc1 EI(default {}) - Accession Identifier
- ipc2 EI(default {}) - Requested Procedure ID
- ipc3 EI(default {}) - Study Instance UID
- ipc4 EI(default {}) - Scheduled Procedure Step ID
- ipc5 CWE(default {}) - Modality
- ipc6 CWE[](default [{}]) - Protocol Code
- ipc7 EI(default {}) - Scheduled Station Name
- ipc8 CWE[](default [{}]) - Scheduled Procedure Step Location
- ipc9 ST(default "") - Scheduled Station AE Title
health.hl7v27: IPR
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 IPR_SEGMENT_NAME) - Segment Name
- ipr1 EI(default {}) - IPR Identifier
- ipr2 EI(default {}) - Provider Cross Reference Identifier
- ipr3 EI(default {}) - Payer Cross Reference Identifier
- ipr4 CWE(default {}) - IPR Status
- ipr5 DTM(default "") - IPR Date/Time
- ipr6 CP(default {}) - Adjudicated/Paid Amount
- ipr7 DTM(default "") - Expected Payment Date/Time
- ipr8 ST(default "") - IPR Checksum
health.hl7v27: ISD
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 ISD_SEGMENT_NAME) - Segment Name
- isd1 NM(default "") - Reference Interaction Number
- isd2 CWE(default {}) - Interaction Type Identifier
- isd3 CWE(default {}) - Interaction Active State
health.hl7v27: ITM
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 ITM_SEGMENT_NAME) - Segment Name
- itm1 EI(default {}) - Item Identifier
- itm2 ST(default "") - Item Description
- itm3 CWE(default {}) - Item Status
- itm4 CWE(default {}) - Item Type
- itm5 CWE(default {}) - Item Category
- itm6 CNE(default {}) - Subject to Expiration Indicator
- itm7 EI(default {}) - Manufacturer Identifier
- itm8 ST(default "") - Manufacturer Name
- itm9 ST(default "") - Manufacturer Catalog Number
- itm10 CWE(default {}) - Manufacturer Labeler Identification Code
- itm11 CNE(default {}) - Patient Chargeable Indicator
- itm12 CWE(default {}) - Transaction Code
- itm13 CP(default {}) - Transaction amount - unit
- itm14 CNE(default {}) - Stocked Item Indicator
- itm15 CWE(default {}) - Supply Risk Codes
- itm16 XON[](default [{}]) - Approving Regulatory Agency
- itm17 CNE(default {}) - Latex Indicator
- itm18 CWE[](default [{}]) - Ruling Act
- itm19 CWE(default {}) - Item Natural Account Code
- itm20 NM(default "") - Approved To Buy Quantity
- itm21 MO(default {}) - Approved To Buy Price
- itm22 CNE(default {}) - Taxable Item Indicator
- itm23 CNE(default {}) - Freight Charge Indicator
- itm24 CNE(default {}) - Item Set Indicator
- itm25 EI(default {}) - Item Set Identifier
- itm26 CNE(default {}) - Track Department Usage Indicator
- itm27 CNE(default {}) - Procedure Code
- itm28 CNE[](default [{}]) - Procedure Code Modifier
- itm29 CWE(default {}) - Special Handling Code
health.hl7v27: IVC
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 IVC_SEGMENT_NAME) - Segment Name
- ivc1 EI(default {}) - Provider Invoice Number
- ivc2 EI(default {}) - Payer Invoice Number
- ivc3 EI(default {}) - Contract/Agreement Number
- ivc4 CWE(default {}) - Invoice Control
- ivc5 CWE(default {}) - Invoice Reason
- ivc6 CWE(default {}) - Invoice Type
- ivc7 DTM(default "") - Invoice Date/Time
- ivc8 CP(default {}) - Invoice Amount
- ivc9 ST(default "") - Payment Terms
- ivc10 XON(default {}) - Provider Organization
- ivc11 XON(default {}) - Payer Organization
- ivc12 XCN(default {}) - Attention
- ivc13 ID(default "") - Last Invoice Indicator
- ivc14 DTM(default "") - Invoice Booking Period
- ivc15 ST(default "") - Origin
- ivc16 CP(default {}) - Invoice Fixed Amount
- ivc17 CP(default {}) - Special Costs
- ivc18 CP(default {}) - Amount for Doctors Treatment
- ivc19 XCN(default {}) - Responsible Physician
- ivc20 CX(default {}) - Cost Center
- ivc21 CP(default {}) - Invoice Prepaid Amount
- ivc22 CP(default {}) - Total Invoice Amount without Prepaid Amount
- ivc23 CP(default {}) - Total-Amount of VAT
- ivc24 NM[](default [""]) - VAT-Rates applied
- ivc25 CWE(default {}) - Benefit Group
- ivc26 ST(default "") - Provider Tax ID
- ivc27 ST(default "") - Payer Tax ID
- ivc28 CWE(default {}) - Provider Tax Status
- ivc29 CWE(default {}) - Payer Tax Status
- ivc30 ST(default "") - Sales Tax ID
health.hl7v27: IVT
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 IVT_SEGMENT_NAME) - Segment Name
- ivt1 SI(default "") - Set Id - IVT
- ivt2 EI(default {}) - Inventory Location Identifier
- ivt3 ST(default "") - Inventory Location Name
- ivt4 EI(default {}) - Source Location Identifier
- ivt5 ST(default "") - Source Location Name
- ivt6 CWE(default {}) - Item Status
- ivt7 EI[](default [{}]) - Bin Location Identifier
- ivt8 CWE(default {}) - Order Packaging
- ivt9 CWE(default {}) - Issue Packaging
- ivt10 EI(default {}) - Default Inventory Asset Account
- ivt11 CNE(default {}) - Patient Chargeable Indicator
- ivt12 CWE(default {}) - Transaction Code
- ivt13 CP(default {}) - Transaction amount - unit
- ivt14 CWE(default {}) - Item Importance Code
- ivt15 CNE(default {}) - Stocked Item Indicator
- ivt16 CNE(default {}) - Consignment Item Indicator
- ivt17 CNE(default {}) - Reusable Item Indicator
- ivt18 CP(default {}) - Reusable Cost
- ivt19 EI[](default [{}]) - Substitute Item Identifier
- ivt20 EI(default {}) - Latex-Free Substitute Item Identifier
- ivt21 CWE(default {}) - Recommended Reorder Theory
- ivt22 NM(default "") - Recommended Safety Stock Days
- ivt23 NM(default "") - Recommended Maximum Days Inventory
- ivt24 NM(default "") - Recommended Order Point
- ivt25 NM(default "") - Recommended Order Amount
- ivt26 CNE(default {}) - Operating Room Par Level Indicator
health.hl7v27: JCC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- jcc1 CWE(default {}) - Job Code
- jcc2 CWE(default {}) - Job Class
- jcc3 TX(default "") - Job Description Text
health.hl7v27: LA1
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- la11 IS(default "") - Point of Care
- la12 IS(default "") - Room
- la13 IS(default "") - Bed
- la14 HD(default {}) - Facility
- la15 IS(default "") - Location Status
- la16 IS(default "") - Patient Location Type
- la17 IS(default "") - Building
- la18 IS(default "") - Floor
- la19 AD(default {}) - Address
health.hl7v27: LA2
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- la21 IS(default "") - Point of Care
- la22 IS(default "") - Room
- la23 IS(default "") - Bed
- la24 HD(default {}) - Facility
- la25 IS(default "") - Location Status
- la26 IS(default "") - Patient Location Type
- la27 IS(default "") - Building
- la28 IS(default "") - Floor
- la29 ST(default "") - Street Address
- la210 ST(default "") - Other Designation
- la211 ST(default "") - City
- la212 ST(default "") - State or Province
- la213 ST(default "") - Zip or Postal Code
- la214 ID(default "") - Country
- la215 ID(default "") - Address Type
- la216 ST(default "") - Other Geographic Designation
health.hl7v27: LAN
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 LAN_SEGMENT_NAME) - Segment Name
- lan1 SI(default "") - Set ID - LAN
- lan2 CWE(default {}) - Language Code
- lan3 CWE[](default [{}]) - Language Ability Code
- lan4 CWE(default {}) - Language Proficiency Code
health.hl7v27: LCC
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 LCC_SEGMENT_NAME) - Segment Name
- lcc1 PL(default {}) - Primary Key Value - LCC
- lcc2 CWE(default {}) - Location Department
- lcc3 CWE[](default [{}]) - Accommodation Type
- lcc4 CWE[](default [{}]) - Charge Code
health.hl7v27: LCH
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 LCH_SEGMENT_NAME) - Segment Name
- lch1 PL(default {}) - Primary Key Value - LCH
- lch2 ID(default "") - Segment Action Code
- lch3 EI(default {}) - Segment Unique Key
- lch4 CWE(default {}) - Location Characteristic ID
- lch5 CWE(default {}) - Location Characteristic Value - LCH
health.hl7v27: LDP
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 LDP_SEGMENT_NAME) - Segment Name
- ldp1 PL(default {}) - Primary Key Value - LDP
- ldp2 CWE(default {}) - Location Department
- ldp3 CWE[](default [{}]) - Location Service
- ldp4 CWE[](default [{}]) - Specialty Type
- ldp5 CWE[](default [{}]) - Valid Patient Classes
- ldp6 ID(default "") - Active/Inactive Flag
- ldp7 DTM(default "") - Activation Date - LDP
- ldp8 DTM(default "") - Inactivation Date - LDP
- ldp9 ST(default "") - Inactivated Reason
- ldp10 VH[](default [{}]) - Visiting Hours
- ldp11 XTN(default {}) - Contact Phone
- ldp12 CWE(default {}) - Location Cost Center
health.hl7v27: LOC
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 LOC_SEGMENT_NAME) - Segment Name
- loc1 PL(default {}) - Primary Key Value - LOC
- loc2 ST(default "") - Location Description
- loc3 CWE[](default [{}]) - Location Type - LOC
- loc4 XON[](default [{}]) - Organization Name - LOC
- loc5 XAD[](default [{}]) - Location Address
- loc6 XTN[](default [{}]) - Location Phone
- loc7 CWE[](default [{}]) - License Number
- loc8 CWE[](default [{}]) - Location Equipment
- loc9 CWE(default {}) - Location Service Code
health.hl7v27: LRL
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 LRL_SEGMENT_NAME) - Segment Name
- lrl1 PL(default {}) - Primary Key Value - LRL
- lrl2 ID(default "") - Segment Action Code
- lrl3 EI(default {}) - Segment Unique Key
- lrl4 CWE(default {}) - Location Relationship ID
- lrl5 XON[](default [{}]) - Organizational Location Relationship Value
- lrl6 PL(default {}) - Patient Location Relationship Value
health.hl7v27: LSU_U12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default LSU_U12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- equ EQU - EQU Segment
- eqp EQP[](default []) - EQP Segment
- rol ROL? - ROL Segment
health.hl7v27: MA
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ma1 NM(default "") - Sample Y From Channel 1
- ma2 NM(default "") - Sample Y From Channel 2
- ma3 NM(default "") - Sample Y From Channel 3
- ma4 NM(default "") - Sample Y From Channel 4
health.hl7v27: MDM_T01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MDM_T01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pv1 PV1 - PV1 Segment
- txa TXA - TXA Segment
- con CON[](default []) - CON Segment
- common_order MDM_T01_COMMON_ORDER[](default [{orc:{}, obr:{}}]) - MDM_T01_COMMON_ORDER Segment Group
health.hl7v27: MDM_T01_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default MDM_T01_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- mdm_t01_timing MDM_T01_TIMING[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: MDM_T01_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default MDM_T01_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: MDM_T02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MDM_T02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pv1 PV1 - PV1 Segment
- txa TXA - TXA Segment
- con CON[](default []) - CON Segment
- common_order MDM_T02_COMMON_ORDER[](default [{orc:{}, obr:{}}]) - MDM_T02_COMMON_ORDER Segment Group
- observation MDM_T02_OBSERVATION[](default [{obx:{}}]) - MDM_T02_OBSERVATION Segment Group
health.hl7v27: MDM_T02_COMMON_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default MDM_T02_COMMON_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- mdm_t02_timing MDM_T02_TIMING[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: MDM_T02_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default MDM_T02_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: MDM_T02_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default MDM_T02_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: MFA
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 MFA_SEGMENT_NAME) - Segment Name
- mfa1 ID(default "") - Record-Level Event Code
- mfa2 ST(default "") - MFN Control ID
- mfa3 DTM(default "") - Event Completion Date/Time
- mfa4 CWE(default {}) - MFN Record Level Error Return
- mfa5 varies[](default [{}]) - Primary Key Value - MFA
- mfa6 ID[](default [""]) - Primary Key Value Type - MFA
health.hl7v27: MFE
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 MFE_SEGMENT_NAME) - Segment Name
- mfe1 ID(default "") - Record-Level Event Code
- mfe2 ST(default "") - MFN Control ID
- mfe3 DTM(default "") - Effective Date/Time
- mfe4 varies[](default [{}]) - Primary Key Value - MFE
- mfe5 ID[](default [""]) - Primary Key Value Type
- mfe6 DTM(default "") - Entered Date/Time
- mfe7 XCN(default {}) - Entered By
health.hl7v27: MFI
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 MFI_SEGMENT_NAME) - Segment Name
- mfi1 CWE(default {}) - Master File Identifier
- mfi2 HD[](default [{}]) - Master File Application Identifier
- mfi3 ID(default "") - File-Level Event Code
- mfi4 DTM(default "") - Entered Date/Time
- mfi5 DTM(default "") - Effective Date/Time
- mfi6 ID(default "") - Response Level Code
health.hl7v27: MFK_M01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFK_M01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- mfi MFI - MFI Segment
- mfa MFA[](default []) - MFA Segment
health.hl7v27: MFN_M02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_staff MFN_M02_MF_STAFF[](default [{mfe:{}, stf:{}}]) - MFN_M02_MF_STAFF Segment Group
health.hl7v27: MFN_M02_MF_STAFF
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M02_MF_STAFF_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aff AFF[](default [{}]) -
- cer CER[](default [{}]) -
- stf STF -
- org ORG[](default [{}]) -
- edu EDU[](default [{}]) -
- lan LAN[](default [{}]) -
- mfe MFE -
- pra PRA[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: MFN_M04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_cdm MFN_M04_MF_CDM[](default [{mfe:{}, cdm:{}}]) - MFN_M04_MF_CDM Segment Group
health.hl7v27: MFN_M04_MF_CDM
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M04_MF_CDM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prc PRC[](default [{}]) -
- mfe MFE -
- cdm CDM -
health.hl7v27: MFN_M05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_location MFN_M05_MF_LOCATION[](default [{mfe:{}, loc:{}}]) - MFN_M05_MF_LOCATION Segment Group
health.hl7v27: MFN_M05_MF_LOC_DEPT
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M05_MF_LOC_DEPT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- lch LCH[](default [{}]) -
- ldp LDP -
- lcc LCC[](default [{}]) -
health.hl7v27: MFN_M05_MF_LOCATION
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M05_MF_LOCATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- lch LCH[](default [{}]) -
- loc LOC -
- lrl LRL[](default [{}]) -
- mfn_m05_mf_loc_dept MFN_M05_MF_LOC_DEPT[](default [{ldp:{}}]) -
- mfe MFE -
health.hl7v27: MFN_M06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_clin_study MFN_M06_MF_CLIN_STUDY[](default [{mfe:{}, cm0:{}}]) - MFN_M06_MF_CLIN_STUDY Segment Group
health.hl7v27: MFN_M06_MF_CLIN_STUDY
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M06_MF_CLIN_STUDY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mfn_m06_mf_phase_sched_detail MFN_M06_MF_PHASE_SCHED_DETAIL[](default [{cm1:{}}]) -
- cm0 CM0 -
- mfe MFE -
health.hl7v27: MFN_M06_MF_PHASE_SCHED_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M06_MF_PHASE_SCHED_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cm1 CM1 -
- cm2 CM2[](default [{}]) -
health.hl7v27: MFN_M07
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M07_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_clin_study_sched MFN_M07_MF_CLIN_STUDY_SCHED[](default [{mfe:{}, cm0:{}}]) - MFN_M07_MF_CLIN_STUDY_SCHED Segment Group
health.hl7v27: MFN_M07_MF_CLIN_STUDY_SCHED
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M07_MF_CLIN_STUDY_SCHED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cm0 CM0 -
- cm2 CM2[](default [{}]) -
- mfe MFE -
health.hl7v27: MFN_M08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_test_numeric MFN_M08_MF_TEST_NUMERIC[](default [{mfe:{}, om1:{}}]) - MFN_M08_MF_TEST_NUMERIC Segment Group
health.hl7v27: MFN_M08_MF_TEST_NUMERIC
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M08_MF_TEST_NUMERIC_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om1 OM1 -
- om3 OM3? -
- om2 OM2? -
- om4 OM4? -
- mfe MFE -
health.hl7v27: MFN_M09
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M09_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_test_categorical MFN_M09_MF_TEST_CATEGORICAL[](default [{mfe:{}, om1:{}}]) - MFN_M09_MF_TEST_CATEGORICAL Segment Group
health.hl7v27: MFN_M09_MF_TEST_CAT_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M09_MF_TEST_CAT_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om3 OM3 -
- om4 OM4[](default [{}]) -
health.hl7v27: MFN_M09_MF_TEST_CATEGORICAL
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M09_MF_TEST_CATEGORICAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om1 OM1 -
- mfn_m09_mf_test_cat_detail MFN_M09_MF_TEST_CAT_DETAIL? -
- mfe MFE -
health.hl7v27: MFN_M10
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M10_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_test_batteries MFN_M10_MF_TEST_BATTERIES[](default [{mfe:{}, om1:{}}]) - MFN_M10_MF_TEST_BATTERIES Segment Group
health.hl7v27: MFN_M10_MF_TEST_BATT_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M10_MF_TEST_BATT_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om5 OM5 -
- om4 OM4[](default [{}]) -
health.hl7v27: MFN_M10_MF_TEST_BATTERIES
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M10_MF_TEST_BATTERIES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om1 OM1 -
- mfe MFE -
- mfn_m10_mf_test_batt_detail MFN_M10_MF_TEST_BATT_DETAIL? -
health.hl7v27: MFN_M11
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M11_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_test_calculated MFN_M11_MF_TEST_CALCULATED[](default [{mfe:{}, om1:{}}]) - MFN_M11_MF_TEST_CALCULATED Segment Group
health.hl7v27: MFN_M11_MF_TEST_CALC_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M11_MF_TEST_CALC_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om2 OM2 -
- om6 OM6 -
health.hl7v27: MFN_M11_MF_TEST_CALCULATED
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M11_MF_TEST_CALCULATED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om1 OM1 -
- mfe MFE -
- mfn_m11_mf_test_calc_detail MFN_M11_MF_TEST_CALC_DETAIL? -
health.hl7v27: MFN_M12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_obs_attributes MFN_M12_MF_OBS_ATTRIBUTES[](default [{mfe:{}, om1:{}}]) - MFN_M12_MF_OBS_ATTRIBUTES Segment Group
health.hl7v27: MFN_M12_MF_OBS_ATTRIBUTES
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M12_MF_OBS_ATTRIBUTES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- om1 OM1 -
- om7 OM7? -
- mfe MFE -
health.hl7v27: MFN_M13
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M13_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mfe MFE[](default []) - MFE Segment
health.hl7v27: MFN_M15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_inv_item MFN_M15_MF_INV_ITEM[](default [{mfe:{}, iim:{}}]) - MFN_M15_MF_INV_ITEM Segment Group
health.hl7v27: MFN_M15_MF_INV_ITEM
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M15_MF_INV_ITEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- iim IIM -
- mfe MFE -
health.hl7v27: MFN_M16
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M16_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- material_item_record MFN_M16_MATERIAL_ITEM_RECORD[](default [{mfe:{}, itm:{}}]) - MFN_M16_MATERIAL_ITEM_RECORD Segment Group
health.hl7v27: MFN_M16_MATERIAL_ITEM_RECORD
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M16_MATERIAL_ITEM_RECORD_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mfn_m16_material_location MFN_M16_MATERIAL_LOCATION[](default [{ivt:{}}]) -
- itm ITM -
- mfn_m16_purchasing_vendor MFN_M16_PURCHASING_VENDOR[](default [{vnd:{}}]) -
- mfn_m16_sterilization MFN_M16_STERILIZATION[](default [{stz:{}}]) -
- mfe MFE -
- nte NTE[](default [{}]) -
health.hl7v27: MFN_M16_MATERIAL_LOCATION
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M16_MATERIAL_LOCATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ilt ILT[](default [{}]) -
- ivt IVT -
- nte NTE[](default [{}]) -
health.hl7v27: MFN_M16_PACKAGING
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M16_PACKAGING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pce PCE[](default [{}]) -
- pkg PKG -
health.hl7v27: MFN_M16_PURCHASING_VENDOR
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M16_PURCHASING_VENDOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- mfn_m16_packaging MFN_M16_PACKAGING[](default [{pkg:{}}]) -
- vnd VND -
health.hl7v27: MFN_M16_STERILIZATION
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M16_STERILIZATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- stz STZ -
- nte NTE[](default [{}]) -
health.hl7v27: MFN_M17
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_M17_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_drg MFN_M17_MF_DRG[](default [{mfe:{}, dmi:{}}]) - MFN_M17_MF_DRG Segment Group
health.hl7v27: MFN_M17_MF_DRG
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_M17_MF_DRG_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- dmi DMI -
- mfe MFE -
health.hl7v27: MFN_Znn
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default MFN_Znn_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- mfi MFI - MFI Segment
- mf_site_defined MFN_Znn_MF_SITE_DEFINED[](default [{mfe:{}, anyhl7segment:{}}]) - MFN_Znn_MF_SITE_DEFINED Segment Group
health.hl7v27: MFN_Znn_MF_SITE_DEFINED
Fields
- Fields Included from *SegmentComponent
- name string(default MFN_Znn_MF_SITE_DEFINED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- anyhl7segment anydata -
- mfe MFE -
health.hl7v27: MO
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- mo1 NM(default "") - Quantity
- mo2 ID(default "") - Denomination
health.hl7v27: MOC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- moc1 MO(default {}) - Monetary Amount
- moc2 CWE(default {}) - Charge Code
health.hl7v27: MOP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- mop1 ID(default "") - Money or Percentage Indicator
- mop2 NM(default "") - Money or Percentage Quantity
- mop3 ID(default "") - Monetary Denomination
health.hl7v27: MRG
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 MRG_SEGMENT_NAME) - Segment Name
- mrg1 CX[](default [{}]) - Prior Patient Identifier List
- mrg2 ST(default "") - Withdrawn field
- mrg3 CX(default {}) - Prior Patient Account Number
- mrg4 ST(default "") - Withdrawn field
- mrg5 CX(default {}) - Prior Visit Number
- mrg6 CX(default {}) - Prior Alternate Visit ID
- mrg7 XPN[](default [{}]) - Prior Patient Name
health.hl7v27: MSA
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 MSA_SEGMENT_NAME) - Segment Name
- msa1 ID(default "") - Acknowledgment Code
- msa2 ST(default "") - Message Control ID
- msa3 ST(default "") - Withdrawn field
- msa4 NM(default "") - Expected Sequence Number
- msa5 ST(default "") - Withdrawn field
- msa6 ST(default "") - Withdrawn field
- msa7 NM(default "") - Message Waiting Number
- msa8 ID(default "") - Message Waiting Priority
health.hl7v27: MSG
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- msg1 ID(default "") - Message Code
- msg2 ID(default "") - Trigger Event
- msg3 ID(default "") - Message Structure
health.hl7v27: MSH
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 MSH_SEGMENT_NAME) - Segment Name
- msh1 ST(default "") - Field Separator
- msh2 ST(default "") - Encoding Characters
- msh3 HD(default {}) - Sending Application
- msh4 HD(default {}) - Sending Facility
- msh5 HD(default {}) - Receiving Application
- msh6 HD(default {}) - Receiving Facility
- msh7 DTM(default "") - Date/Time of Message
- msh8 ST(default "") - Security
- msh9 MSG(default {}) - Message Type
- msh10 ST(default "") - Message Control ID
- msh11 PT(default {}) - Processing ID
- msh12 VID(default {}) - Version ID
- msh13 NM(default "") - Sequence Number
- msh14 ST(default "") - Continuation Pointer
- msh15 ID(default "") - Accept Acknowledgment Type
- msh16 ID(default "") - Application Acknowledgment Type
- msh17 ID(default "") - Country Code
- msh18 ID[](default [""]) - Character Set
- msh19 CWE(default {}) - Principal Language Of Message
- msh20 ID(default "") - Alternate Character Set Handling Scheme
- msh21 EI[](default [{}]) - Message Profile Identifier
- msh22 XON(default {}) - Sending Responsible Organization
- msh23 XON(default {}) - Receiving Responsible Organization
- msh24 HD(default {}) - Sending Network Address
- msh25 HD(default {}) - Receiving Network Address
health.hl7v27: NA
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- na1 NM(default "") - Value1
- na2 NM(default "") - Value2
- na3 NM(default "") - Value3
- na4 NM(default "") - Value4
health.hl7v27: NCK
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 NCK_SEGMENT_NAME) - Segment Name
- nck1 DTM(default "") - System Date/Time
health.hl7v27: NDL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ndl1 CNN(default {}) - Name
- ndl2 DTM(default "") - Start Date/time
- ndl3 DTM(default "") - End Date/time
- ndl4 IS(default "") - Point of Care
- ndl5 IS(default "") - Room
- ndl6 IS(default "") - Bed
- ndl7 HD(default {}) - Facility
- ndl8 IS(default "") - Location Status
- ndl9 IS(default "") - Patient Location Type
- ndl10 IS(default "") - Building
- ndl11 IS(default "") - Floor
health.hl7v27: NDS
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 NDS_SEGMENT_NAME) - Segment Name
- nds1 NM(default "") - Notification Reference Number
- nds2 DTM(default "") - Notification Date/Time
- nds3 CWE(default {}) - Notification Alert Severity
- nds4 CWE(default {}) - Notification Code
health.hl7v27: NK1
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 NK1_SEGMENT_NAME) - Segment Name
- nk11 SI(default "") - Set ID - NK1
- nk12 XPN[](default [{}]) - Name
- nk13 CWE(default {}) - Relationship
- nk14 XAD[](default [{}]) - Address
- nk15 XTN[](default [{}]) - Phone Number
- nk16 XTN[](default [{}]) - Business Phone Number
- nk17 CWE(default {}) - Contact Role
- nk18 DT(default "") - Start Date
- nk19 DT(default "") - End Date
- nk110 ST(default "") - Next of Kin / Associated Parties Job Title
- nk111 JCC(default {}) - Next of Kin / Associated Parties Job Code/Class
- nk112 CX(default {}) - Next of Kin / Associated Parties Employee Number
- nk113 XON[](default [{}]) - Organization Name - NK1
- nk114 CWE(default {}) - Marital Status
- nk115 CWE(default {}) - Administrative Sex
- nk116 DTM(default "") - Date/Time of Birth
- nk117 CWE[](default [{}]) - Living Dependency
- nk118 CWE[](default [{}]) - Ambulatory Status
- nk119 CWE[](default [{}]) - Citizenship
- nk120 CWE(default {}) - Primary Language
- nk121 CWE(default {}) - Living Arrangement
- nk122 CWE(default {}) - Publicity Code
- nk123 ID(default "") - Protection Indicator
- nk124 CWE(default {}) - Student Indicator
- nk125 CWE(default {}) - Religion
- nk126 XPN[](default [{}]) - Mother's Maiden Name
- nk127 CWE(default {}) - Nationality
- nk128 CWE[](default [{}]) - Ethnic Group
- nk129 CWE[](default [{}]) - Contact Reason
- nk130 XPN[](default [{}]) - Contact Person's Name
- nk131 XTN[](default [{}]) - Contact Person's Telephone Number
- nk132 XAD[](default [{}]) - Contact Person's Address
- nk133 CX[](default [{}]) - Next of Kin/Associated Party's Identifiers
- nk134 CWE(default {}) - Job Status
- nk135 CWE[](default [{}]) - Race
- nk136 CWE(default {}) - Handicap
- nk137 ST(default "") - Contact Person Social Security Number
- nk138 ST(default "") - Next of Kin Birth Place
- nk139 CWE(default {}) - VIP Indicator
- nk140 XTN(default {}) - Next of Kin Telecommunication Information
- nk141 XTN(default {}) - Contact Person's Telecommunication Information
health.hl7v27: NMD_N02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default NMD_N02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- clock_and_stats_with_notes NMD_N02_CLOCK_AND_STATS_WITH_NOTES[](default [{}]) - NMD_N02_CLOCK_AND_STATS_WITH_NOTES Segment Group
health.hl7v27: NMD_N02_APP_STATS
Fields
- Fields Included from *SegmentComponent
- name string(default NMD_N02_APP_STATS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nst NST -
- nte NTE[](default [{}]) -
health.hl7v27: NMD_N02_APP_STATUS
Fields
- Fields Included from *SegmentComponent
- name string(default NMD_N02_APP_STATUS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nte NTE[](default [{}]) -
- nsc NSC -
health.hl7v27: NMD_N02_CLOCK
Fields
- Fields Included from *SegmentComponent
- name string(default NMD_N02_CLOCK_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nck NCK -
- nte NTE[](default [{}]) -
health.hl7v27: NMD_N02_CLOCK_AND_STATS_WITH_NOTES
Fields
- Fields Included from *SegmentComponent
- name string(default NMD_N02_CLOCK_AND_STATS_WITH_NOTES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nmd_n02_clock NMD_N02_CLOCK? -
- nmd_n02_app_status NMD_N02_APP_STATUS? -
- nmd_n02_app_stats NMD_N02_APP_STATS? -
health.hl7v27: NPU
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 NPU_SEGMENT_NAME) - Segment Name
- npu1 PL(default {}) - Bed Location
- npu2 CWE(default {}) - Bed Status
health.hl7v27: NR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- nr1 NM(default "") - Low Value
- nr2 NM(default "") - High Value
health.hl7v27: NSC
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 NSC_SEGMENT_NAME) - Segment Name
- nsc1 CWE(default {}) - Application Change Type
- nsc2 ST(default "") - Current CPU
- nsc3 ST(default "") - Current Fileserver
- nsc4 HD(default {}) - Current Application
- nsc5 HD(default {}) - Current Facility
- nsc6 ST(default "") - New CPU
- nsc7 ST(default "") - New Fileserver
- nsc8 HD(default {}) - New Application
- nsc9 HD(default {}) - New Facility
health.hl7v27: NST
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 NST_SEGMENT_NAME) - Segment Name
- nst1 ID(default "") - Statistics Available
- nst2 ST(default "") - Source Identifier
- nst3 ID(default "") - Source Type
- nst4 DTM(default "") - Statistics Start
- nst5 DTM(default "") - Statistics End
- nst6 NM(default "") - Receive Character Count
- nst7 NM(default "") - Send Character Count
- nst8 NM(default "") - Messages Received
- nst9 NM(default "") - Messages Sent
- nst10 NM(default "") - Checksum Errors Received
- nst11 NM(default "") - Length Errors Received
- nst12 NM(default "") - Other Errors Received
- nst13 NM(default "") - Connect Timeouts
- nst14 NM(default "") - Receive Timeouts
- nst15 NM(default "") - Application control-level Errors
health.hl7v27: NTE
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 NTE_SEGMENT_NAME) - Segment Name
- nte1 SI(default "") - Set ID - NTE
- nte2 ID(default "") - Source of Comment
- nte3 FT[](default [""]) - Comment
- nte4 CWE(default {}) - Comment Type
- nte5 XCN(default {}) - Entered By
- nte6 DTM(default "") - Entered Date/Time
- nte7 DTM(default "") - Effective Start Date
- nte8 DTM(default "") - Expiration Date
health.hl7v27: OBR
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 OBR_SEGMENT_NAME) - Segment Name
- obr1 SI(default "") - Set ID - OBR
- obr2 EI(default {}) - Placer Order Number
- obr3 EI(default {}) - Filler Order Number
- obr4 CWE(default {}) - Universal Service Identifier
- obr5 ST(default "") - Withdrawn field
- obr6 ST(default "") - Withdrawn field
- obr7 DTM(default "") - Observation Date/Time #
- obr8 DTM(default "") - Observation End Date/Time #
- obr9 CQ(default {}) - Collection Volume *
- obr10 XCN[](default [{}]) - Collector Identifier *
- obr11 ID(default "") - Specimen Action Code *
- obr12 CWE(default {}) - Danger Code
- obr13 ST(default "") - Relevant Clinical Information
- obr14 ST(default "") - Withdrawn field
- obr15 ST(default "") - Withdrawn field
- obr16 XCN[](default [{}]) - Ordering Provider
- obr17 XTN(default {}) - Order Callback Phone Number
- obr18 ST(default "") - Placer Field 1
- obr19 ST(default "") - Placer Field 2
- obr20 ST(default "") - Filler Field 1 +
- obr21 ST(default "") - Filler Field 2 +
- obr22 DTM(default "") - Results Rpt/Status Chng - Date/Time +
- obr23 MOC(default {}) - Charge to Practice +
- obr24 ID(default "") - Diagnostic Serv Sect ID
- obr25 ID(default "") - Result Status +
- obr26 PRL(default {}) - Parent Result +
- obr27 ST(default "") - Withdrawn field
- obr28 XCN[](default [{}]) - Result Copies To
- obr29 EIP(default {}) - Parent
- obr30 ID(default "") - Transportation Mode
- obr31 CWE[](default [{}]) - Reason for Study
- obr32 NDL(default {}) - Principal Result Interpreter +
- obr33 NDL[](default [{}]) - Assistant Result Interpreter +
- obr34 NDL[](default [{}]) - Technician +
- obr35 NDL[](default [{}]) - Transcriptionist +
- obr36 DTM(default "") - Scheduled Date/Time +
- obr37 NM(default "") - Number of Sample Containers *
- obr38 CWE[](default [{}]) - Transport Logistics of Collected Sample *
- obr39 CWE[](default [{}]) - Collector's Comment *
- obr40 CWE(default {}) - Transport Arrangement Responsibility
- obr41 ID(default "") - Transport Arranged
- obr42 ID(default "") - Escort Required
- obr43 CWE[](default [{}]) - Planned Patient Transport Comment
- obr44 CNE(default {}) - Procedure Code
- obr45 CNE[](default [{}]) - Procedure Code Modifier
- obr46 CWE[](default [{}]) - Placer Supplemental Service Information
- obr47 CWE[](default [{}]) - Filler Supplemental Service Information
- obr48 CWE(default {}) - Medically Necessary Duplicate Procedure Reason
- obr49 CWE(default {}) - Result Handling
- obr50 CWE(default {}) - Parent Universal Service Identifier
- obr51 EI(default {}) - Observation Group ID
- obr52 EI(default {}) - Parent Observation Group ID
- obr53 CX[](default [{}]) - Alternate Placer Order Number
health.hl7v27: OBX
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 OBX_SEGMENT_NAME) - Segment Name
- obx1 SI(default "") - Set ID - OBX
- obx2 ID(default "") - Value Type
- obx3 CWE(default {}) - Observation Identifier
- obx4 ST(default "") - Observation Sub-ID
- obx5 varies[](default [{}]) - Observation Value
- obx6 CWE(default {}) - Units
- obx7 ST(default "") - References Range
- obx8 CWE[](default [{}]) - Interpretation Codes
- obx9 NM(default "") - Probability
- obx10 ID[](default [""]) - Nature of Abnormal Test
- obx11 ID(default "") - Observation Result Status
- obx12 DTM(default "") - Effective Date of Reference Range
- obx13 ST(default "") - User Defined Access Checks
- obx14 DTM(default "") - Date/Time of the Observation
- obx15 CWE(default {}) - Producer's ID
- obx16 XCN[](default [{}]) - Responsible Observer
- obx17 CWE[](default [{}]) - Observation Method
- obx18 EI[](default [{}]) - Equipment Instance Identifier
- obx19 DTM(default "") - Date/Time of the Analysis
- obx20 CWE[](default [{}]) - Observation Site
- obx21 EI(default {}) - Observation Instance Identifier
- obx22 CNE(default {}) - Mood Code
- obx23 XON(default {}) - Performing Organization Name
- obx24 XAD(default {}) - Performing Organization Address
- obx25 XCN(default {}) - Performing Organization Medical Director
- obx26 ID(default "") - Patient Results Release Category
health.hl7v27: OCD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ocd1 CNE(default {}) - Occurrence Code
- ocd2 DT(default "") - Occurrence Date
health.hl7v27: ODS
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 ODS_SEGMENT_NAME) - Segment Name
- ods1 ID(default "") - Type
- ods2 CWE(default {}) - Service Period
- ods3 CWE(default {}) - Diet, Supplement, or Preference Code
- ods4 ST(default "") - Text Instruction
health.hl7v27: ODT
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 ODT_SEGMENT_NAME) - Segment Name
- odt1 CWE(default {}) - Tray Type
- odt2 CWE(default {}) - Service Period
- odt3 ST(default "") - Text Instruction
health.hl7v27: OM1
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 OM1_SEGMENT_NAME) - Segment Name
- om11 NM(default "") - Sequence Number - Test/Observation Master File
- om12 CWE(default {}) - Producer's Service/Test/Observation ID
- om13 ID[](default [""]) - Permitted Data Types
- om14 ID(default "") - Specimen Required
- om15 CWE(default {}) - Producer ID
- om16 TX(default "") - Observation Description
- om17 CWE(default {}) - Other Service/Test/Observation IDs for the Observation
- om18 ST[](default [""]) - Other Names
- om19 ST(default "") - Preferred Report Name for the Observation
- om110 ST(default "") - Preferred Short Name or Mnemonic for the Observation
- om111 ST(default "") - Preferred Long Name for the Observation
- om112 ID(default "") - Orderability
- om113 CWE[](default [{}]) - Identity of Instrument Used to Perform this Study
- om114 CWE[](default [{}]) - Coded Representation of Method
- om115 ID(default "") - Portable Device Indicator
- om116 CWE[](default [{}]) - Observation Producing Department/Section
- om117 XTN(default {}) - Telephone Number of Section
- om118 CWE(default {}) - Nature of Service/Test/Observation
- om119 CWE(default {}) - Report Subheader
- om120 ST(default "") - Report Display Order
- om121 DTM(default "") - Date/Time Stamp for Any Change in Definition for the Observation
- om122 DTM(default "") - Effective Date/Time of Change
- om123 NM(default "") - Typical Turn-Around Time
- om124 NM(default "") - Processing Time
- om125 ID[](default [""]) - Processing Priority
- om126 ID(default "") - Reporting Priority
- om127 CWE[](default [{}]) - Outside Site(s) Where Observation May Be Performed
- om128 XAD[](default [{}]) - Address of Outside Site(s)
- om129 XTN(default {}) - Phone Number of Outside Site
- om130 CWE(default {}) - Confidentiality Code
- om131 CWE(default {}) - Observations Required to Interpret this Observation
- om132 TX(default "") - Interpretation of Observations
- om133 CWE(default {}) - Contraindications to Observations
- om134 CWE[](default [{}]) - Reflex Tests/Observations
- om135 TX(default "") - Rules that Trigger Reflex Testing
- om136 CWE(default {}) - Fixed Canned Message
- om137 TX(default "") - Patient Preparation
- om138 CWE(default {}) - Procedure Medication
- om139 TX(default "") - Factors that may Affect the Observation
- om140 ST[](default [""]) - Service/Test/Observation Performance Schedule
- om141 TX(default "") - Description of Test Methods
- om142 CWE(default {}) - Kind of Quantity Observed
- om143 CWE(default {}) - Point Versus Interval
- om144 TX(default "") - Challenge Information
- om145 CWE(default {}) - Relationship Modifier
- om146 CWE(default {}) - Target Anatomic Site Of Test
- om147 CWE(default {}) - Modality of Imaging Measurement
health.hl7v27: OM2
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 OM2_SEGMENT_NAME) - Segment Name
- om21 NM(default "") - Sequence Number - Test/Observation Master File
- om22 CWE(default {}) - Units of Measure
- om23 NM[](default [""]) - Range of Decimal Precision
- om24 CWE(default {}) - Corresponding SI Units of Measure
- om25 TX(default "") - SI Conversion Factor
- om26 RFR[](default [{}]) - Reference (Normal) Range for Ordinal and Continuous Observations
- om27 RFR[](default [{}]) - Critical Range for Ordinal and Continuous Observations
- om28 RFR(default {}) - Absolute Range for Ordinal and Continuous Observations
- om29 DLT[](default [{}]) - Delta Check Criteria
- om210 NM(default "") - Minimum Meaningful Increments
health.hl7v27: OM3
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 OM3_SEGMENT_NAME) - Segment Name
- om31 NM(default "") - Sequence Number - Test/Observation Master File
- om32 CWE(default {}) - Preferred Coding System
- om33 CWE[](default [{}]) - Valid Coded "Answers"
- om34 CWE[](default [{}]) - Normal Text/Codes for Categorical Observations
- om35 CWE[](default [{}]) - Abnormal Text/Codes for Categorical Observations
- om36 CWE[](default [{}]) - Critical Text/Codes for Categorical Observations
- om37 ID(default "") - Value Type
health.hl7v27: OM4
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 OM4_SEGMENT_NAME) - Segment Name
- om41 NM(default "") - Sequence Number - Test/Observation Master File
- om42 ID(default "") - Derived Specimen
- om43 TX(default "") - Container Description
- om44 NM(default "") - Container Volume
- om45 CWE(default {}) - Container Units
- om46 CWE(default {}) - Specimen
- om47 CWE(default {}) - Additive
- om48 TX(default "") - Preparation
- om49 TX(default "") - Special Handling Requirements
- om410 CQ(default {}) - Normal Collection Volume
- om411 CQ(default {}) - Minimum Collection Volume
- om412 TX(default "") - Specimen Requirements
- om413 ID[](default [""]) - Specimen Priorities
- om414 CQ(default {}) - Specimen Retention Time
health.hl7v27: OM5
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 OM5_SEGMENT_NAME) - Segment Name
- om51 NM(default "") - Sequence Number - Test/Observation Master File
- om52 CWE[](default [{}]) - Test/Observations Included Within an Ordered Test Battery
- om53 ST(default "") - Observation ID Suffixes
health.hl7v27: OM6
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 OM6_SEGMENT_NAME) - Segment Name
- om61 NM(default "") - Sequence Number - Test/Observation Master File
- om62 TX(default "") - Derivation Rule
health.hl7v27: OM7
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 OM7_SEGMENT_NAME) - Segment Name
- om71 NM(default "") - Sequence Number - Test/Observation Master File
- om72 CWE(default {}) - Universal Service Identifier
- om73 CWE[](default [{}]) - Category Identifier
- om74 TX(default "") - Category Description
- om75 ST[](default [""]) - Category Synonym
- om76 DTM(default "") - Effective Test/Service Start Date/Time
- om77 DTM(default "") - Effective Test/Service End Date/Time
- om78 NM(default "") - Test/Service Default Duration Quantity
- om79 CWE(default {}) - Test/Service Default Duration Units
- om710 CWE(default {}) - Test/Service Default Frequency
- om711 ID(default "") - Consent Indicator
- om712 CWE(default {}) - Consent Identifier
- om713 DTM(default "") - Consent Effective Start Date/Time
- om714 DTM(default "") - Consent Effective End Date/Time
- om715 NM(default "") - Consent Interval Quantity
- om716 CWE(default {}) - Consent Interval Units
- om717 NM(default "") - Consent Waiting Period Quantity
- om718 CWE(default {}) - Consent Waiting Period Units
- om719 DTM(default "") - Effective Date/Time of Change
- om720 XCN(default {}) - Entered By
- om721 PL[](default [{}]) - Orderable-at Location
- om722 CWE(default {}) - Formulary Status
- om723 ID(default "") - Special Order Indicator
- om724 CWE[](default [{}]) - Primary Key Value - CDM
health.hl7v27: OMB_O27
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMB_O27_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMB_O27_PATIENT[](default [{pid:{}}]) - OMB_O27_PATIENT Segment Group
- 'order OMB_O27_ORDER[](default [{orc:{}, bpo:{}}]) -
health.hl7v27: OMB_O27_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMB_O27_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMB_O27_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpo BPO -
- orc ORC -
- spm SPM? -
- ft1 FT1[](default [{}]) -
- omb_o27_timing OMB_O27_TIMING[](default [{tq1:{}}]) -
- blg BLG? -
- nte NTE[](default [{}]) -
- omb_o27_observation OMB_O27_OBSERVATION[](default [{obx:{}}]) -
- dg1 DG1[](default [{}]) -
health.hl7v27: OMB_O27_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- gt1 GT1? -
- omb_o27_insurance OMB_O27_INSURANCE[](default [{in1:{}}]) -
- al1 AL1[](default [{}]) -
- omb_o27_patient_visit OMB_O27_PATIENT_VISIT? -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OMB_O27_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMB_O27_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMB_O27_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMD_O03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMD_O03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMD_O03_PATIENT[](default [{pid:{}}]) - OMD_O03_PATIENT Segment Group
- order_diet OMD_O03_ORDER_DIET[](default [{orc:{}}]) - OMD_O03_ORDER_DIET Segment Group
- order_tray OMD_O03_ORDER_TRAY[](default [{orc:{}}]) - OMD_O03_ORDER_TRAY Segment Group
health.hl7v27: OMD_O03_DIET
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_DIET_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- omd_o03_observation OMD_O03_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
- ods ODS[](default [{}]) -
health.hl7v27: OMD_O03_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMD_O03_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMD_O03_ORDER_DIET
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_ORDER_DIET_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- omd_o03_timing_diet OMD_O03_TIMING_DIET[](default [{tq1:{}}]) -
- omd_o03_diet OMD_O03_DIET? -
health.hl7v27: OMD_O03_ORDER_TRAY
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_ORDER_TRAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- omd_o03_timing_tray OMD_O03_TIMING_TRAY[](default [{tq1:{}}]) -
- odt ODT[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: OMD_O03_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- omd_o03_patient_visit OMD_O03_PATIENT_VISIT? -
- gt1 GT1? -
- omd_o03_insurance OMD_O03_INSURANCE[](default [{in1:{}}]) -
- al1 AL1[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OMD_O03_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMD_O03_TIMING_DIET
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_TIMING_DIET_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMD_O03_TIMING_TRAY
Fields
- Fields Included from *SegmentComponent
- name string(default OMD_O03_TIMING_TRAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMG_O19
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMG_O19_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMG_O19_PATIENT[](default [{pid:{}}]) - OMG_O19_PATIENT Segment Group
- 'order OMG_O19_ORDER[](default [{orc:{}, obr:{}}]) -
health.hl7v27: OMG_O19_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- omg_o19_container_observation OMG_O19_CONTAINER_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OMG_O19_CONTAINER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_CONTAINER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OMG_O19_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMG_O19_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMG_O19_OBSERVATION_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_OBSERVATION_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMG_O19_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- omg_o19_observation OMG_O19_OBSERVATION[](default [{obx:{}}]) -
- dg1 DG1[](default [{}]) -
- ctd CTD? -
- prt PRT[](default [{}]) -
- omg_o19_timing OMG_O19_TIMING[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- omg_o19_prior_result OMG_O19_PRIOR_RESULT[](default [{}]) -
- blg BLG? -
- omg_o19_specimen OMG_O19_SPECIMEN[](default [{spm:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OMG_O19_ORDER_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_ORDER_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ctd CTD? -
- prt PRT[](default [{}]) -
- omg_o19_timing_prior OMG_O19_TIMING_PRIOR[](default [{tq1:{}}]) -
- omg_o19_observation_prior OMG_O19_OBSERVATION_PRIOR[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OMG_O19_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- omg_o19_patient_visit OMG_O19_PATIENT_VISIT? -
- omg_o19_insurance OMG_O19_INSURANCE[](default [{in1:{}}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OMG_O19_PATIENT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_PATIENT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OMG_O19_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMG_O19_PATIENT_VISIT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMG_O19_PRIOR_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_PRIOR_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- al1 AL1[](default [{}]) -
- omg_o19_patient_visit_prior OMG_O19_PATIENT_VISIT_PRIOR? -
- omg_o19_order_prior OMG_O19_ORDER_PRIOR[](default [{orc:{}, obr:{}}]) -
- omg_o19_patient_prior OMG_O19_PATIENT_PRIOR? -
health.hl7v27: OMG_O19_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- omg_o19_specimen_observation OMG_O19_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- omg_o19_container OMG_O19_CONTAINER[](default [{sac:{}}]) -
health.hl7v27: OMG_O19_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OMG_O19_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMG_O19_TIMING_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OMG_O19_TIMING_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMI_O23
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMI_O23_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMI_O23_PATIENT[](default [{pid:{}}]) - OMI_O23_PATIENT Segment Group
- 'order OMI_O23_ORDER[](default [{orc:{}, obr:{}}]) -
health.hl7v27: OMI_O23_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMI_O23_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMI_O23_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ctd CTD? -
- prt PRT[](default [{}]) -
- omi_o23_observation OMI_O23_OBSERVATION[](default [{obx:{}}]) -
- ipc IPC[](default [{}]) -
- omi_o23_timing OMI_O23_TIMING[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- dg1 DG1[](default [{}]) -
health.hl7v27: OMI_O23_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- omi_o23_patient_visit OMI_O23_PATIENT_VISIT? -
- prt PRT[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- omi_o23_insurance OMI_O23_INSURANCE[](default [{in1:{}}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OMI_O23_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMI_O23_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMI_O23_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OML_O21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OML_O21_PATIENT[](default [{pid:{}}]) - OML_O21_PATIENT Segment Group
- 'order OML_O21_ORDER[](default [{orc:{}}]) -
health.hl7v27: OML_O21_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- oml_o21_container_observation OML_O21_CONTAINER_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OML_O21_CONTAINER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_CONTAINER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O21_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OML_O21_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O21_OBSERVATION_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_OBSERVATION_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O21_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD? -
- oml_o21_observation OML_O21_OBSERVATION[](default [{obx:{}}]) -
- prt PRT[](default [{}]) -
- tcd TCD? -
- oml_o21_prior_result OML_O21_PRIOR_RESULT[](default [{}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- dg1 DG1[](default [{}]) -
- oml_o21_specimen OML_O21_SPECIMEN[](default [{spm:{}}]) -
health.hl7v27: OML_O21_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- cti CTI[](default [{}]) -
- oml_o21_observation_request OML_O21_OBSERVATION_REQUEST? -
- blg BLG? -
- oml_o21_timing OML_O21_TIMING[](default [{tq1:{}}]) -
health.hl7v27: OML_O21_ORDER_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_ORDER_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- oml_o21_timing_prior OML_O21_TIMING_PRIOR[](default [{tq1:{}}]) -
- oml_o21_observation_prior OML_O21_OBSERVATION_PRIOR[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O21_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o21_insurance OML_O21_INSURANCE[](default [{in1:{}}]) -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- oml_o21_patient_visit OML_O21_PATIENT_VISIT? -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O21_PATIENT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_PATIENT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OML_O21_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O21_PATIENT_VISIT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O21_PRIOR_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_PRIOR_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o21_order_prior OML_O21_ORDER_PRIOR[](default [{orc:{}, obr:{}}]) -
- al1 AL1[](default [{}]) -
- oml_o21_patient_prior OML_O21_PATIENT_PRIOR? -
- oml_o21_patient_visit_prior OML_O21_PATIENT_VISIT_PRIOR? -
health.hl7v27: OML_O21_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oml_o21_specimen_observation OML_O21_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- oml_o21_container OML_O21_CONTAINER[](default [{sac:{}}]) -
health.hl7v27: OML_O21_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O21_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O21_TIMING_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O21_TIMING_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O33
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OML_O33_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OML_O33_PATIENT[](default [{pid:{}}]) - OML_O33_PATIENT Segment Group
- specimen OML_O33_SPECIMEN[](default [{spm:{}}]) - OML_O33_SPECIMEN Segment Group
health.hl7v27: OML_O33_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OML_O33_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O33_OBSERVATION_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_OBSERVATION_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O33_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o33_prior_result OML_O33_PRIOR_RESULT[](default [{}]) -
- oml_o33_observation OML_O33_OBSERVATION[](default [{obx:{}}]) -
- prt PRT[](default [{}]) -
- tcd TCD? -
- obr OBR -
- nte NTE[](default [{}]) -
- dg1 DG1[](default [{}]) -
health.hl7v27: OML_O33_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- oml_o33_observation_request OML_O33_OBSERVATION_REQUEST? -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- oml_o33_timing OML_O33_TIMING[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- blg BLG? -
health.hl7v27: OML_O33_ORDER_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_ORDER_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- oml_o33_observation_prior OML_O33_OBSERVATION_PRIOR[](default [{obx:{}}]) -
- prt PRT[](default [{}]) -
- oml_o33_timing_prior OML_O33_TIMING_PRIOR[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O33_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o33_patient_visit OML_O33_PATIENT_VISIT? -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
- oml_o33_insurance OML_O33_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: OML_O33_PATIENT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_PATIENT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OML_O33_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O33_PATIENT_VISIT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O33_PRIOR_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_PRIOR_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o33_patient_prior OML_O33_PATIENT_PRIOR? -
- oml_o33_patient_visit_prior OML_O33_PATIENT_VISIT_PRIOR? -
- al1 AL1[](default [{}]) -
- oml_o33_order_prior OML_O33_ORDER_PRIOR[](default [{orc:{}, obr:{}}]) -
health.hl7v27: OML_O33_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oml_o33_specimen_observation OML_O33_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- sac SAC[](default [{}]) -
- oml_o33_order OML_O33_ORDER[](default [{orc:{}}]) -
health.hl7v27: OML_O33_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O33_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O33_TIMING_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O33_TIMING_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O35
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OML_O35_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OML_O35_PATIENT[](default [{pid:{}}]) - OML_O35_PATIENT Segment Group
- specimen OML_O35_SPECIMEN[](default [{spm:{}}]) - OML_O35_SPECIMEN Segment Group
health.hl7v27: OML_O35_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OML_O35_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O35_OBSERVATION_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_OBSERVATION_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O35_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- tcd TCD? -
- oml_o35_observation OML_O35_OBSERVATION[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- oml_o35_prior_result OML_O35_PRIOR_RESULT[](default [{}]) -
- dg1 DG1[](default [{}]) -
health.hl7v27: OML_O35_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- oml_o35_timing OML_O35_TIMING[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- blg BLG? -
- oml_o35_observation_request OML_O35_OBSERVATION_REQUEST? -
health.hl7v27: OML_O35_ORDER_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_ORDER_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- oml_o35_observation_prior OML_O35_OBSERVATION_PRIOR[](default [{obx:{}}]) -
- oml_o35_timing_prior OML_O35_TIMING_PRIOR[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O35_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o35_insurance OML_O35_INSURANCE[](default [{in1:{}}]) -
- prt PRT[](default [{}]) -
- oml_o35_patient_visit OML_O35_PATIENT_VISIT? -
- nk1 NK1[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O35_PATIENT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_PATIENT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OML_O35_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O35_PATIENT_VISIT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O35_PRIOR_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_PRIOR_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o35_patient_visit_prior OML_O35_PATIENT_VISIT_PRIOR? -
- oml_o35_patient_prior OML_O35_PATIENT_PRIOR? -
- al1 AL1[](default [{}]) -
- oml_o35_order_prior OML_O35_ORDER_PRIOR[](default [{orc:{}, obr:{}}]) -
health.hl7v27: OML_O35_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oml_o35_specimen_observation OML_O35_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- oml_o35_specimen_container OML_O35_SPECIMEN_CONTAINER[](default [{sac:{}}]) -
health.hl7v27: OML_O35_SPECIMEN_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_SPECIMEN_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- oml_o35_order OML_O35_ORDER[](default [{orc:{}}]) -
health.hl7v27: OML_O35_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O35_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O35_TIMING_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O35_TIMING_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OML_O39
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OML_O39_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OML_O39_PATIENT[](default [{pid:{}}]) - OML_O39_PATIENT Segment Group
- 'order OML_O39_ORDER[](default [{orc:{}}]) -
health.hl7v27: OML_O39_CONTAINER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_CONTAINER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O39_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OML_O39_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O39_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD? -
- prt PRT[](default [{}]) -
- tcd TCD? -
- oml_o39_specimen_shipment OML_O39_SPECIMEN_SHIPMENT[](default [{shp:{}}]) -
- oml_o39_observation OML_O39_OBSERVATION[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- dg1 DG1[](default [{}]) -
health.hl7v27: OML_O39_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- oml_o39_observation_request OML_O39_OBSERVATION_REQUEST? -
- oml_o39_timing OML_O39_TIMING[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- blg BLG? -
health.hl7v27: OML_O39_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pac PAC -
- oml_o39_specimen_in_package OML_O39_SPECIMEN_IN_PACKAGE[](default [{spm:{}}]) -
health.hl7v27: OML_O39_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o39_insurance OML_O39_INSURANCE[](default [{in1:{}}]) -
- oml_o39_patient_visit OML_O39_PATIENT_VISIT? -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OML_O39_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OML_O39_SHIPMENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_SHIPMENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O39_SPECIMEN_CONTAINER_IN_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_SPECIMEN_CONTAINER_IN_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o39_container_observation OML_O39_CONTAINER_OBSERVATION[](default [{obx:{}}]) -
- sac SAC -
health.hl7v27: OML_O39_SPECIMEN_IN_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_SPECIMEN_IN_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oml_o39_specimen_observation OML_O39_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- oml_o39_specimen_container_in_package OML_O39_SPECIMEN_CONTAINER_IN_PACKAGE[](default [{sac:{}}]) -
health.hl7v27: OML_O39_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OML_O39_SPECIMEN_SHIPMENT
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_SPECIMEN_SHIPMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oml_o39_shipment_observation OML_O39_SHIPMENT_OBSERVATION[](default [{obx:{}}]) -
- oml_o39_package OML_O39_PACKAGE[](default [{pac:{}}]) -
- shp SHP -
health.hl7v27: OML_O39_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OML_O39_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMN_O07
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMN_O07_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMN_O07_PATIENT[](default [{pid:{}}]) - OMN_O07_PATIENT Segment Group
- 'order OMN_O07_ORDER[](default [{orc:{}, rqd:{}}]) -
health.hl7v27: OMN_O07_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMN_O07_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMN_O07_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- omn_o07_observation OMN_O07_OBSERVATION[](default [{obx:{}}]) -
- rq1 RQ1? -
- rqd RQD -
- omn_o07_timing OMN_O07_TIMING[](default [{tq1:{}}]) -
- blg BLG? -
- nte NTE[](default [{}]) -
health.hl7v27: OMN_O07_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- omn_o07_patient_visit OMN_O07_PATIENT_VISIT? -
- pid PID -
- omn_o07_insurance OMN_O07_INSURANCE[](default [{in1:{}}]) -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OMN_O07_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMN_O07_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMN_O07_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMP_O09
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMP_O09_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMP_O09_PATIENT[](default [{pid:{}}]) - OMP_O09_PATIENT Segment Group
- 'order OMP_O09_ORDER[](default [{orc:{}, rxo:{}}]) -
health.hl7v27: OMP_O09_ADDITIONAL_DEMOGRAPHICS
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pd1 PD1 -
health.hl7v27: OMP_O09_COMPONENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_COMPONENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: OMP_O09_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMP_O09_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMP_O09_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- omp_o09_timing OMP_O09_TIMING[](default [{tq1:{}}]) -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- omp_o09_component OMP_O09_COMPONENT[](default [{rxc:{}}]) -
- omp_o09_observation OMP_O09_OBSERVATION[](default [{obx:{}}]) -
- rxo RXO -
- blg BLG? -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: OMP_O09_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- omp_o09_patient_visit OMP_O09_PATIENT_VISIT? -
- omp_o09_additional_demographics OMP_O09_ADDITIONAL_DEMOGRAPHICS? -
- pid PID -
- nte NTE[](default [{}]) -
- omp_o09_insurance OMP_O09_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: OMP_O09_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMP_O09_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMP_O09_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OMS_O05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OMS_O05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient OMS_O05_PATIENT[](default [{pid:{}}]) - OMS_O05_PATIENT Segment Group
- 'order OMS_O05_ORDER[](default [{orc:{}, rqd:{}}]) -
health.hl7v27: OMS_O05_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OMS_O05_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OMS_O05_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- oms_o05_timing OMS_O05_TIMING[](default [{tq1:{}}]) -
- rq1 RQ1? -
- rqd RQD -
- oms_o05_observation OMS_O05_OBSERVATION[](default [{obx:{}}]) -
- blg BLG? -
- nte NTE[](default [{}]) -
health.hl7v27: OMS_O05_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- oms_o05_patient_visit OMS_O05_PATIENT_VISIT? -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
- oms_o05_insurance OMS_O05_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: OMS_O05_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OMS_O05_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OMS_O05_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OPL_O37
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OPL_O37_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- prt PRT[](default []) - PRT Segment
- guarantor OPL_O37_GUARANTOR[](default [{gt1:{}}]) - OPL_O37_GUARANTOR Segment Group
- 'order OPL_O37_ORDER[](default [{}]) -
health.hl7v27: OPL_O37_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- opl_o37_container_observation OPL_O37_CONTAINER_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OPL_O37_CONTAINER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_CONTAINER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPL_O37_GUARANTOR
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_GUARANTOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1 -
- nte NTE[](default [{}]) -
health.hl7v27: OPL_O37_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: OPL_O37_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opl_o37_timing OPL_O37_TIMING[](default [{tq1:{}}]) -
- orc ORC -
- prt PRT[](default [{}]) -
- tcd TCD? -
- opl_o37_order_related_observation OPL_O37_ORDER_RELATED_OBSERVATION[](default [{obx:{}}]) -
- obr OBR -
- dg1 DG1[](default [{}]) -
health.hl7v27: OPL_O37_OBSERVATION_RESULT_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_OBSERVATION_RESULT_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPL_O37_OBSERVATIONS_ON_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_OBSERVATIONS_ON_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPL_O37_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opl_o37_specimen OPL_O37_SPECIMEN[](default [{spm:{}}]) -
- ft1 FT1[](default [{}]) -
- opl_o37_patient OPL_O37_PATIENT? -
- nk1 NK1[](default [{}]) -
- opl_o37_prior_result OPL_O37_PRIOR_RESULT? -
- cti CTI[](default [{}]) -
- blg BLG? -
health.hl7v27: OPL_O37_ORDER_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_ORDER_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- prt PRT[](default [{}]) -
- opl_o37_observation_result_group OPL_O37_OBSERVATION_RESULT_GROUP[](default [{obx:{}}]) -
- opl_o37_timing2 OPL_O37_TIMING2? -
- obr OBR -
health.hl7v27: OPL_O37_ORDER_RELATED_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_ORDER_RELATED_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPL_O37_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- al1 AL1[](default [{}]) -
- opl_o37_insurance OPL_O37_INSURANCE[](default [{in1:{}}]) -
- opl_o37_observations_on_patient OPL_O37_OBSERVATIONS_ON_PATIENT[](default [{obx:{}}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OPL_O37_PATIENT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_PATIENT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OPL_O37_PATIENT_VISIT_PRIOR
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_PATIENT_VISIT_PRIOR_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OPL_O37_PRIOR_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_PRIOR_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opl_o37_patient_visit_prior OPL_O37_PATIENT_VISIT_PRIOR? -
- opl_o37_patient_prior OPL_O37_PATIENT_PRIOR? -
- nk1 NK1[](default [{}]) -
- al1 AL1? -
- opl_o37_order_prior OPL_O37_ORDER_PRIOR[](default [{obr:{}}]) -
health.hl7v27: OPL_O37_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- opl_o37_container OPL_O37_CONTAINER[](default [{sac:{}}]) -
- opl_o37_observation_request OPL_O37_OBSERVATION_REQUEST[](default [{orc:{}, obr:{}}]) -
- opl_o37_specimen_observation OPL_O37_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OPL_O37_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPL_O37_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OPL_O37_TIMING2
Fields
- Fields Included from *SegmentComponent
- name string(default OPL_O37_TIMING2_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OPR_O38
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OPR_O38_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response OPR_O38_RESPONSE[](default [{}]) - OPR_O38_RESPONSE Segment Group
health.hl7v27: OPR_O38_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- obr OBR -
health.hl7v27: OPR_O38_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opr_o38_specimen OPR_O38_SPECIMEN[](default [{spm:{}}]) -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- pid PID? -
health.hl7v27: OPR_O38_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opr_o38_order OPR_O38_ORDER[](default [{}]) -
health.hl7v27: OPR_O38_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- opr_o38_specimen_observation OPR_O38_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- sac SAC[](default [{}]) -
- opr_o38_timing OPR_O38_TIMING[](default [{tq1:{}}]) -
- opr_o38_observation_request OPR_O38_OBSERVATION_REQUEST[](default [{orc:{}, obr:{}}]) -
health.hl7v27: OPR_O38_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OPR_O38_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default OPR_O38_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OPU_R25
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OPU_R25_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE? - NTE Segment
- pv1 PV1 - PV1 Segment
- pv2 PV2? - PV2 Segment
- prt PRT[](default []) - PRT Segment
- patient_visit_observation OPU_R25_PATIENT_VISIT_OBSERVATION[](default [{obx:{}}]) - OPU_R25_PATIENT_VISIT_OBSERVATION Segment Group
- accession_detail OPU_R25_ACCESSION_DETAIL[](default [{}]) - OPU_R25_ACCESSION_DETAIL Segment Group
health.hl7v27: OPU_R25_ACCESSION_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_ACCESSION_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- opu_r25_specimen OPU_R25_SPECIMEN[](default [{spm:{}}]) -
- nk1 NK1[](default [{}]) -
- opu_r25_patient OPU_R25_PATIENT? -
health.hl7v27: OPU_R25_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- inv INV? -
- sac SAC -
health.hl7v27: OPU_R25_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- prt PRT[](default [{}]) -
- opu_r25_timing_qty OPU_R25_TIMING_QTY[](default [{tq1:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- opu_r25_result OPU_R25_RESULT[](default [{obx:{}}]) -
health.hl7v27: OPU_R25_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- opu_r25_patient_observation OPU_R25_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- pid PID -
- pd1 PD1? -
health.hl7v27: OPU_R25_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OPU_R25_PATIENT_VISIT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_PATIENT_VISIT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OPU_R25_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OPU_R25_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- opu_r25_specimen_observation OPU_R25_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- opu_r25_container OPU_R25_CONTAINER[](default [{sac:{}}]) -
- opu_r25_order OPU_R25_ORDER[](default [{obr:{}}]) -
health.hl7v27: OPU_R25_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: OPU_R25_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default OPU_R25_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORA_R33
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORA_R33_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- orc ORC? - ORC Segment
health.hl7v27: ORB_O28
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORB_O28_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORB_O28_RESPONSE[](default [{}]) - ORB_O28_RESPONSE Segment Group
health.hl7v27: ORB_O28_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORB_O28_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- bpo BPO? -
- orc ORC -
- orb_o28_timing ORB_O28_TIMING[](default [{tq1:{}}]) -
health.hl7v27: ORB_O28_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORB_O28_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orb_o28_order ORB_O28_ORDER[](default [{orc:{}}]) -
- pid PID -
health.hl7v27: ORB_O28_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORB_O28_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orb_o28_patient ORB_O28_PATIENT? -
health.hl7v27: ORB_O28_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORB_O28_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORC
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 ORC_SEGMENT_NAME) - Segment Name
- orc1 ID(default "") - Order Control
- orc2 EI(default {}) - Placer Order Number
- orc3 EI(default {}) - Filler Order Number
- orc4 EI(default {}) - Placer Group Number
- orc5 ID(default "") - Order Status
- orc6 ID(default "") - Response Flag
- orc7 ST(default "") - Withdrawn field
- orc8 EIP(default {}) - Parent
- orc9 DTM(default "") - Date/Time of Transaction
- orc10 XCN[](default [{}]) - Entered By
- orc11 XCN[](default [{}]) - Verified By
- orc12 XCN[](default [{}]) - Ordering Provider
- orc13 PL(default {}) - Enterer's Location
- orc14 XTN(default {}) - Call Back Phone Number
- orc15 DTM(default "") - Order Effective Date/Time
- orc16 CWE(default {}) - Order Control Code Reason
- orc17 CWE(default {}) - Entering Organization
- orc18 CWE(default {}) - Entering Device
- orc19 XCN[](default [{}]) - Action By
- orc20 CWE(default {}) - Advanced Beneficiary Notice Code
- orc21 XON[](default [{}]) - Ordering Facility Name
- orc22 XAD[](default [{}]) - Ordering Facility Address
- orc23 XTN[](default [{}]) - Ordering Facility Phone Number
- orc24 XAD[](default [{}]) - Ordering Provider Address
- orc25 CWE(default {}) - Order Status Modifier
- orc26 CWE(default {}) - Advanced Beneficiary Notice Override Reason
- orc27 DTM(default "") - Filler's Expected Availability Date/Time
- orc28 CWE(default {}) - Confidentiality Code
- orc29 CWE(default {}) - Order Type
- orc30 CNE(default {}) - Enterer Authorization Mode
- orc31 CWE(default {}) - Parent Universal Service Identifier
- orc32 DT(default "") - Advanced Beneficiary Notice Date
- orc33 CX[](default [{}]) - Alternate Placer Order Number
health.hl7v27: ORD_O04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORD_O04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORD_O04_RESPONSE[](default [{}]) - ORD_O04_RESPONSE Segment Group
health.hl7v27: ORD_O04_ORDER_DIET
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_ORDER_DIET_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ord_o04_timing_diet ORD_O04_TIMING_DIET[](default [{tq1:{}}]) -
- nte NTE[](default [{}]) -
- ods ODS[](default [{}]) -
health.hl7v27: ORD_O04_ORDER_TRAY
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_ORDER_TRAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ord_o04_timing_tray ORD_O04_TIMING_TRAY[](default [{tq1:{}}]) -
- odt ODT[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ORD_O04_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORD_O04_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ord_o04_patient ORD_O04_PATIENT? -
- ord_o04_order_diet ORD_O04_ORDER_DIET[](default [{orc:{}}]) -
- ord_o04_order_tray ORD_O04_ORDER_TRAY[](default [{orc:{}}]) -
health.hl7v27: ORD_O04_TIMING_DIET
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_TIMING_DIET_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORD_O04_TIMING_TRAY
Fields
- Fields Included from *SegmentComponent
- name string(default ORD_O04_TIMING_TRAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORG
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 ORG_SEGMENT_NAME) - Segment Name
- org1 SI(default "") - Set ID - ORG
- org2 CWE(default {}) - Organization Unit Code
- org3 CWE(default {}) - Organization Unit Type Code
- org4 ID(default "") - Primary Org Unit Indicator
- org5 CX(default {}) - Practitioner Org Unit Identifier
- org6 CWE(default {}) - Health Care Provider Type Code
- org7 CWE(default {}) - Health Care Provider Classification Code
- org8 CWE(default {}) - Health Care Provider Area of Specialization Code
- org9 DR(default {}) - Effective Date Range
- org10 CWE(default {}) - Employment Status Code
- org11 ID(default "") - Board Approval Indicator
- org12 ID(default "") - Primary Care Physician Indicator
- org13 CWE[](default [{}]) - Cost Center Code
health.hl7v27: ORG_O20
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORG_O20_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORG_O20_RESPONSE[](default [{}]) - ORG_O20_RESPONSE Segment Group
health.hl7v27: ORG_O20_OBSERVATION_GROUP
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_OBSERVATION_GROUP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
health.hl7v27: ORG_O20_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- org_o20_specimen ORG_O20_SPECIMEN[](default [{spm:{}}]) -
- org_o20_observation_group ORG_O20_OBSERVATION_GROUP? -
- cti CTI[](default [{}]) -
- org_o20_timing ORG_O20_TIMING[](default [{tq1:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ORG_O20_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORG_O20_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- org_o20_patient ORG_O20_PATIENT? -
- org_o20_order ORG_O20_ORDER[](default [{orc:{}}]) -
health.hl7v27: ORG_O20_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- sac SAC[](default [{}]) -
health.hl7v27: ORG_O20_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORG_O20_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORI_O24
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORI_O24_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORI_O24_RESPONSE[](default [{}]) - ORI_O24_RESPONSE Segment Group
health.hl7v27: ORI_O24_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORI_O24_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ori_o24_timing ORI_O24_TIMING[](default [{tq1:{}}]) -
- prt PRT[](default [{}]) -
- ipc IPC[](default [{}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: ORI_O24_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORI_O24_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORI_O24_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORI_O24_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ori_o24_order ORI_O24_ORDER[](default [{orc:{}, obr:{}}]) -
- ori_o24_patient ORI_O24_PATIENT? -
health.hl7v27: ORI_O24_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORI_O24_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORL_O22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORL_O22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORL_O22_RESPONSE[](default [{pid:{}}]) - ORL_O22_RESPONSE Segment Group
health.hl7v27: ORL_O22_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O22_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- orl_o22_specimen ORL_O22_SPECIMEN[](default [{spm:{}}]) -
- obr OBR -
health.hl7v27: ORL_O22_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O22_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- orl_o22_observation_request ORL_O22_OBSERVATION_REQUEST? -
- orl_o22_timing ORL_O22_TIMING[](default [{tq1:{}}]) -
health.hl7v27: ORL_O22_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O22_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orl_o22_order ORL_O22_ORDER[](default [{orc:{}}]) -
- prt PRT[](default [{}]) -
- pid PID -
health.hl7v27: ORL_O22_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O22_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- sac SAC[](default [{}]) -
health.hl7v27: ORL_O22_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O22_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORL_O34
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORL_O34_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORL_O34_RESPONSE[](default [{pid:{}}]) - ORL_O34_RESPONSE Segment Group
health.hl7v27: ORL_O34_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obr OBR -
health.hl7v27: ORL_O34_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- orl_o34_timing ORL_O34_TIMING[](default [{tq1:{}}]) -
- prt PRT[](default [{}]) -
- orl_o34_observation_request ORL_O34_OBSERVATION_REQUEST? -
health.hl7v27: ORL_O34_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
- orl_o34_specimen ORL_O34_SPECIMEN[](default [{spm:{}}]) -
health.hl7v27: ORL_O34_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- orl_o34_order ORL_O34_ORDER[](default [{orc:{}}]) -
- sac SAC[](default [{}]) -
- orl_o34_specimen_observation ORL_O34_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: ORL_O34_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: ORL_O34_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O34_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORL_O36
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORL_O36_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORL_O36_RESPONSE[](default [{pid:{}}]) - ORL_O36_RESPONSE Segment Group
health.hl7v27: ORL_O36_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obr OBR -
health.hl7v27: ORL_O36_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- orl_o36_timing ORL_O36_TIMING[](default [{tq1:{}}]) -
- orl_o36_observation_request ORL_O36_OBSERVATION_REQUEST? -
- prt PRT[](default [{}]) -
health.hl7v27: ORL_O36_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- orl_o36_specimen ORL_O36_SPECIMEN[](default [{spm:{}}]) -
- pid PID -
health.hl7v27: ORL_O36_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- orl_o36_specimen_container ORL_O36_SPECIMEN_CONTAINER[](default [{sac:{}}]) -
- orl_o36_specimen_observation ORL_O36_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ORL_O36_SPECIMEN_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_SPECIMEN_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- orl_o36_order ORL_O36_ORDER[](default [{orc:{}}]) -
health.hl7v27: ORL_O36_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: ORL_O36_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O36_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORL_O40
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORL_O40_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORL_O40_RESPONSE[](default [{}]) - ORL_O40_RESPONSE Segment Group
health.hl7v27: ORL_O40_OBSERVATION_REQUEST
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_OBSERVATION_REQUEST_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orl_o40_specimen_shipment ORL_O40_SPECIMEN_SHIPMENT[](default [{shp:{}}]) -
- prt PRT[](default [{}]) -
- obr OBR -
health.hl7v27: ORL_O40_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- orl_o40_observation_request ORL_O40_OBSERVATION_REQUEST? -
- orl_o40_timing ORL_O40_TIMING[](default [{tq1:{}}]) -
health.hl7v27: ORL_O40_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pac PAC -
- orl_o40_specimen_in_package ORL_O40_SPECIMEN_IN_PACKAGE[](default [{spm:{}}]) -
health.hl7v27: ORL_O40_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- orl_o40_order ORL_O40_ORDER[](default [{orc:{}}]) -
- pid PID -
health.hl7v27: ORL_O40_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orl_o40_patient ORL_O40_PATIENT? -
health.hl7v27: ORL_O40_SPECIMEN_CONTAINER_IN_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_SPECIMEN_CONTAINER_IN_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
health.hl7v27: ORL_O40_SPECIMEN_IN_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_SPECIMEN_IN_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- orl_o40_specimen_container_in_package ORL_O40_SPECIMEN_CONTAINER_IN_PACKAGE[](default [{sac:{}}]) -
health.hl7v27: ORL_O40_SPECIMEN_SHIPMENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_SPECIMEN_SHIPMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orl_o40_package ORL_O40_PACKAGE[](default [{pac:{}}]) -
- shp SHP -
health.hl7v27: ORL_O40_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORL_O40_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORN_O08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORN_O08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORN_O08_RESPONSE[](default [{}]) - ORN_O08_RESPONSE Segment Group
health.hl7v27: ORN_O08_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORN_O08_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- orn_o08_timing ORN_O08_TIMING[](default [{tq1:{}}]) -
- rq1 RQ1? -
- rqd RQD -
- nte NTE[](default [{}]) -
health.hl7v27: ORN_O08_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORN_O08_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORN_O08_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORN_O08_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orn_o08_patient ORN_O08_PATIENT? -
- orn_o08_order ORN_O08_ORDER[](default [{orc:{}, rqd:{}}]) -
health.hl7v27: ORN_O08_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORN_O08_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORP_O10
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORP_O10_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORP_O10_RESPONSE[](default [{}]) - ORP_O10_RESPONSE Segment Group
health.hl7v27: ORP_O10_COMPONENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_COMPONENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: ORP_O10_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- orp_o10_order_detail ORP_O10_ORDER_DETAIL? -
- orp_o10_timing ORP_O10_TIMING[](default [{tq1:{}}]) -
health.hl7v27: ORP_O10_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- orp_o10_component ORP_O10_COMPONENT[](default [{rxc:{}}]) -
- rxo RXO -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ORP_O10_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORP_O10_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orp_o10_patient ORP_O10_PATIENT? -
- orp_o10_order ORP_O10_ORDER[](default [{orc:{}}]) -
health.hl7v27: ORP_O10_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORP_O10_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORS_O06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORS_O06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response ORS_O06_RESPONSE[](default [{}]) - ORS_O06_RESPONSE Segment Group
health.hl7v27: ORS_O06_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default ORS_O06_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- rq1 RQ1? -
- rqd RQD -
- ors_o06_timing ORS_O06_TIMING[](default [{tq1:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: ORS_O06_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORS_O06_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: ORS_O06_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default ORS_O06_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ors_o06_order ORS_O06_ORDER[](default [{orc:{}, rqd:{}}]) -
- ors_o06_patient ORS_O06_PATIENT? -
health.hl7v27: ORS_O06_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default ORS_O06_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORU_R01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORU_R01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- dsc DSC? - DSC Segment
- patient_result ORU_R01_PATIENT_RESULT[](default [{}]) - ORU_R01_PATIENT_RESULT Segment Group
health.hl7v27: ORU_R01_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: ORU_R01_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- ctd CTD? -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- oru_r01_timing_qty ORU_R01_TIMING_QTY[](default [{tq1:{}}]) -
- oru_r01_observation ORU_R01_OBSERVATION[](default [{obx:{}}]) -
- oru_r01_specimen ORU_R01_SPECIMEN[](default [{spm:{}}]) -
- cti CTI[](default [{}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: ORU_R01_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- oru_r01_patient_observation ORU_R01_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- nk1 NK1[](default [{}]) -
- pid PID -
- oru_r01_visit ORU_R01_VISIT? -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: ORU_R01_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: ORU_R01_PATIENT_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_PATIENT_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oru_r01_order_observation ORU_R01_ORDER_OBSERVATION[](default [{obr:{}}]) -
- oru_r01_patient ORU_R01_PATIENT? -
health.hl7v27: ORU_R01_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oru_r01_specimen_observation ORU_R01_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: ORU_R01_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: ORU_R01_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORU_R01_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R01_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: ORU_R30
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default ORU_R30_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- prt PRT[](default []) - PRT Segment
- orc ORC - ORC Segment
- obr OBR - OBR Segment
- nte NTE[](default []) - NTE Segment
- patient_observation ORU_R30_PATIENT_OBSERVATION[](default [{obx:{}}]) - ORU_R30_PATIENT_OBSERVATION Segment Group
- visit ORU_R30_VISIT[](default [{pv1:{}}]) - ORU_R30_VISIT Segment Group
- timing_qty ORU_R30_TIMING_QTY[](default [{tq1:{}}]) - ORU_R30_TIMING_QTY Segment Group
- observation ORU_R30_OBSERVATION[](default [{obx:{}}]) - ORU_R30_OBSERVATION Segment Group
health.hl7v27: ORU_R30_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R30_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: ORU_R30_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R30_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: ORU_R30_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R30_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: ORU_R30_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default ORU_R30_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OSM_R26
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OSM_R26_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- shipment OSM_R26_SHIPMENT[](default [{shp:{}}]) - OSM_R26_SHIPMENT Segment Group
health.hl7v27: OSM_R26_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- sac SAC -
- osm_r26_container_observation OSM_R26_CONTAINER_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OSM_R26_CONTAINER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_CONTAINER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OSM_R26_PACKAGE
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_PACKAGE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pac PAC -
- prt PRT[](default [{}]) -
- osm_r26_specimen OSM_R26_SPECIMEN[](default [{spm:{}}]) -
health.hl7v27: OSM_R26_PATIENT_INFORMATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_PATIENT_INFORMATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pid PID -
health.hl7v27: OSM_R26_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OSM_R26_PATIENT_VISIT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_PATIENT_VISIT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OSM_R26_SHIPMENT
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SHIPMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- shp SHP -
- osm_r26_shipping_observation OSM_R26_SHIPPING_OBSERVATION[](default [{obx:{}}]) -
- osm_r26_package OSM_R26_PACKAGE[](default [{pac:{}}]) -
health.hl7v27: OSM_R26_SHIPPING_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SHIPPING_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OSM_R26_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- prt PRT[](default [{}]) -
- osm_r26_subject_person_animal_identification OSM_R26_SUBJECT_PERSON_ANIMAL_IDENTIFICATION? -
- osm_r26_container OSM_R26_CONTAINER[](default [{sac:{}}]) -
- osm_r26_subject_population_location_identification OSM_R26_SUBJECT_POPULATION_LOCATION_IDENTIFICATION? -
- osm_r26_specimen_observation OSM_R26_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OSM_R26_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OSM_R26_SUBJECT_PERSON_ANIMAL_IDENTIFICATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SUBJECT_PERSON_ANIMAL_IDENTIFICATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- osm_r26_patient_observation OSM_R26_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- pid PID -
health.hl7v27: OSM_R26_SUBJECT_POPULATION_LOCATION_IDENTIFICATION
Fields
- Fields Included from *SegmentComponent
- name string(default OSM_R26_SUBJECT_POPULATION_LOCATION_IDENTIFICATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- nk1 NK1[](default [{}]) -
- pv1 PV1 -
- osm_r26_patient_information OSM_R26_PATIENT_INFORMATION? -
- osm_r26_patient_visit_observation OSM_R26_PATIENT_VISIT_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OSP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- osp1 CNE(default {}) - Occurrence Span Code
- osp2 DT(default "") - Occurrence Span Start Date
- osp3 DT(default "") - Occurrence Span Stop Date
health.hl7v27: OUL_R22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OUL_R22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE? - NTE Segment
- nk1 NK1[](default []) - NK1 Segment
- dsc DSC? - DSC Segment
- patient OUL_R22_PATIENT[](default [{pid:{}}]) - OUL_R22_PATIENT Segment Group
- specimen OUL_R22_SPECIMEN[](default [{spm:{}}]) - OUL_R22_SPECIMEN Segment Group
health.hl7v27: OUL_R22_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- inv INV? -
- sac SAC -
health.hl7v27: OUL_R22_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- prt PRT[](default [{}]) -
- oul_r22_timing_qty OUL_R22_TIMING_QTY[](default [{tq1:{}}]) -
- oul_r22_result OUL_R22_RESULT[](default [{obx:{}}]) -
- cti CTI[](default [{}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OUL_R22_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- oul_r22_patient_observation OUL_R22_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- pid PID -
- oul_r22_visit OUL_R22_VISIT? -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OUL_R22_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R22_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
- sid SID[](default [{}]) -
health.hl7v27: OUL_R22_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oul_r22_specimen_observation OUL_R22_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- oul_r22_container OUL_R22_CONTAINER[](default [{sac:{}}]) -
- spm SPM -
- oul_r22_order OUL_R22_ORDER[](default [{obr:{}}]) -
health.hl7v27: OUL_R22_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R22_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OUL_R22_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R22_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OUL_R23
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OUL_R23_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE? - NTE Segment
- nk1 NK1[](default []) - NK1 Segment
- dsc DSC? - DSC Segment
- patient OUL_R23_PATIENT[](default [{pid:{}}]) - OUL_R23_PATIENT Segment Group
- specimen OUL_R23_SPECIMEN[](default [{spm:{}}]) - OUL_R23_SPECIMEN Segment Group
health.hl7v27: OUL_R23_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- inv INV? -
- sac SAC -
- oul_r23_order OUL_R23_ORDER[](default [{obr:{}}]) -
health.hl7v27: OUL_R23_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- prt PRT[](default [{}]) -
- oul_r23_timing_qty OUL_R23_TIMING_QTY[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- oul_r23_result OUL_R23_RESULT[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: OUL_R23_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- oul_r23_visit OUL_R23_VISIT? -
- pid PID -
- oul_r23_patient_observation OUL_R23_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OUL_R23_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R23_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
- sid SID[](default [{}]) -
health.hl7v27: OUL_R23_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oul_r23_specimen_observation OUL_R23_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
- oul_r23_container OUL_R23_CONTAINER[](default [{sac:{}}]) -
health.hl7v27: OUL_R23_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R23_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OUL_R23_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R23_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OUL_R24
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default OUL_R24_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE? - NTE Segment
- nk1 NK1[](default []) - NK1 Segment
- dsc DSC? - DSC Segment
- patient OUL_R24_PATIENT[](default [{pid:{}}]) - OUL_R24_PATIENT Segment Group
- 'order OUL_R24_ORDER[](default [{obr:{}}]) -
health.hl7v27: OUL_R24_CONTAINER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_CONTAINER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- inv INV? -
- sac SAC -
health.hl7v27: OUL_R24_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC? -
- prt PRT[](default [{}]) -
- oul_r24_timing_qty OUL_R24_TIMING_QTY[](default [{tq1:{}}]) -
- oul_r24_specimen OUL_R24_SPECIMEN[](default [{spm:{}}]) -
- cti CTI[](default [{}]) -
- obr OBR -
- nte NTE[](default [{}]) -
- oul_r24_result OUL_R24_RESULT[](default [{obx:{}}]) -
health.hl7v27: OUL_R24_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- oul_r24_visit OUL_R24_VISIT? -
- oul_r24_patient_observation OUL_R24_PATIENT_OBSERVATION[](default [{obx:{}}]) -
- prt PRT[](default [{}]) -
- pid PID -
- pd1 PD1? -
- nte NTE[](default [{}]) -
health.hl7v27: OUL_R24_PATIENT_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_PATIENT_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R24_RESULT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_RESULT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- tcd TCD? -
- nte NTE[](default [{}]) -
- sid SID[](default [{}]) -
health.hl7v27: OUL_R24_SPECIMEN
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_SPECIMEN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- spm SPM -
- oul_r24_container OUL_R24_CONTAINER[](default [{sac:{}}]) -
- oul_r24_specimen_observation OUL_R24_SPECIMEN_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: OUL_R24_SPECIMEN_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_SPECIMEN_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: OUL_R24_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: OUL_R24_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default OUL_R24_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: OVR
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 OVR_SEGMENT_NAME) - Segment Name
- ovr1 CWE(default {}) - Business Rule Override Type
- ovr2 CWE(default {}) - Business Rule Override Code
- ovr3 TX(default "") - Override Comments
- ovr4 XCN(default {}) - Override Entered By
- ovr5 XCN(default {}) - Override Authorized By
health.hl7v27: PAC
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 PAC_SEGMENT_NAME) - Segment Name
- pac1 SI(default "") - Set Id - PAC
- pac2 EI(default {}) - Package ID
- pac3 EI(default {}) - Parent Package ID
- pac4 NA(default {}) - Position in Parent Package
- pac5 CWE(default {}) - Package Type
- pac6 CWE[](default [{}]) - Package Condition
- pac7 CWE[](default [{}]) - Package Handling Code
- pac8 CWE[](default [{}]) - Package Risk Code
health.hl7v27: PCE
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 PCE_SEGMENT_NAME) - Segment Name
- pce1 SI(default "") - Set ID - PCE
- pce2 CX(default {}) - Cost Center Account Number
- pce3 CWE(default {}) - Transaction Code
- pce4 CP(default {}) - Transaction amount - unit
health.hl7v27: PCR
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 PCR_SEGMENT_NAME) - Segment Name
- pcr1 CWE(default {}) - Implicated Product
- pcr2 IS(default "") - Generic Product
- pcr3 CWE(default {}) - Product Class
- pcr4 CQ(default {}) - Total Duration Of Therapy
- pcr5 DTM(default "") - Product Manufacture Date
- pcr6 DTM(default "") - Product Expiration Date
- pcr7 DTM(default "") - Product Implantation Date
- pcr8 DTM(default "") - Product Explantation Date
- pcr9 CWE(default {}) - Single Use Device
- pcr10 CWE(default {}) - Indication For Product Use
- pcr11 CWE(default {}) - Product Problem
- pcr12 ST(default "") - Product Serial/Lot Number
- pcr13 CWE(default {}) - Product Available For Inspection
- pcr14 CWE(default {}) - Product Evaluation Performed
- pcr15 CWE(default {}) - Product Evaluation Status
- pcr16 CWE(default {}) - Product Evaluation Results
- pcr17 ID(default "") - Evaluated Product Source
- pcr18 DTM(default "") - Date Product Returned To Manufacturer
- pcr19 ID(default "") - Device Operator Qualifications
- pcr20 ID(default "") - Relatedness Assessment
- pcr21 ID(default "") - Action Taken In Response To The Event
- pcr22 ID(default "") - Event Causality Observations
- pcr23 ID(default "") - Indirect Exposure Mechanism
health.hl7v27: PD1
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 PD1_SEGMENT_NAME) - Segment Name
- pd11 CWE[](default [{}]) - Living Dependency
- pd12 CWE(default {}) - Living Arrangement
- pd13 XON[](default [{}]) - Patient Primary Facility
- pd14 ST(default "") - Withdrawn field
- pd15 CWE(default {}) - Student Indicator
- pd16 CWE(default {}) - Handicap
- pd17 CWE(default {}) - Living Will Code
- pd18 CWE(default {}) - Organ Donor Code
- pd19 ID(default "") - Separate Bill
- pd110 CX[](default [{}]) - Duplicate Patient
- pd111 CWE(default {}) - Publicity Code
- pd112 ID(default "") - Protection Indicator
- pd113 DT(default "") - Protection Indicator Effective Date
- pd114 XON[](default [{}]) - Place of Worship
- pd115 CWE[](default [{}]) - Advance Directive Code
- pd116 CWE(default {}) - Immunization Registry Status
- pd117 DT(default "") - Immunization Registry Status Effective Date
- pd118 DT(default "") - Publicity Code Effective Date
- pd119 CWE(default {}) - Military Branch
- pd120 CWE(default {}) - Military Rank/Grade
- pd121 CWE(default {}) - Military Status
- pd122 DT(default "") - Advance Directive Last Verified Date
health.hl7v27: PDA
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 PDA_SEGMENT_NAME) - Segment Name
- pda1 CWE[](default [{}]) - Death Cause Code
- pda2 PL(default {}) - Death Location
- pda3 ID(default "") - Death Certified Indicator
- pda4 DTM(default "") - Death Certificate Signed Date/Time
- pda5 XCN(default {}) - Death Certified By
- pda6 ID(default "") - Autopsy Indicator
- pda7 DR(default {}) - Autopsy Start and End Date/Time
- pda8 XCN(default {}) - Autopsy Performed By
- pda9 ID(default "") - Coroner Indicator
health.hl7v27: PDC
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 PDC_SEGMENT_NAME) - Segment Name
- pdc1 XON[](default [{}]) - Manufacturer/Distributor
- pdc2 CWE(default {}) - Country
- pdc3 ST(default "") - Brand Name
- pdc4 ST(default "") - Device Family Name
- pdc5 CWE(default {}) - Generic Name
- pdc6 ST[](default [""]) - Model Identifier
- pdc7 ST(default "") - Catalogue Identifier
- pdc8 ST[](default [""]) - Other Identifier
- pdc9 CWE(default {}) - Product Code
- pdc10 ID(default "") - Marketing Basis
- pdc11 ST(default "") - Marketing Approval ID
- pdc12 CQ(default {}) - Labeled Shelf Life
- pdc13 CQ(default {}) - Expected Shelf Life
- pdc14 DTM(default "") - Date First Marketed
- pdc15 DTM(default "") - Date Last Marketed
health.hl7v27: PEO
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 PEO_SEGMENT_NAME) - Segment Name
- peo1 CWE[](default [{}]) - Event Identifiers Used
- peo2 CWE[](default [{}]) - Event Symptom/Diagnosis Code
- peo3 DTM(default "") - Event Onset Date/Time
- peo4 DTM(default "") - Event Exacerbation Date/Time
- peo5 DTM(default "") - Event Improved Date/Time
- peo6 DTM(default "") - Event Ended Data/Time
- peo7 XAD[](default [{}]) - Event Location Occurred Address
- peo8 ID[](default [""]) - Event Qualification
- peo9 ID(default "") - Event Serious
- peo10 ID(default "") - Event Expected
- peo11 ID[](default [""]) - Event Outcome
- peo12 ID(default "") - Patient Outcome
- peo13 FT[](default [""]) - Event Description from Others
- peo14 FT[](default [""]) - Event Description from Original Reporter
- peo15 FT[](default [""]) - Event Description from Patient
- peo16 FT[](default [""]) - Event Description from Practitioner
- peo17 FT[](default [""]) - Event Description from Autopsy
- peo18 CWE[](default [{}]) - Cause Of Death
- peo19 XPN[](default [{}]) - Primary Observer Name
- peo20 XAD[](default [{}]) - Primary Observer Address
- peo21 XTN[](default [{}]) - Primary Observer Telephone
- peo22 ID(default "") - Primary Observer's Qualification
- peo23 ID(default "") - Confirmation Provided By
- peo24 DTM(default "") - Primary Observer Aware Date/Time
- peo25 ID(default "") - Primary Observer's identity May Be Divulged
health.hl7v27: PES
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 PES_SEGMENT_NAME) - Segment Name
- pes1 XON[](default [{}]) - Sender Organization Name
- pes2 XCN[](default [{}]) - Sender Individual Name
- pes3 XAD[](default [{}]) - Sender Address
- pes4 XTN[](default [{}]) - Sender Telephone
- pes5 EI(default {}) - Sender Event Identifier
- pes6 NM(default "") - Sender Sequence Number
- pes7 FT[](default [""]) - Sender Event Description
- pes8 FT(default "") - Sender Comment
- pes9 DTM(default "") - Sender Aware Date/Time
- pes10 DTM(default "") - Event Report Date
- pes11 ID(default "") - Event Report Timing/Type
- pes12 ID(default "") - Event Report Source
- pes13 ID[](default [""]) - Event Reported To
health.hl7v27: PEX_P07
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PEX_P07_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- pid PID - PID Segment
- pd1 PD1? - PD1 Segment
- prt PRT[](default []) - PRT Segment
- nte NTE[](default []) - NTE Segment
- visit PEX_P07_VISIT[](default [{pv1:{}}]) - PEX_P07_VISIT Segment Group
- experience PEX_P07_EXPERIENCE[](default [{pes:{}}]) - PEX_P07_EXPERIENCE Segment Group
health.hl7v27: PEX_P07_ASSOCIATED_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_ASSOCIATED_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: PEX_P07_ASSOCIATED_PERSON
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_ASSOCIATED_PERSON_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB[](default [{}]) -
- pex_p07_associated_observation PEX_P07_ASSOCIATED_OBSERVATION[](default [{obx:{}}]) -
- nk1 NK1 -
- pex_p07_associated_rx_admin PEX_P07_ASSOCIATED_RX_ADMIN[](default [{rxa:{}}]) -
- pex_p07_associated_rx_order PEX_P07_ASSOCIATED_RX_ORDER? -
health.hl7v27: PEX_P07_ASSOCIATED_RX_ADMIN
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_ASSOCIATED_RX_ADMIN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- rxa RXA -
- rxr RXR? -
health.hl7v27: PEX_P07_ASSOCIATED_RX_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_ASSOCIATED_RX_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pex_p07_nk1_timing_qty PEX_P07_NK1_TIMING_QTY[](default [{tq1:{}}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: PEX_P07_EXPERIENCE
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_EXPERIENCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pex_p07_pex_observation PEX_P07_PEX_OBSERVATION[](default [{peo:{}}]) -
- pes PES -
health.hl7v27: PEX_P07_NK1_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_NK1_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: PEX_P07_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
health.hl7v27: PEX_P07_PEX_CAUSE
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_PEX_CAUSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB[](default [{}]) -
- pex_p07_observation PEX_P07_OBSERVATION[](default [{obx:{}}]) -
- pex_p07_rx_order PEX_P07_RX_ORDER? -
- pex_p07_associated_person PEX_P07_ASSOCIATED_PERSON? -
- pex_p07_rx_administration PEX_P07_RX_ADMINISTRATION[](default [{rxa:{}}]) -
- pex_p07_study PEX_P07_STUDY[](default [{csr:{}}]) -
- pcr PCR -
- nte NTE[](default [{}]) -
health.hl7v27: PEX_P07_PEX_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_PEX_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pex_p07_pex_cause PEX_P07_PEX_CAUSE[](default [{pcr:{}}]) -
- peo PEO -
health.hl7v27: PEX_P07_RX_ADMINISTRATION
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_RX_ADMINISTRATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- rxa RXA -
- rxr RXR? -
health.hl7v27: PEX_P07_RX_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_RX_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pex_p07_timing_qty PEX_P07_TIMING_QTY[](default [{tq1:{}}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
health.hl7v27: PEX_P07_STUDY
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_STUDY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- csp CSP[](default [{}]) -
- csr CSR -
health.hl7v27: PEX_P07_TIMING_QTY
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_TIMING_QTY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: PEX_P07_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PEX_P07_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PGL_PC6
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PGL_PC6_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- patient_visit PGL_PC6_PATIENT_VISIT[](default [{pv1:{}}]) - PGL_PC6_PATIENT_VISIT Segment Group
- goal PGL_PC6_GOAL[](default [{gol:{}}]) - PGL_PC6_GOAL Segment Group
health.hl7v27: PGL_PC6_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PGL_PC6_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pgl_pc6_goal_role PGL_PC6_GOAL_ROLE[](default [{rol:{}}]) -
- pgl_pc6_order PGL_PC6_ORDER[](default [{orc:{}}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- pgl_pc6_observation PGL_PC6_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
- pgl_pc6_pathway PGL_PC6_PATHWAY[](default [{pth:{}}]) -
- pgl_pc6_problem PGL_PC6_PROBLEM[](default [{prb:{}}]) -
health.hl7v27: PGL_PC6_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PGL_PC6_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PGL_PC6_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pgl_pc6_order_detail PGL_PC6_ORDER_DETAIL? -
- orc ORC -
health.hl7v27: PGL_PC6_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pgl_pc6_order_observation PGL_PC6_ORDER_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- pgl_pc6_choice PGL_PC6_CHOICE -
- nte NTE[](default [{}]) -
health.hl7v27: PGL_PC6_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PGL_PC6_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: PGL_PC6_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PGL_PC6_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- 'var 'VAR[](default [{}]) -
- pgl_pc6_problem_role PGL_PC6_PROBLEM_ROLE[](default [{rol:{}}]) -
- pgl_pc6_problem_observation PGL_PC6_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PGL_PC6_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PGL_PC6_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PGL_PC6_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PID
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 PID_SEGMENT_NAME) - Segment Name
- pid1 SI(default "") - Set ID - PID
- pid2 ST(default "") - Withdrawn field
- pid3 CX[](default [{}]) - Patient Identifier List
- pid4 ST(default "") - Withdrawn field
- pid5 XPN[](default [{}]) - Patient Name
- pid6 XPN[](default [{}]) - Mother's Maiden Name
- pid7 DTM(default "") - Date/Time of Birth
- pid8 CWE(default {}) - Administrative Sex
- pid9 ST(default "") - Withdrawn field
- pid10 CWE[](default [{}]) - Race
- pid11 XAD[](default [{}]) - Patient Address
- pid12 ST(default "") - Withdrawn field
- pid13 XTN[](default [{}]) - Phone Number - Home
- pid14 XTN[](default [{}]) - Phone Number - Business
- pid15 CWE(default {}) - Primary Language
- pid16 CWE(default {}) - Marital Status
- pid17 CWE(default {}) - Religion
- pid18 CX(default {}) - Patient Account Number
- pid19 ST(default "") - Withdrawn field
- pid20 ST(default "") - Withdrawn field
- pid21 CX[](default [{}]) - Mother's Identifier
- pid22 CWE[](default [{}]) - Ethnic Group
- pid23 ST(default "") - Birth Place
- pid24 ID(default "") - Multiple Birth Indicator
- pid25 NM(default "") - Birth Order
- pid26 CWE[](default [{}]) - Citizenship
- pid27 CWE(default {}) - Veterans Military Status
- pid28 ST(default "") - Withdrawn field
- pid29 DTM(default "") - Patient Death Date and Time
- pid30 ID(default "") - Patient Death Indicator
- pid31 ID(default "") - Identity Unknown Indicator
- pid32 CWE[](default [{}]) - Identity Reliability Code
- pid33 DTM(default "") - Last Update Date/Time
- pid34 HD(default {}) - Last Update Facility
- pid35 CWE(default {}) - Species Code
- pid36 CWE(default {}) - Breed Code
- pid37 ST(default "") - Strain
- pid38 CWE(default {}) - Production Class Code
- pid39 CWE[](default [{}]) - Tribal Citizenship
- pid40 XTN[](default [{}]) - Patient Telecommunication Information
health.hl7v27: PIP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- pip1 CWE(default {}) - Privilege
- pip2 CWE(default {}) - Privilege Class
- pip3 DT(default "") - Expiration Date
- pip4 DT(default "") - Activation Date
- pip5 EI(default {}) - Facility
health.hl7v27: PKG
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 PKG_SEGMENT_NAME) - Segment Name
- pkg1 SI(default "") - Set Id - PKG
- pkg2 CWE(default {}) - Packaging Units
- pkg3 CNE(default {}) - Default Order Unit Of Measure Indicator
- pkg4 NM(default "") - Package Quantity
- pkg5 CP(default {}) - Price
- pkg6 CP(default {}) - Future Item Price
- pkg7 DTM(default "") - Future Item Price Effective Date
health.hl7v27: PL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- pl1 HD(default {}) - Point of Care
- pl2 HD(default {}) - Room
- pl3 HD(default {}) - Bed
- pl4 HD(default {}) - Facility
- pl5 IS(default "") - Location Status
- pl6 IS(default "") - Person Location Type
- pl7 HD(default {}) - Building
- pl8 HD(default {}) - Floor
- pl9 ST(default "") - Location Description
- pl10 EI(default {}) - Comprehensive Location Identifier
- pl11 HD(default {}) - Assigning Authority for Location
health.hl7v27: PLN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- pln1 ST(default "") - ID Number
- pln2 CWE(default {}) - Type of ID Number
- pln3 ST(default "") - State/other Qualifying Information
- pln4 DT(default "") - Expiration Date
health.hl7v27: PMT
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 PMT_SEGMENT_NAME) - Segment Name
- pmt1 EI(default {}) - Payment/Remittance Advice Number
- pmt2 DTM(default "") - Payment/Remittance Effective Date/Time
- pmt3 DTM(default "") - Payment/Remittance Expiration Date/Time
- pmt4 CWE(default {}) - Payment Method
- pmt5 DTM(default "") - Payment/Remittance Date/Time
- pmt6 CP(default {}) - Payment/Remittance Amount
- pmt7 EI(default {}) - Check Number
- pmt8 XON(default {}) - Payee Bank Identification
- pmt9 ST(default "") - Payee Transit Number
- pmt10 CX(default {}) - Payee Bank Account ID
- pmt11 XON(default {}) - Payment Organization
- pmt12 ST(default "") - ESR-Code-Line
health.hl7v27: PMU_B01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PMU_B01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- stf STF - STF Segment
- pra PRA[](default []) - PRA Segment
- org ORG[](default []) - ORG Segment
- aff AFF[](default []) - AFF Segment
- lan LAN[](default []) - LAN Segment
- edu EDU[](default []) - EDU Segment
- cer CER[](default []) - CER Segment
- nk1 NK1[](default []) - NK1 Segment
- rol ROL[](default []) - ROL Segment
health.hl7v27: PMU_B03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PMU_B03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- stf STF - STF Segment
health.hl7v27: PMU_B04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PMU_B04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- stf STF - STF Segment
- pra PRA[](default []) - PRA Segment
- org ORG[](default []) - ORG Segment
health.hl7v27: PMU_B07
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PMU_B07_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- stf STF - STF Segment
- pra PRA? - PRA Segment
- certificate PMU_B07_CERTIFICATE[](default [{cer:{}}]) - PMU_B07_CERTIFICATE Segment Group
health.hl7v27: PMU_B07_CERTIFICATE
Fields
- Fields Included from *SegmentComponent
- name string(default PMU_B07_CERTIFICATE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- cer CER -
- rol ROL[](default [{}]) -
health.hl7v27: PMU_B08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PMU_B08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- evn EVN - EVN Segment
- stf STF - STF Segment
- pra PRA? - PRA Segment
- cer CER[](default []) - CER Segment
health.hl7v27: PPG_PCG
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PPG_PCG_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- patient_visit PPG_PCG_PATIENT_VISIT[](default [{pv1:{}}]) - PPG_PCG_PATIENT_VISIT Segment Group
- pathway PPG_PCG_PATHWAY[](default [{pth:{}}]) - PPG_PCG_PATHWAY Segment Group
health.hl7v27: PPG_PCG_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PPG_PCG_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppg_pcg_problem PPG_PCG_PROBLEM[](default [{prb:{}}]) -
- ppg_pcg_goal_role PPG_PCG_GOAL_ROLE[](default [{rol:{}}]) -
- ppg_pcg_order PPG_PCG_ORDER[](default [{orc:{}}]) -
- gol GOL -
- ppg_pcg_goal_observation PPG_PCG_GOAL_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPG_PCG_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ppg_pcg_order_detail PPG_PCG_ORDER_DETAIL? -
health.hl7v27: PPG_PCG_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppg_pcg_choice PPG_PCG_CHOICE -
- ppg_pcg_order_observation PPG_PCG_ORDER_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pth PTH -
- ppg_pcg_goal PPG_PCG_GOAL[](default [{gol:{}}]) -
- 'var 'VAR[](default [{}]) -
- ppg_pcg_pathway_role PPG_PCG_PATHWAY_ROLE[](default [{rol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_PATHWAY_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PATHWAY_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPG_PCG_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PPG_PCG_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- 'var 'VAR[](default [{}]) -
- ppg_pcg_problem_role PPG_PCG_PROBLEM_ROLE[](default [{rol:{}}]) -
- ppg_pcg_problem_observation PPG_PCG_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPG_PCG_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPG_PCG_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPN
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ppn1 ST(default "") - Person Identifier
- ppn2 FN(default {}) - Family Name
- ppn3 ST(default "") - Given Name
- ppn4 ST(default "") - Second and Further Given Names or Initials Thereof
- ppn5 ST(default "") - Suffix (e.g., JR or III)
- ppn6 ST(default "") - Prefix (e.g., DR)
- ppn8 CWE(default {}) - Source Table
- ppn9 HD(default {}) - Assigning Authority
- ppn10 ID(default "") - Name Type Code
- ppn11 ST(default "") - Identifier Check Digit
- ppn12 ID(default "") - Check Digit Scheme
- ppn13 ID(default "") - Identifier Type Code
- ppn14 HD(default {}) - Assigning Facility
- ppn15 DTM(default "") - Date/Time Action Performed
- ppn16 ID(default "") - Name Representation Code
- ppn17 CWE(default {}) - Name Context
- ppn19 ID(default "") - Name Assembly Order
- ppn20 DTM(default "") - Effective Date
- ppn21 DTM(default "") - Expiration Date
- ppn22 ST(default "") - Professional Suffix
- ppn23 CWE(default {}) - Assigning Jurisdiction
- ppn24 CWE(default {}) - Assigning Agency or Department
- ppn25 ST(default "") - Security Check
- ppn26 ID(default "") - Security Check Scheme
health.hl7v27: PPP_PCB
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PPP_PCB_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- patient_visit PPP_PCB_PATIENT_VISIT[](default [{pv1:{}}]) - PPP_PCB_PATIENT_VISIT Segment Group
- pathway PPP_PCB_PATHWAY[](default [{pth:{}}]) - PPP_PCB_PATHWAY Segment Group
health.hl7v27: PPP_PCB_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PPP_PCB_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppp_pcb_goal_role PPP_PCB_GOAL_ROLE[](default [{rol:{}}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
- ppp_pcb_goal_observation PPP_PCB_GOAL_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: PPP_PCB_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPP_PCB_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPP_PCB_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ppp_pcb_order_detail PPP_PCB_ORDER_DETAIL? -
health.hl7v27: PPP_PCB_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppp_pcb_choice PPP_PCB_CHOICE -
- 'var 'VAR[](default [{}]) -
- ppp_pcb_order_observation PPP_PCB_ORDER_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPP_PCB_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPP_PCB_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppp_pcb_problem PPP_PCB_PROBLEM[](default [{prb:{}}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
- ppp_pcb_pathway_role PPP_PCB_PATHWAY_ROLE[](default [{rol:{}}]) -
health.hl7v27: PPP_PCB_PATHWAY_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PATHWAY_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPP_PCB_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PPP_PCB_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- ppp_pcb_problem_observation PPP_PCB_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- ppp_pcb_problem_role PPP_PCB_PROBLEM_ROLE[](default [{rol:{}}]) -
- ppp_pcb_order PPP_PCB_ORDER[](default [{orc:{}}]) -
- ppp_pcb_goal PPP_PCB_GOAL[](default [{gol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPP_PCB_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPP_PCB_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPP_PCB_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPR_PC1
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PPR_PC1_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- patient_visit PPR_PC1_PATIENT_VISIT[](default [{pv1:{}}]) - PPR_PC1_PATIENT_VISIT Segment Group
- problem PPR_PC1_PROBLEM[](default [{prb:{}}]) - PPR_PC1_PROBLEM Segment Group
health.hl7v27: PPR_PC1_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PPR_PC1_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppr_pc1_goal_observation PPR_PC1_GOAL_OBSERVATION[](default [{obx:{}}]) -
- ppr_pc1_goal_role PPR_PC1_GOAL_ROLE[](default [{rol:{}}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPR_PC1_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPR_PC1_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPR_PC1_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ppr_pc1_order_detail PPR_PC1_ORDER_DETAIL? -
health.hl7v27: PPR_PC1_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppr_pc1_order_observation PPR_PC1_ORDER_OBSERVATION[](default [{obx:{}}]) -
- ppr_pc1_choice PPR_PC1_CHOICE -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPR_PC1_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPR_PC1_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: PPR_PC1_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PPR_PC1_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- ppr_pc1_problem_role PPR_PC1_PROBLEM_ROLE[](default [{rol:{}}]) -
- 'var 'VAR[](default [{}]) -
- ppr_pc1_order PPR_PC1_ORDER[](default [{orc:{}}]) -
- ppr_pc1_problem_observation PPR_PC1_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- ppr_pc1_goal PPR_PC1_GOAL[](default [{gol:{}}]) -
- nte NTE[](default [{}]) -
- ppr_pc1_pathway PPR_PC1_PATHWAY[](default [{pth:{}}]) -
health.hl7v27: PPR_PC1_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPR_PC1_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPR_PC1_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPT_PCL
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PPT_PCL_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- patient PPT_PCL_PATIENT[](default [{pid:{}}]) - PPT_PCL_PATIENT Segment Group
health.hl7v27: PPT_PCL_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PPT_PCL_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppt_pcl_order PPT_PCL_ORDER[](default [{orc:{}}]) -
- gol GOL -
- ppt_pcl_problem PPT_PCL_PROBLEM[](default [{prb:{}}]) -
- 'var 'VAR[](default [{}]) -
- ppt_pcl_goal_observation PPT_PCL_GOAL_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
- ppt_pcl_goal_role PPT_PCL_GOAL_ROLE[](default [{rol:{}}]) -
health.hl7v27: PPT_PCL_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPT_PCL_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPT_PCL_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppt_pcl_order_detail PPT_PCL_ORDER_DETAIL? -
- orc ORC -
health.hl7v27: PPT_PCL_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
- ppt_pcl_order_observation PPT_PCL_ORDER_OBSERVATION[](default [{obx:{}}]) -
- ppt_pcl_choice PPT_PCL_CHOICE -
health.hl7v27: PPT_PCL_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPT_PCL_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppt_pcl_goal PPT_PCL_GOAL[](default [{gol:{}}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- ppt_pcl_pathway_role PPT_PCL_PATHWAY_ROLE[](default [{rol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPT_PCL_PATHWAY_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PATHWAY_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPT_PCL_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppt_pcl_patient_visit PPT_PCL_PATIENT_VISIT? -
- pid PID -
- ppt_pcl_pathway PPT_PCL_PATHWAY[](default [{pth:{}}]) -
health.hl7v27: PPT_PCL_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PPT_PCL_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- 'var 'VAR[](default [{}]) -
- ppt_pcl_problem_role PPT_PCL_PROBLEM_ROLE[](default [{rol:{}}]) -
- ppt_pcl_problem_observation PPT_PCL_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPT_PCL_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPT_PCL_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPT_PCL_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPV_PCA
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PPV_PCA_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- patient PPV_PCA_PATIENT[](default [{pid:{}}]) - PPV_PCA_PATIENT Segment Group
health.hl7v27: PPV_PCA_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PPV_PCA_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- ppv_pca_goal_role PPV_PCA_GOAL_ROLE[](default [{rol:{}}]) -
- ppv_pca_problem PPV_PCA_PROBLEM[](default [{prb:{}}]) -
- ppv_pca_order PPV_PCA_ORDER[](default [{orc:{}}]) -
- ppv_pca_goal_observation PPV_PCA_GOAL_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
- ppv_pca_goal_pathway PPV_PCA_GOAL_PATHWAY[](default [{pth:{}}]) -
health.hl7v27: PPV_PCA_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPV_PCA_GOAL_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_GOAL_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: PPV_PCA_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PPV_PCA_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ppv_pca_order_detail PPV_PCA_ORDER_DETAIL? -
health.hl7v27: PPV_PCA_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppv_pca_order_observation PPV_PCA_ORDER_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- ppv_pca_choice PPV_PCA_CHOICE -
- nte NTE[](default [{}]) -
health.hl7v27: PPV_PCA_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPV_PCA_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ppv_pca_patient_visit PPV_PCA_PATIENT_VISIT? -
- pid PID -
- ppv_pca_goal PPV_PCA_GOAL[](default [{gol:{}}]) -
health.hl7v27: PPV_PCA_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PPV_PCA_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- ppv_pca_problem_role PPV_PCA_PROBLEM_ROLE[](default [{rol:{}}]) -
- ppv_pca_problem_observation PPV_PCA_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PPV_PCA_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PPV_PCA_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PPV_PCA_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PR1
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 PR1_SEGMENT_NAME) - Segment Name
- pr11 SI(default "") - Set ID - PR1
- pr12 ST(default "") - Withdrawn field
- pr13 CNE(default {}) - Procedure Code
- pr14 ST(default "") - Withdrawn field
- pr15 DTM(default "") - Procedure Date/Time
- pr16 CWE(default {}) - Procedure Functional Type
- pr17 NM(default "") - Procedure Minutes
- pr18 ST(default "") - Withdrawn field
- pr19 CWE(default {}) - Anesthesia Code
- pr110 NM(default "") - Anesthesia Minutes
- pr111 ST(default "") - Withdrawn field
- pr112 ST(default "") - Withdrawn field
- pr113 CWE(default {}) - Consent Code
- pr114 NM(default "") - Procedure Priority
- pr115 CWE(default {}) - Associated Diagnosis Code
- pr116 CNE[](default [{}]) - Procedure Code Modifier
- pr117 CWE(default {}) - Procedure DRG Type
- pr118 CWE[](default [{}]) - Tissue Type Code
- pr119 EI(default {}) - Procedure Identifier
- pr120 ID(default "") - Procedure Action Code
- pr121 CWE(default {}) - DRG Procedure Determination Status
- pr122 CWE(default {}) - DRG Procedure Relevance
- pr123 PL[](default [{}]) - Treating Organizational Unit
- pr124 ID(default "") - Respiratory Within Surgery
- pr125 EI(default {}) - Parent Procedure ID
health.hl7v27: PRA
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 PRA_SEGMENT_NAME) - Segment Name
- pra1 CWE(default {}) - Primary Key Value - PRA
- pra2 CWE[](default [{}]) - Practitioner Group
- pra3 CWE[](default [{}]) - Practitioner Category
- pra4 ID(default "") - Provider Billing
- pra5 SPD[](default [{}]) - Specialty
- pra6 PLN[](default [{}]) - Practitioner ID Numbers
- pra7 PIP[](default [{}]) - Privileges
- pra8 DT(default "") - Date Entered Practice
- pra9 CWE(default {}) - Institution
- pra10 DT(default "") - Date Left Practice
- pra11 CWE[](default [{}]) - Government Reimbursement Billing Eligibility
- pra12 SI(default "") - Set ID - PRA
health.hl7v27: PRB
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 PRB_SEGMENT_NAME) - Segment Name
- prb1 ID(default "") - Action Code
- prb2 DTM(default "") - Action Date/Time
- prb3 CWE(default {}) - Problem ID
- prb4 EI(default {}) - Problem Instance ID
- prb5 EI(default {}) - Episode of Care ID
- prb6 NM(default "") - Problem List Priority
- prb7 DTM(default "") - Problem Established Date/Time
- prb8 DTM(default "") - Anticipated Problem Resolution Date/Time
- prb9 DTM(default "") - Actual Problem Resolution Date/Time
- prb10 CWE(default {}) - Problem Classification
- prb11 CWE[](default [{}]) - Problem Management Discipline
- prb12 CWE(default {}) - Problem Persistence
- prb13 CWE(default {}) - Problem Confirmation Status
- prb14 CWE(default {}) - Problem Life Cycle Status
- prb15 DTM(default "") - Problem Life Cycle Status Date/Time
- prb16 DTM(default "") - Problem Date of Onset
- prb17 ST(default "") - Problem Onset Text
- prb18 CWE(default {}) - Problem Ranking
- prb19 CWE(default {}) - Certainty of Problem
- prb20 NM(default "") - Probability of Problem (0-1)
- prb21 CWE(default {}) - Individual Awareness of Problem
- prb22 CWE(default {}) - Problem Prognosis
- prb23 CWE(default {}) - Individual Awareness of Prognosis
- prb24 ST(default "") - Family/Significant Other Awareness of Problem/Prognosis
- prb25 CWE(default {}) - Security/Sensitivity
- prb26 CWE(default {}) - Problem Severity
- prb27 CWE(default {}) - Problem Perspective
- prb28 CNE(default {}) - Mood Code
health.hl7v27: PRC
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 PRC_SEGMENT_NAME) - Segment Name
- prc1 CWE(default {}) - Primary Key Value - PRC
- prc2 CWE[](default [{}]) - Facility ID - PRC
- prc3 CWE[](default [{}]) - Department
- prc4 CWE[](default [{}]) - Valid Patient Classes
- prc5 CP[](default [{}]) - Price
- prc6 ST[](default [""]) - Formula
- prc7 NM(default "") - Minimum Quantity
- prc8 NM(default "") - Maximum Quantity
- prc9 MO(default {}) - Minimum Price
- prc10 MO(default {}) - Maximum Price
- prc11 DTM(default "") - Effective Start Date
- prc12 DTM(default "") - Effective End Date
- prc13 CWE(default {}) - Price Override Flag
- prc14 CWE[](default [{}]) - Billing Category
- prc15 ID(default "") - Chargeable Flag
- prc16 ID(default "") - Active/Inactive Flag
- prc17 MO(default {}) - Cost
- prc18 CWE(default {}) - Charge on Indicator
health.hl7v27: PRD
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 PRD_SEGMENT_NAME) - Segment Name
- prd1 CWE[](default [{}]) - Provider Role
- prd2 XPN[](default [{}]) - Provider Name
- prd3 XAD[](default [{}]) - Provider Address
- prd4 PL(default {}) - Provider Location
- prd5 XTN[](default [{}]) - Provider Communication Information
- prd6 CWE(default {}) - Preferred Method of Contact
- prd7 PLN[](default [{}]) - Provider Identifiers
- prd8 DTM(default "") - Effective Start Date of Provider Role
- prd9 DTM[](default [""]) - Effective End Date of Provider Role
- prd10 XON(default {}) - Provider Organization Name and Identifier
- prd11 XAD[](default [{}]) - Provider Organization Address
- prd12 PL[](default [{}]) - Provider Organization Location Information
- prd13 XTN[](default [{}]) - Provider Organization Communication Information
- prd14 CWE(default {}) - Provider Organization Method of Contact
health.hl7v27: PRL
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- prl1 CWE(default {}) - Parent Observation Identifier
- prl2 ST(default "") - Parent Observation Sub-identifier
- prl3 TX(default "") - Parent Observation Value Descriptor
health.hl7v27: PRR_PC5
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PRR_PC5_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- patient PRR_PC5_PATIENT[](default [{pid:{}}]) - PRR_PC5_PATIENT Segment Group
health.hl7v27: PRR_PC5_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PRR_PC5_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prr_pc5_goal_observation PRR_PC5_GOAL_OBSERVATION[](default [{obx:{}}]) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- prr_pc5_goal_role PRR_PC5_GOAL_ROLE[](default [{rol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PRR_PC5_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prr_pc5_order_detail PRR_PC5_ORDER_DETAIL? -
health.hl7v27: PRR_PC5_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- prr_pc5_order_observation PRR_PC5_ORDER_OBSERVATION[](default [{obx:{}}]) -
- prr_pc5_choice PRR_PC5_CHOICE -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prr_pc5_patient_visit PRR_PC5_PATIENT_VISIT? -
- pid PID -
- prr_pc5_problem PRR_PC5_PROBLEM[](default [{prb:{}}]) -
health.hl7v27: PRR_PC5_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PRR_PC5_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prb PRB -
- prr_pc5_problem_role PRR_PC5_PROBLEM_ROLE[](default [{rol:{}}]) -
- prr_pc5_problem_pathway PRR_PC5_PROBLEM_PATHWAY[](default [{pth:{}}]) -
- prr_pc5_goal PRR_PC5_GOAL[](default [{gol:{}}]) -
- 'var 'VAR[](default [{}]) -
- prr_pc5_order PRR_PC5_ORDER[](default [{orc:{}}]) -
- prr_pc5_problem_observation PRR_PC5_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PRR_PC5_PROBLEM_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PROBLEM_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
health.hl7v27: PRR_PC5_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PRR_PC5_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PRT
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 PRT_SEGMENT_NAME) - Segment Name
- prt1 EI(default {}) - Participation Instance ID
- prt2 ID(default "") - Action Code
- prt3 CWE(default {}) - Action Reason
- prt4 CWE(default {}) - Participation
- prt5 XCN[](default [{}]) - Participation Person
- prt6 CWE(default {}) - Participation Person Provider Type
- prt7 CWE(default {}) - Participant Organization Unit Type
- prt8 XON[](default [{}]) - Participation Organization
- prt9 PL[](default [{}]) - Participant Location
- prt10 EI[](default [{}]) - Participation Device
- prt11 DTM(default "") - Participation Begin Date/Time (arrival time)
- prt12 DTM(default "") - Participation End Date/Time (departure time)
- prt13 CWE(default {}) - Participation Qualitative Duration
- prt14 XAD[](default [{}]) - Participation Address
- prt15 XTN[](default [{}]) - Participant Telecommunication Address
health.hl7v27: PSG
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 PSG_SEGMENT_NAME) - Segment Name
- psg1 EI(default {}) - Provider Product/Service Group Number
- psg2 EI(default {}) - Payer Product/Service Group Number
- psg3 SI(default "") - Product/Service Group Sequence Number
- psg4 ID(default "") - Adjudicate as Group
- psg5 CP(default {}) - Product/Service Group Billed Amount
- psg6 ST(default "") - Product/Service Group Description
health.hl7v27: PSH
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 PSH_SEGMENT_NAME) - Segment Name
- psh1 ST(default "") - Report Type
- psh2 ST(default "") - Report Form Identifier
- psh3 DTM(default "") - Report Date
- psh4 DTM(default "") - Report Interval Start Date
- psh5 DTM(default "") - Report Interval End Date
- psh6 CQ(default {}) - Quantity Manufactured
- psh7 CQ(default {}) - Quantity Distributed
- psh8 ID(default "") - Quantity Distributed Method
- psh9 FT(default "") - Quantity Distributed Comment
- psh10 CQ(default {}) - Quantity in Use
- psh11 ID(default "") - Quantity in Use Method
- psh12 FT(default "") - Quantity in Use Comment
- psh13 NM(default "") - Number of Product Experience Reports Filed by Facility
- psh14 NM(default "") - Number of Product Experience Reports Filed by Distributor
health.hl7v27: PSL
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 PSL_SEGMENT_NAME) - Segment Name
- psl1 EI(default {}) - Provider Product/Service Line Item Number
- psl2 EI(default {}) - Payer Product/Service Line Item Number
- psl3 SI(default "") - Product/Service Line Item Sequence Number
- psl4 EI(default {}) - Provider Tracking ID
- psl5 EI(default {}) - Payer Tracking ID
- psl6 CWE(default {}) - Product/Service Line Item Status
- psl7 CWE(default {}) - Product/Service Code
- psl8 CWE(default {}) - Product/Service Code Modifier
- psl9 ST(default "") - Product/Service Code Description
- psl10 DTM(default "") - Product/Service Effective Date
- psl11 DTM(default "") - Product/Service Expiration Date
- psl12 CQ(default {}) - Product/Service Quantity
- psl13 CP(default {}) - Product/Service Unit Cost
- psl14 NM(default "") - Number of Items per Unit
- psl15 CP(default {}) - Product/Service Gross Amount
- psl16 CP(default {}) - Product/Service Billed Amount
- psl17 CWE(default {}) - Product/Service Clarification Code Type
- psl18 ST(default "") - Product/Service Clarification Code Value
- psl19 EI(default {}) - Health Document Reference Identifier
- psl20 CWE(default {}) - Processing Consideration Code
- psl21 ID(default "") - Restricted Disclosure Indicator
- psl22 CWE(default {}) - Related Product/Service Code Indicator
- psl23 CP(default {}) - Product/Service Amount for Physician
- psl24 NM(default "") - Product/Service Cost Factor
- psl25 CX(default {}) - Cost Center
- psl26 DR(default {}) - Billing Period
- psl27 NM(default "") - Days without Billing
- psl28 NM(default "") - Session-No
- psl29 XCN(default {}) - Executing Physician ID
- psl30 XCN(default {}) - Responsible Physician ID
- psl31 CWE(default {}) - Role Executing Physician
- psl32 CWE(default {}) - Medical Role Executing Physician
- psl33 CWE(default {}) - Side of body
- psl34 NM(default "") - Number of TP's PP
- psl35 CP(default {}) - TP-Value PP
- psl36 NM(default "") - Internal Scaling Factor PP
- psl37 NM(default "") - External Scaling Factor PP
- psl38 CP(default {}) - Amount PP
- psl39 NM(default "") - Number of TP's Technical Part
- psl40 CP(default {}) - TP-Value Technical Part
- psl41 NM(default "") - Internal Scaling Factor Technical Part
- psl42 NM(default "") - External Scaling Factor Technical Part
- psl43 CP(default {}) - Amount Technical Part
- psl44 CP(default {}) - Total Amount Professional Part + Technical Part
- psl45 NM(default "") - VAT-Rate
- psl46 ID(default "") - Main-Service
- psl47 ID(default "") - Validation
- psl48 ST(default "") - Comment
health.hl7v27: PSS
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 PSS_SEGMENT_NAME) - Segment Name
- pss1 EI(default {}) - Provider Product/Service Section Number
- pss2 EI(default {}) - Payer Product/Service Section Number
- pss3 SI(default "") - Product/Service Section Sequence Number
- pss4 CP(default {}) - Billed Amount
- pss5 ST(default "") - Section Description or Heading
health.hl7v27: PT
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- pt1 ID(default "") - Processing ID
- pt2 ID(default "") - Processing Mode
health.hl7v27: PTA
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- pta1 CWE(default {}) - Policy Type
- pta2 CWE(default {}) - Amount Class
- pta4 MOP(default {}) - Money or Percentage
health.hl7v27: PTH
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 PTH_SEGMENT_NAME) - Segment Name
- pth1 ID(default "") - Action Code
- pth2 CWE(default {}) - Pathway ID
- pth3 EI(default {}) - Pathway Instance ID
- pth4 DTM(default "") - Pathway Established Date/Time
- pth5 CWE(default {}) - Pathway Life Cycle Status
- pth6 DTM(default "") - Change Pathway Life Cycle Status Date/Time
- pth7 CNE(default {}) - Mood Code
health.hl7v27: PTR_PCF
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default PTR_PCF_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- qak QAK? - QAK Segment
- qrd QRD - QRD Segment
- patient PTR_PCF_PATIENT[](default [{pid:{}}]) - PTR_PCF_PATIENT Segment Group
health.hl7v27: PTR_PCF_CHOICE
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_CHOICE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: PTR_PCF_GOAL
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_GOAL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gol GOL -
- 'var 'VAR[](default [{}]) -
- ptr_pcf_goal_role PTR_PCF_GOAL_ROLE[](default [{rol:{}}]) -
- ptr_pcf_goal_observation PTR_PCF_GOAL_OBSERVATION[](default [{obx:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_GOAL_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_GOAL_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_GOAL_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_GOAL_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PTR_PCF_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ptr_pcf_order_detail PTR_PCF_ORDER_DETAIL? -
health.hl7v27: PTR_PCF_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ptr_pcf_order_observation PTR_PCF_ORDER_OBSERVATION[](default [{obx:{}}]) -
- 'var 'VAR[](default [{}]) -
- ptr_pcf_choice PTR_PCF_CHOICE -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_ORDER_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_ORDER_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- 'var 'VAR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_PATHWAY
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PATHWAY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ptr_pcf_problem PTR_PCF_PROBLEM[](default [{prb:{}}]) -
- pth PTH -
- 'var 'VAR[](default [{}]) -
- ptr_pcf_pathway_role PTR_PCF_PATHWAY_ROLE[](default [{rol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_PATHWAY_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PATHWAY_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PTR_PCF_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ptr_pcf_patient_visit PTR_PCF_PATIENT_VISIT? -
- ptr_pcf_pathway PTR_PCF_PATHWAY[](default [{pth:{}}]) -
- pid PID -
health.hl7v27: PTR_PCF_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: PTR_PCF_PROBLEM
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PROBLEM_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ptr_pcf_problem_role PTR_PCF_PROBLEM_ROLE[](default [{rol:{}}]) -
- ptr_pcf_order PTR_PCF_ORDER[](default [{orc:{}}]) -
- prb PRB -
- 'var 'VAR[](default [{}]) -
- ptr_pcf_problem_observation PTR_PCF_PROBLEM_OBSERVATION[](default [{obx:{}}]) -
- ptr_pcf_goal PTR_PCF_GOAL[](default [{gol:{}}]) -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_PROBLEM_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PROBLEM_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: PTR_PCF_PROBLEM_ROLE
Fields
- Fields Included from *SegmentComponent
- name string(default PTR_PCF_PROBLEM_ROLE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- 'var 'VAR[](default [{}]) -
- rol ROL -
health.hl7v27: PV1
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 PV1_SEGMENT_NAME) - Segment Name
- pv11 SI(default "") - Set ID - PV1
- pv12 CWE(default {}) - Patient Class
- pv13 PL(default {}) - Assigned Patient Location
- pv14 CWE(default {}) - Admission Type
- pv15 CX(default {}) - Preadmit Number
- pv16 PL(default {}) - Prior Patient Location
- pv17 XCN[](default [{}]) - Attending Doctor
- pv18 XCN[](default [{}]) - Referring Doctor
- pv19 XCN[](default [{}]) - Consulting Doctor
- pv110 CWE(default {}) - Hospital Service
- pv111 PL(default {}) - Temporary Location
- pv112 CWE(default {}) - Preadmit Test Indicator
- pv113 CWE(default {}) - Re-admission Indicator
- pv114 CWE(default {}) - Admit Source
- pv115 CWE[](default [{}]) - Ambulatory Status
- pv116 CWE(default {}) - VIP Indicator
- pv117 XCN[](default [{}]) - Admitting Doctor
- pv118 CWE(default {}) - Patient Type
- pv119 CX(default {}) - Visit Number
- pv120 FC[](default [{}]) - Financial Class
- pv121 CWE(default {}) - Charge Price Indicator
- pv122 CWE(default {}) - Courtesy Code
- pv123 CWE(default {}) - Credit Rating
- pv124 CWE[](default [{}]) - Contract Code
- pv125 DT[](default [""]) - Contract Effective Date
- pv126 NM[](default [""]) - Contract Amount
- pv127 NM[](default [""]) - Contract Period
- pv128 CWE(default {}) - Interest Code
- pv129 CWE(default {}) - Transfer to Bad Debt Code
- pv130 DT(default "") - Transfer to Bad Debt Date
- pv131 CWE(default {}) - Bad Debt Agency Code
- pv132 NM(default "") - Bad Debt Transfer Amount
- pv133 NM(default "") - Bad Debt Recovery Amount
- pv134 CWE(default {}) - Delete Account Indicator
- pv135 DT(default "") - Delete Account Date
- pv136 CWE(default {}) - Discharge Disposition
- pv137 DLD(default {}) - Discharged to Location
- pv138 CWE(default {}) - Diet Type
- pv139 CWE(default {}) - Servicing Facility
- pv140 ST(default "") - Withdrawn field
- pv141 CWE(default {}) - Account Status
- pv142 PL(default {}) - Pending Location
- pv143 PL(default {}) - Prior Temporary Location
- pv144 DTM(default "") - Admit Date/Time
- pv145 DTM(default "") - Discharge Date/Time
- pv146 NM(default "") - Current Patient Balance
- pv147 NM(default "") - Total Charges
- pv148 NM(default "") - Total Adjustments
- pv149 NM(default "") - Total Payments
- pv150 CX(default {}) - Alternate Visit ID
- pv151 CWE(default {}) - Visit Indicator
- pv152 ST(default "") - Withdrawn field
- pv153 ST(default "") - Service Episode Description
- pv154 CX(default {}) - Service Episode Identifier
health.hl7v27: PV2
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 PV2_SEGMENT_NAME) - Segment Name
- pv21 PL(default {}) - Prior Pending Location
- pv22 CWE(default {}) - Accommodation Code
- pv23 CWE(default {}) - Admit Reason
- pv24 CWE(default {}) - Transfer Reason
- pv25 ST[](default [""]) - Patient Valuables
- pv26 ST(default "") - Patient Valuables Location
- pv27 CWE[](default [{}]) - Visit User Code
- pv28 DTM(default "") - Expected Admit Date/Time
- pv29 DTM(default "") - Expected Discharge Date/Time
- pv210 NM(default "") - Estimated Length of Inpatient Stay
- pv211 NM(default "") - Actual Length of Inpatient Stay
- pv212 ST(default "") - Visit Description
- pv213 XCN[](default [{}]) - Referral Source Code
- pv214 DT(default "") - Previous Service Date
- pv215 ID(default "") - Employment Illness Related Indicator
- pv216 CWE(default {}) - Purge Status Code
- pv217 DT(default "") - Purge Status Date
- pv218 CWE(default {}) - Special Program Code
- pv219 ID(default "") - Retention Indicator
- pv220 NM(default "") - Expected Number of Insurance Plans
- pv221 CWE(default {}) - Visit Publicity Code
- pv222 ID(default "") - Visit Protection Indicator
- pv223 XON[](default [{}]) - Clinic Organization Name
- pv224 CWE(default {}) - Patient Status Code
- pv225 CWE(default {}) - Visit Priority Code
- pv226 DT(default "") - Previous Treatment Date
- pv227 CWE(default {}) - Expected Discharge Disposition
- pv228 DT(default "") - Signature on File Date
- pv229 DT(default "") - First Similar Illness Date
- pv230 CWE(default {}) - Patient Charge Adjustment Code
- pv231 CWE(default {}) - Recurring Service Code
- pv232 ID(default "") - Billing Media Code
- pv233 DTM(default "") - Expected Surgery Date and Time
- pv234 ID(default "") - Military Partnership Code
- pv235 ID(default "") - Military Non-Availability Code
- pv236 ID(default "") - Newborn Baby Indicator
- pv237 ID(default "") - Baby Detained Indicator
- pv238 CWE(default {}) - Mode of Arrival Code
- pv239 CWE[](default [{}]) - Recreational Drug Use Code
- pv240 CWE(default {}) - Admission Level of Care Code
- pv241 CWE[](default [{}]) - Precaution Code
- pv242 CWE(default {}) - Patient Condition Code
- pv243 CWE(default {}) - Living Will Code
- pv244 CWE(default {}) - Organ Donor Code
- pv245 CWE[](default [{}]) - Advance Directive Code
- pv246 DT(default "") - Patient Status Effective Date
- pv247 DTM(default "") - Expected LOA Return Date/Time
- pv248 DTM(default "") - Expected Pre-admission Testing Date/Time
- pv249 CWE[](default [{}]) - Notify Clergy Code
- pv250 DT(default "") - Advance Directive Last Verified Date
health.hl7v27: PYE
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 PYE_SEGMENT_NAME) - Segment Name
- pye1 SI(default "") - Set ID - PYE
- pye2 CWE(default {}) - Payee Type
- pye3 CWE(default {}) - Payee Relationship to Invoice (Patient)
- pye4 XON(default {}) - Payee Identification List
- pye5 XPN(default {}) - Payee Person Name
- pye6 XAD(default {}) - Payee Address
- pye7 CWE(default {}) - Payment Method
health.hl7v27: QAK
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 QAK_SEGMENT_NAME) - Segment Name
- qak1 ST(default "") - Query Tag
- qak2 ID(default "") - Query Response Status
- qak3 CWE(default {}) - Message Query Name
- qak4 NM(default "") - Hit Count Total
- qak5 NM(default "") - This payload
- qak6 NM(default "") - Hits remaining
health.hl7v27: QBP_E03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_E03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- query_information QBP_E03_QUERY_INFORMATION[](default [{}]) - QBP_E03_QUERY_INFORMATION Segment Group
health.hl7v27: QBP_E03_QUERY_INFORMATION
Fields
- Fields Included from *SegmentComponent
- name string(default QBP_E03_QUERY_INFORMATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: QBP_E22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_E22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- query QBP_E22_QUERY[](default [{}]) - QBP_E22_QUERY Segment Group
health.hl7v27: QBP_E22_QUERY
Fields
- Fields Included from *SegmentComponent
- name string(default QBP_E22_QUERY_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: QBP_Q11
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Q11_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
- qbp QBP_Q11_QBP[](default [{}]) - QBP_Q11_QBP Segment Group
health.hl7v27: QBP_Q11_QBP
Fields
- Fields Included from *SegmentComponent
- name string(default QBP_Q11_QBP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- anyhl7segment anydata? -
health.hl7v27: QBP_Q13
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Q13_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rdf RDF? - RDF Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
- qbp QBP_Q13_QBP[](default [{}]) - QBP_Q13_QBP Segment Group
health.hl7v27: QBP_Q13_QBP
Fields
- Fields Included from *SegmentComponent
- name string(default QBP_Q13_QBP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- anyhl7segment anydata? -
health.hl7v27: QBP_Q15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Q15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- anyhl7segment anydata? - anyHL7Segment Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
health.hl7v27: QBP_Q21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Q21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
health.hl7v27: QBP_Qnn
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Qnn_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rdf RDF? - RDF Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
health.hl7v27: QBP_Z73
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QBP_Z73_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
health.hl7v27: QCN_J01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QCN_J01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qid QID - QID Segment
health.hl7v27: QID
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 QID_SEGMENT_NAME) - Segment Name
- qid1 ST(default "") - Query Tag
- qid2 CWE(default {}) - Message Query Name
health.hl7v27: QIP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- qip1 ST(default "") - Segment Field Name
- qip2 ST(default "") - Values
health.hl7v27: QPD
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 QPD_SEGMENT_NAME) - Segment Name
- qpd1 CWE(default {}) - Message Query Name
- qpd2 ST(default "") - Query Tag
- qpd3 varies(default {}) - User Parameters (in successive fields)
health.hl7v27: QRD
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 QRD_SEGMENT_NAME) - Segment Name
health.hl7v27: QRF
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 QRF_SEGMENT_NAME) - Segment Name
health.hl7v27: QRI
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 QRI_SEGMENT_NAME) - Segment Name
- qri1 NM(default "") - Candidate Confidence
- qri2 CWE[](default [{}]) - Match Reason Code
- qri3 CWE(default {}) - Algorithm Descriptor
health.hl7v27: QRY_PC4
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QRY_PC4_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
health.hl7v27: QSB_Q16
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QSB_Q16_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
health.hl7v27: QSC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- qsc1 ST(default "") - Segment Field Name
- qsc2 ID(default "") - Relational Operator
- qsc3 ST(default "") - Value
- qsc4 ID(default "") - Relational Conjunction
health.hl7v27: QVR_Q17
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default QVR_Q17_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
- qbp QVR_Q17_QBP[](default [{}]) - QVR_Q17_QBP Segment Group
health.hl7v27: QVR_Q17_QBP
Fields
- Fields Included from *SegmentComponent
- name string(default QVR_Q17_QBP_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- anyhl7segment anydata? -
health.hl7v27: RAS_O17
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RAS_O17_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient RAS_O17_PATIENT[](default [{pid:{}}]) - RAS_O17_PATIENT Segment Group
- 'order RAS_O17_ORDER[](default [{orc:{}}]) -
health.hl7v27: RAS_O17_ADDITIONAL_DEMOGRAPHICS
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pd1 PD1 -
health.hl7v27: RAS_O17_ADMINISTRATION
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ADMINISTRATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- ras_o17_observation RAS_O17_OBSERVATION[](default [{obx:{}}]) -
- rxa RXA[](default [{}]) -
- rxr RXR -
health.hl7v27: RAS_O17_COMPONENTS
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_COMPONENTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: RAS_O17_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- ras_o17_timing_encoded RAS_O17_TIMING_ENCODED[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RAS_O17_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RAS_O17_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ras_o17_encoding RAS_O17_ENCODING? -
- orc ORC -
- prt PRT[](default [{}]) -
- ras_o17_timing RAS_O17_TIMING[](default [{tq1:{}}]) -
- cti CTI[](default [{}]) -
- ras_o17_administration RAS_O17_ADMINISTRATION[](default [{rxr:{}}]) -
- ras_o17_order_detail RAS_O17_ORDER_DETAIL? -
health.hl7v27: RAS_O17_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ras_o17_order_detail_supplement RAS_O17_ORDER_DETAIL_SUPPLEMENT? -
- rxo RXO -
health.hl7v27: RAS_O17_ORDER_DETAIL_SUPPLEMENT
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ras_o17_components RAS_O17_COMPONENTS[](default [{rxc:{}}]) -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: RAS_O17_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ras_o17_additional_demographics RAS_O17_ADDITIONAL_DEMOGRAPHICS? -
- ras_o17_patient_visit RAS_O17_PATIENT_VISIT? -
- al1 AL1[](default [{}]) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RAS_O17_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RAS_O17_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RAS_O17_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RAS_O17_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RCD
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- rcd1 ST(default "") - Segment Field Name
- rcd2 ID(default "") - HL7 Data Type
- rcd3 NM(default "") - Maximum Column Width
health.hl7v27: RCI_I05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RCI_I05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- pid PID - PID Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- provider RCI_I05_PROVIDER[](default [{prd:{}}]) - RCI_I05_PROVIDER Segment Group
- observation RCI_I05_OBSERVATION[](default [{obr:{}}]) - RCI_I05_OBSERVATION Segment Group
health.hl7v27: RCI_I05_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RCI_I05_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obr OBR -
- nte NTE[](default [{}]) -
- rci_i05_results RCI_I05_RESULTS? -
health.hl7v27: RCI_I05_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RCI_I05_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RCI_I05_RESULTS
Fields
- Fields Included from *SegmentComponent
- name string(default RCI_I05_RESULTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RCL_I06
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RCL_I06_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- pid PID - PID Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
- provider RCL_I06_PROVIDER[](default [{prd:{}}]) - RCL_I06_PROVIDER Segment Group
health.hl7v27: RCL_I06_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RCL_I06_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RCP
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 RCP_SEGMENT_NAME) - Segment Name
- rcp1 ID(default "") - Query Priority
- rcp2 CQ(default {}) - Quantity Limited Request
- rcp3 CNE(default {}) - Response Modality
- rcp4 DTM(default "") - Execution and Delivery Time
- rcp5 ID(default "") - Modify Indicator
- rcp6 SRT[](default [{}]) - Sort-by Field
- rcp7 ID[](default [""]) - Segment group inclusion
health.hl7v27: RDE_O11
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RDE_O11_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient RDE_O11_PATIENT[](default [{pid:{}}]) - RDE_O11_PATIENT Segment Group
- 'order RDE_O11_ORDER[](default [{orc:{}, rxe:{}}]) -
health.hl7v27: RDE_O11_COMPONENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_COMPONENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: RDE_O11_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RDE_O11_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RDE_O11_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- rde_o11_observation RDE_O11_OBSERVATION[](default [{obx:{}}]) -
- rde_o11_timing_encoded RDE_O11_TIMING_ENCODED[](default [{tq1:{}}]) -
- rde_o11_timing RDE_O11_TIMING[](default [{tq1:{}}]) -
- rde_o11_order_detail RDE_O11_ORDER_DETAIL? -
- rxr RXR[](default [{}]) -
- prt PRT[](default [{}]) -
- cti CTI[](default [{}]) -
- rxc RXC[](default [{}]) -
- blg BLG? -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RDE_O11_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxo RXO -
- rde_o11_component RDE_O11_COMPONENT[](default [{rxc:{}}]) -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: RDE_O11_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- gt1 GT1? -
- al1 AL1[](default [{}]) -
- pid PID -
- rde_o11_insurance RDE_O11_INSURANCE[](default [{in1:{}}]) -
- pd1 PD1? -
- nte NTE[](default [{}]) -
- rde_o11_patient_visit RDE_O11_PATIENT_VISIT? -
health.hl7v27: RDE_O11_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RDE_O11_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDE_O11_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RDE_O11_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDF
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 RDF_SEGMENT_NAME) - Segment Name
- rdf1 NM(default "") - Number of Columns per Row
- rdf2 RCD[](default [{}]) - Column Description
health.hl7v27: RDR_RDR
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RDR_RDR_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT? - SFT Segment
- uac UAC? - UAC Segment
- dsc DSC? - DSC Segment
- definition RDR_RDR_DEFINITION[](default [{qrd:{}}]) - RDR_RDR_DEFINITION Segment Group
health.hl7v27: RDR_RDR_DEFINITION
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_DEFINITION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- qrd QRD -
- rdr_rdr_patient RDR_RDR_PATIENT? -
- rdr_rdr_order RDR_RDR_ORDER[](default [{orc:{}}]) -
- qrf QRF? -
health.hl7v27: RDR_RDR_DISPENSE
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_DISPENSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxd RXD -
health.hl7v27: RDR_RDR_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- rdr_rdr_timing_encoded RDR_RDR_TIMING_ENCODED[](default [{tq1:{}}]) -
health.hl7v27: RDR_RDR_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- rdr_rdr_timing RDR_RDR_TIMING[](default [{tq1:{}}]) -
- rdr_rdr_encoding RDR_RDR_ENCODING? -
- rdr_rdr_dispense RDR_RDR_DISPENSE[](default [{rxd:{}}]) -
health.hl7v27: RDR_RDR_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RDR_RDR_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDR_RDR_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RDR_RDR_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDS_O13
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RDS_O13_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient RDS_O13_PATIENT[](default [{pid:{}}]) - RDS_O13_PATIENT Segment Group
- 'order RDS_O13_ORDER[](default [{orc:{}, rxd:{}}]) -
health.hl7v27: RDS_O13_ADDITIONAL_DEMOGRAPHICS
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pd1 PD1 -
health.hl7v27: RDS_O13_COMPONENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_COMPONENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: RDS_O13_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- rds_o13_timing_encoded RDS_O13_TIMING_ENCODED[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RDS_O13_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RDS_O13_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- ft1 FT1[](default [{}]) -
- prt PRT[](default [{}]) -
- rds_o13_observation RDS_O13_OBSERVATION[](default [{obx:{}}]) -
- rds_o13_timing RDS_O13_TIMING[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rds_o13_order_detail RDS_O13_ORDER_DETAIL? -
- rds_o13_encoding RDS_O13_ENCODING? -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
- rxd RXD -
health.hl7v27: RDS_O13_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxo RXO -
- rds_o13_order_detail_supplement RDS_O13_ORDER_DETAIL_SUPPLEMENT? -
health.hl7v27: RDS_O13_ORDER_DETAIL_SUPPLEMENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rds_o13_component RDS_O13_COMPONENT[](default [{rxc:{}}]) -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: RDS_O13_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rds_o13_additional_demographics RDS_O13_ADDITIONAL_DEMOGRAPHICS? -
- al1 AL1[](default [{}]) -
- rds_o13_patient_visit RDS_O13_PATIENT_VISIT? -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RDS_O13_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RDS_O13_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDS_O13_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RDS_O13_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RDT
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 RDT_SEGMENT_NAME) - Segment Name
- rdt1 varies(default {}) - Column Value
health.hl7v27: RDY_K15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RDY_K15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
health.hl7v27: REF_I12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default REF_I12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- rf1 RF1? - RF1 Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- authorization_contact REF_I12_AUTHORIZATION_CONTACT[](default [{aut:{}}]) - REF_I12_AUTHORIZATION_CONTACT Segment Group
- provider_contact REF_I12_PROVIDER_CONTACT[](default [{prd:{}}]) - REF_I12_PROVIDER_CONTACT Segment Group
- insurance REF_I12_INSURANCE[](default [{in1:{}}]) - REF_I12_INSURANCE Segment Group
- procedure REF_I12_PROCEDURE[](default [{pr1:{}}]) - REF_I12_PROCEDURE Segment Group
- observation REF_I12_OBSERVATION[](default [{obr:{}}]) - REF_I12_OBSERVATION Segment Group
- patient_visit REF_I12_PATIENT_VISIT[](default [{pv1:{}}]) - REF_I12_PATIENT_VISIT Segment Group
health.hl7v27: REF_I12_AUTHORIZATION_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_AUTHORIZATION_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: REF_I12_AUTHORIZATION_CONTACT2
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_AUTHORIZATION_CONTACT2_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: REF_I12_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: REF_I12_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ref_i12_results_notes REF_I12_RESULTS_NOTES[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: REF_I12_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: REF_I12_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ref_i12_authorization_contact2 REF_I12_AUTHORIZATION_CONTACT2? -
- pr1 PR1 -
health.hl7v27: REF_I12_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: REF_I12_RESULTS_NOTES
Fields
- Fields Included from *SegmentComponent
- name string(default REF_I12_RESULTS_NOTES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: REL
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 REL_SEGMENT_NAME) - Segment Name
- rel1 SI(default "") - Set ID -REL
- rel2 CWE(default {}) - Relationship Type
- rel3 EI(default {}) - This Relationship Instance Identifier
- rel4 EI(default {}) - Source Information Instance Identifier
- rel5 EI(default {}) - Target Information Instance Identifier
- rel6 EI(default {}) - Asserting Entity Instance ID
- rel7 XCN(default {}) - Asserting Person
- rel8 XON(default {}) - Asserting Organization
- rel9 XAD(default {}) - Assertor Address
- rel10 XTN(default {}) - Assertor Contact
- rel11 DR(default {}) - Assertion Date Range
- rel12 ID(default "") - Negation Indicator
- rel13 CWE(default {}) - Certainty of Relationship
- rel14 NM(default "") - Priority No
- rel15 NM(default "") - Priority Sequence No (rel preference for consideration)
- rel16 ID(default "") - Separability Indicator
health.hl7v27: RF1
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 RF1_SEGMENT_NAME) - Segment Name
- rf11 CWE(default {}) - Referral Status
- rf12 CWE(default {}) - Referral Priority
- rf13 CWE(default {}) - Referral Type
- rf14 CWE[](default [{}]) - Referral Disposition
- rf15 CWE(default {}) - Referral Category
- rf16 EI(default {}) - Originating Referral Identifier
- rf17 DTM(default "") - Effective Date
- rf18 DTM(default "") - Expiration Date
- rf19 DTM(default "") - Process Date
- rf110 CWE[](default [{}]) - Referral Reason
- rf111 EI[](default [{}]) - External Referral Identifier
- rf112 CWE(default {}) - Referral Documentation Completion Status
health.hl7v27: RFI
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 RFI_SEGMENT_NAME) - Segment Name
- rfi1 DTM(default "") - Request Date
- rfi2 DTM(default "") - Response Due Date
- rfi3 ID(default "") - Patient Consent
- rfi4 DTM(default "") - Date Additional Information Was Submitted
health.hl7v27: RFR
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- rfr1 NR(default {}) - Numeric Range
- rfr2 CWE(default {}) - Administrative Sex
- rfr3 NR(default {}) - Age Range
- rfr4 NR(default {}) - Gestational Age Range
- rfr5 ST(default "") - Species
- rfr6 ST(default "") - Race/subspecies
- rfr7 TX(default "") - Conditions
health.hl7v27: RGS
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 RGS_SEGMENT_NAME) - Segment Name
- rgs1 SI(default "") - Set ID - RGS
- rgs2 ID(default "") - Segment Action Code
- rgs3 CWE(default {}) - Resource Group ID
health.hl7v27: RGV_O15
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RGV_O15_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- patient RGV_O15_PATIENT[](default [{pid:{}}]) - RGV_O15_PATIENT Segment Group
- 'order RGV_O15_ORDER[](default [{orc:{}}]) -
health.hl7v27: RGV_O15_COMPONENTS
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_COMPONENTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: RGV_O15_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rgv_o15_timing_encoded RGV_O15_TIMING_ENCODED[](default [{tq1:{}}]) -
- prt PRT[](default [{}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RGV_O15_GIVE
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_GIVE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxg RXG -
- rgv_o15_timing_give RGV_O15_TIMING_GIVE[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rgv_o15_observation RGV_O15_OBSERVATION[](default [{obx:{}}]) -
health.hl7v27: RGV_O15_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RGV_O15_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- rgv_o15_give RGV_O15_GIVE[](default [{rxg:{}}]) -
- rgv_o15_order_detail RGV_O15_ORDER_DETAIL? -
- rgv_o15_timing RGV_O15_TIMING[](default [{tq1:{}}]) -
- rgv_o15_encoding RGV_O15_ENCODING? -
health.hl7v27: RGV_O15_ORDER_DETAIL
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_ORDER_DETAIL_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rgv_o15_order_detail_supplement RGV_O15_ORDER_DETAIL_SUPPLEMENT? -
- rxo RXO -
health.hl7v27: RGV_O15_ORDER_DETAIL_SUPPLEMENT
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_ORDER_DETAIL_SUPPLEMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rgv_o15_components RGV_O15_COMPONENTS[](default [{rxc:{}}]) -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
health.hl7v27: RGV_O15_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rgv_o15_patient_visit RGV_O15_PATIENT_VISIT? -
- al1 AL1[](default [{}]) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RGV_O15_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RGV_O15_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RGV_O15_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RGV_O15_TIMING_GIVE
Fields
- Fields Included from *SegmentComponent
- name string(default RGV_O15_TIMING_GIVE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RI
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- ri1 CWE(default {}) - Repeat Pattern
- ri2 ST(default "") - Explicit Time Interval
health.hl7v27: RMC
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- rmc1 CWE(default {}) - Room Type
- rmc2 CWE(default {}) - Amount Type
- rmc4 MOP(default {}) - Money or Percentage
health.hl7v27: RMI
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 RMI_SEGMENT_NAME) - Segment Name
- rmi1 CWE(default {}) - Risk Management Incident Code
- rmi2 DTM(default "") - Date/Time Incident
- rmi3 CWE(default {}) - Incident Type Code
health.hl7v27: ROL
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 ROL_SEGMENT_NAME) - Segment Name
- rol1 EI(default {}) - Role Instance ID
- rol2 ID(default "") - Action Code
- rol3 CWE(default {}) - Role-ROL
- rol4 XCN[](default [{}]) - Role Person
- rol5 DTM(default "") - Role Begin Date/Time
- rol6 DTM(default "") - Role End Date/Time
- rol7 CWE(default {}) - Role Duration
- rol8 CWE(default {}) - Role Action Reason
- rol9 CWE[](default [{}]) - Provider Type
- rol10 CWE(default {}) - Organization Unit Type
- rol11 XAD[](default [{}]) - Office/Home Address/Birthplace
- rol12 XTN[](default [{}]) - Phone
- rol13 PL(default {}) - Person's Location
- rol14 XON(default {}) - Organization
health.hl7v27: RP
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- rp1 ST(default "") - Pointer
- rp2 HD(default {}) - Application ID
- rp3 ID(default "") - Type of Data
- rp4 ID(default "") - Subtype
health.hl7v27: RPA_I08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RPA_I08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- rf1 RF1? - RF1 Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- gt1 GT1[](default []) - GT1 Segment
- acc ACC? - ACC Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- authorization RPA_I08_AUTHORIZATION[](default [{aut:{}}]) - RPA_I08_AUTHORIZATION Segment Group
- provider RPA_I08_PROVIDER[](default [{prd:{}}]) - RPA_I08_PROVIDER Segment Group
- insurance RPA_I08_INSURANCE[](default [{in1:{}}]) - RPA_I08_INSURANCE Segment Group
- procedure RPA_I08_PROCEDURE[](default [{pr1:{}}]) - RPA_I08_PROCEDURE Segment Group
- observation RPA_I08_OBSERVATION[](default [{obr:{}}]) - RPA_I08_OBSERVATION Segment Group
- visit RPA_I08_VISIT[](default [{pv1:{}}]) - RPA_I08_VISIT Segment Group
health.hl7v27: RPA_I08_AUTHORIZATION
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_AUTHORIZATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RPA_I08_AUTHORIZATION2
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_AUTHORIZATION2_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RPA_I08_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RPA_I08_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rpa_i08_results RPA_I08_RESULTS[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: RPA_I08_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rpa_i08_authorization2 RPA_I08_AUTHORIZATION2? -
- pr1 PR1 -
health.hl7v27: RPA_I08_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RPA_I08_RESULTS
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_RESULTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RPA_I08_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RPA_I08_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RPI_I01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RPI_I01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- nte NTE[](default []) - NTE Segment
- provider RPI_I01_PROVIDER[](default [{prd:{}}]) - RPI_I01_PROVIDER Segment Group
- guarantor_insurance RPI_I01_GUARANTOR_INSURANCE[](default [{}]) - RPI_I01_GUARANTOR_INSURANCE Segment Group
health.hl7v27: RPI_I01_GUARANTOR_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1[](default [{}]) -
- rpi_i01_insurance RPI_I01_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: RPI_I01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RPI_I01_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I01_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RPI_I04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RPI_I04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- nte NTE[](default []) - NTE Segment
- provider RPI_I04_PROVIDER[](default [{prd:{}}]) - RPI_I04_PROVIDER Segment Group
- guarantor_insurance RPI_I04_GUARANTOR_INSURANCE[](default [{}]) - RPI_I04_GUARANTOR_INSURANCE Segment Group
health.hl7v27: RPI_I04_GUARANTOR_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I04_GUARANTOR_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1[](default [{}]) -
- rpi_i04_insurance RPI_I04_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: RPI_I04_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I04_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RPI_I04_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RPI_I04_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RPL_I02
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RPL_I02_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- nte NTE[](default []) - NTE Segment
- dsp DSP[](default []) - DSP Segment
- dsc DSC? - DSC Segment
- provider RPL_I02_PROVIDER[](default [{prd:{}}]) - RPL_I02_PROVIDER Segment Group
health.hl7v27: RPL_I02_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RPL_I02_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RPR_I03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RPR_I03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- pid PID[](default []) - PID Segment
- nte NTE[](default []) - NTE Segment
- provider RPR_I03_PROVIDER[](default [{prd:{}}]) - RPR_I03_PROVIDER Segment Group
health.hl7v27: RPR_I03_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RPR_I03_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RPT
Data type description
Fields
- Fields Included from *CompositeType
- anydata...
- rpt1 CWE(default {}) - Repeat Pattern Code
- rpt2 ID(default "") - Calendar Alignment
- rpt3 NM(default "") - Phase Range Begin Value
- rpt4 NM(default "") - Phase Range End Value
- rpt5 NM(default "") - Period Quantity
- rpt6 CWE(default {}) - Period Units
- rpt7 ID(default "") - Institution Specified Time
- rpt8 ID(default "") - Event
- rpt9 NM(default "") - Event Offset Quantity
- rpt10 CWE(default {}) - Event Offset Units
- rpt11 GTS(default "") - General Timing Specification
health.hl7v27: RQ1
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 RQ1_SEGMENT_NAME) - Segment Name
- rq11 ST(default "") - Anticipated Price
- rq12 CWE(default {}) - Manufacturer Identifier
- rq13 ST(default "") - Manufacturer's Catalog
- rq14 CWE(default {}) - Vendor ID
- rq15 ST(default "") - Vendor Catalog
- rq16 ID(default "") - Taxable
- rq17 ID(default "") - Substitute Allowed
health.hl7v27: RQA_I08
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RQA_I08_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- rf1 RF1? - RF1 Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- acc ACC? - ACC Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- authorization RQA_I08_AUTHORIZATION[](default [{aut:{}}]) - RQA_I08_AUTHORIZATION Segment Group
- provider RQA_I08_PROVIDER[](default [{prd:{}}]) - RQA_I08_PROVIDER Segment Group
- guarantor_insurance RQA_I08_GUARANTOR_INSURANCE[](default [{}]) - RQA_I08_GUARANTOR_INSURANCE Segment Group
- procedure RQA_I08_PROCEDURE[](default [{pr1:{}}]) - RQA_I08_PROCEDURE Segment Group
- observation RQA_I08_OBSERVATION[](default [{obr:{}}]) - RQA_I08_OBSERVATION Segment Group
- visit RQA_I08_VISIT[](default [{pv1:{}}]) - RQA_I08_VISIT Segment Group
health.hl7v27: RQA_I08_AUTHORIZATION
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_AUTHORIZATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RQA_I08_AUTHORIZATION2
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_AUTHORIZATION2_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RQA_I08_GUARANTOR_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_GUARANTOR_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1[](default [{}]) -
- rqa_i08_insurance RQA_I08_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: RQA_I08_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RQA_I08_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rqa_i08_results RQA_I08_RESULTS[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: RQA_I08_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pr1 PR1 -
- rqa_i08_authorization2 RQA_I08_AUTHORIZATION2? -
health.hl7v27: RQA_I08_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RQA_I08_RESULTS
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_RESULTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RQA_I08_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RQA_I08_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RQC_I05
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RQC_I05_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qrd QRD - QRD Segment
- qrf QRF? - QRF Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- gt1 GT1[](default []) - GT1 Segment
- nte NTE[](default []) - NTE Segment
- provider RQC_I05_PROVIDER[](default [{prd:{}}]) - RQC_I05_PROVIDER Segment Group
health.hl7v27: RQC_I05_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RQC_I05_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RQD
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 RQD_SEGMENT_NAME) - Segment Name
- rqd1 SI(default "") - Requisition Line Number
- rqd2 CWE(default {}) - Item Code - Internal
- rqd3 CWE(default {}) - Item Code - External
- rqd4 CWE(default {}) - Hospital Item Code
- rqd5 NM(default "") - Requisition Quantity
- rqd6 CWE(default {}) - Requisition Unit of Measure
- rqd7 CX(default {}) - Cost Center Account Number
- rqd8 CWE(default {}) - Item Natural Account Code
- rqd9 CWE(default {}) - Deliver To ID
- rqd10 DT(default "") - Date Needed
health.hl7v27: RQI_I01
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RQI_I01_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- nte NTE[](default []) - NTE Segment
- provider RQI_I01_PROVIDER[](default [{prd:{}}]) - RQI_I01_PROVIDER Segment Group
- guarantor_insurance RQI_I01_GUARANTOR_INSURANCE[](default [{}]) - RQI_I01_GUARANTOR_INSURANCE Segment Group
health.hl7v27: RQI_I01_GUARANTOR_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RQI_I01_GUARANTOR_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- gt1 GT1[](default [{}]) -
- rqi_i01_insurance RQI_I01_INSURANCE[](default [{in1:{}}]) -
health.hl7v27: RQI_I01_INSURANCE
Fields
- Fields Included from *SegmentComponent
- name string(default RQI_I01_INSURANCE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- in2 IN2? -
- in1 IN1 -
- in3 IN3? -
health.hl7v27: RQI_I01_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RQI_I01_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RQP_I04
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RQP_I04_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- pid PID - PID Segment
- nk1 NK1[](default []) - NK1 Segment
- gt1 GT1[](default []) - GT1 Segment
- nte NTE[](default []) - NTE Segment
- provider RQP_I04_PROVIDER[](default [{prd:{}}]) - RQP_I04_PROVIDER Segment Group
health.hl7v27: RQP_I04_PROVIDER
Fields
- Fields Included from *SegmentComponent
- name string(default RQP_I04_PROVIDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RRA_O18
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RRA_O18_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response RRA_O18_RESPONSE[](default [{}]) - RRA_O18_RESPONSE Segment Group
health.hl7v27: RRA_O18_ADMINISTRATION
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_ADMINISTRATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rra_o18_treatment RRA_O18_TREATMENT[](default [{rxa:{}}]) -
- rxr RXR -
health.hl7v27: RRA_O18_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- rra_o18_administration RRA_O18_ADMINISTRATION? -
- rra_o18_timing RRA_O18_TIMING[](default [{tq1:{}}]) -
health.hl7v27: RRA_O18_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RRA_O18_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rra_o18_patient RRA_O18_PATIENT? -
- rra_o18_order RRA_O18_ORDER[](default [{orc:{}}]) -
health.hl7v27: RRA_O18_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRA_O18_TREATMENT
Fields
- Fields Included from *SegmentComponent
- name string(default RRA_O18_TREATMENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- rxa RXA -
health.hl7v27: RRD_O14
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RRD_O14_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response RRD_O14_RESPONSE[](default [{}]) - RRD_O14_RESPONSE Segment Group
health.hl7v27: RRD_O14_DISPENSE
Fields
- Fields Included from *SegmentComponent
- name string(default RRD_O14_DISPENSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- nte NTE[](default [{}]) -
- rxd RXD -
health.hl7v27: RRD_O14_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RRD_O14_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- rrd_o14_timing RRD_O14_TIMING[](default [{tq1:{}}]) -
- rrd_o14_dispense RRD_O14_DISPENSE? -
health.hl7v27: RRD_O14_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RRD_O14_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RRD_O14_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RRD_O14_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rrd_o14_patient RRD_O14_PATIENT? -
- rrd_o14_order RRD_O14_ORDER[](default [{orc:{}}]) -
health.hl7v27: RRD_O14_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RRD_O14_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRE_O12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RRE_O12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response RRE_O12_RESPONSE[](default [{}]) - RRE_O12_RESPONSE Segment Group
health.hl7v27: RRE_O12_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rre_o12_timing_encoded RRE_O12_TIMING_ENCODED[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RRE_O12_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- rre_o12_encoding RRE_O12_ENCODING? -
- prt PRT[](default [{}]) -
- rre_o12_timing RRE_O12_TIMING[](default [{tq1:{}}]) -
health.hl7v27: RRE_O12_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RRE_O12_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rre_o12_order RRE_O12_ORDER[](default [{orc:{}}]) -
- rre_o12_patient RRE_O12_PATIENT? -
health.hl7v27: RRE_O12_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRE_O12_TIMING_ENCODED
Fields
- Fields Included from *SegmentComponent
- name string(default RRE_O12_TIMING_ENCODED_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRG_O16
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RRG_O16_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- nte NTE[](default []) - NTE Segment
- response RRG_O16_RESPONSE[](default [{}]) - RRG_O16_RESPONSE Segment Group
health.hl7v27: RRG_O16_GIVE
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_GIVE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxg RXG -
- rrg_o16_timing_give RRG_O16_TIMING_GIVE[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
health.hl7v27: RRG_O16_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- rrg_o16_give RRG_O16_GIVE? -
- rrg_o16_timing RRG_O16_TIMING[](default [{tq1:{}}]) -
health.hl7v27: RRG_O16_PATIENT
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_PATIENT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
- nte NTE[](default [{}]) -
health.hl7v27: RRG_O16_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rrg_o16_order RRG_O16_ORDER[](default [{orc:{}}]) -
- rrg_o16_patient RRG_O16_PATIENT? -
health.hl7v27: RRG_O16_TIMING
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_TIMING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRG_O16_TIMING_GIVE
Fields
- Fields Included from *SegmentComponent
- name string(default RRG_O16_TIMING_GIVE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- tq2 TQ2[](default [{}]) -
- tq1 TQ1 -
health.hl7v27: RRI_I12
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RRI_I12_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA? - MSA Segment
- rf1 RF1? - RF1 Segment
- pid PID - PID Segment
- acc ACC? - ACC Segment
- dg1 DG1[](default []) - DG1 Segment
- drg DRG[](default []) - DRG Segment
- al1 AL1[](default []) - AL1 Segment
- nte NTE[](default []) - NTE Segment
- authorization_contact RRI_I12_AUTHORIZATION_CONTACT[](default [{aut:{}}]) - RRI_I12_AUTHORIZATION_CONTACT Segment Group
- provider_contact RRI_I12_PROVIDER_CONTACT[](default [{prd:{}}]) - RRI_I12_PROVIDER_CONTACT Segment Group
- procedure RRI_I12_PROCEDURE[](default [{pr1:{}}]) - RRI_I12_PROCEDURE Segment Group
- observation RRI_I12_OBSERVATION[](default [{obr:{}}]) - RRI_I12_OBSERVATION Segment Group
- patient_visit RRI_I12_PATIENT_VISIT[](default [{pv1:{}}]) - RRI_I12_PATIENT_VISIT Segment Group
health.hl7v27: RRI_I12_AUTHORIZATION_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_AUTHORIZATION_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RRI_I12_AUTHORIZATION_CONTACT2
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_AUTHORIZATION_CONTACT2_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aut AUT -
- ctd CTD? -
health.hl7v27: RRI_I12_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rri_i12_results_notes RRI_I12_RESULTS_NOTES[](default [{obx:{}}]) -
- obr OBR -
- nte NTE[](default [{}]) -
health.hl7v27: RRI_I12_PATIENT_VISIT
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_PATIENT_VISIT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pv1 PV1 -
- pv2 PV2? -
health.hl7v27: RRI_I12_PROCEDURE
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_PROCEDURE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rri_i12_authorization_contact2 RRI_I12_AUTHORIZATION_CONTACT2? -
- pr1 PR1 -
health.hl7v27: RRI_I12_PROVIDER_CONTACT
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_PROVIDER_CONTACT_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ctd CTD[](default [{}]) -
- prd PRD -
health.hl7v27: RRI_I12_RESULTS_NOTES
Fields
- Fields Included from *SegmentComponent
- name string(default RRI_I12_RESULTS_NOTES_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RSP_E03
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_E03_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- query_ack RSP_E03_QUERY_ACK[](default [{}]) - RSP_E03_QUERY_ACK Segment Group
health.hl7v27: RSP_E03_INVOICE_PROCESSING_RESULTS_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_E03_INVOICE_PROCESSING_RESULTS_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- ipr IPR -
health.hl7v27: RSP_E03_QUERY_ACK
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_E03_QUERY_ACK_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: RSP_E22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_E22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC[](default []) - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- query_ack RSP_E22_QUERY_ACK[](default [{}]) - RSP_E22_QUERY_ACK Segment Group
health.hl7v27: RSP_E22_AUTHORIZATION_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_E22_AUTHORIZATION_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rsp_e22_psl_item_info RSP_E22_PSL_ITEM_INFO[](default [{psl:{}}]) -
- psg PSG -
- ivc IVC -
health.hl7v27: RSP_E22_PSL_ITEM_INFO
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_E22_PSL_ITEM_INFO_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- psl PSL -
health.hl7v27: RSP_E22_QUERY_ACK
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_E22_QUERY_ACK_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
health.hl7v27: RSP_K11
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K11_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- dsc DSC? - DSC Segment
- segment_pattern RSP_K11_SEGMENT_PATTERN[](default [{anyhl7segment:{}}]) - RSP_K11_SEGMENT_PATTERN Segment Group
health.hl7v27: RSP_K11_SEGMENT_PATTERN
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K11_SEGMENT_PATTERN_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- anyhl7segment anydata -
health.hl7v27: RSP_K21
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K21_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- dsc DSC? - DSC Segment
- query_response RSP_K21_QUERY_RESPONSE[](default [{pid:{}, qri:{}}]) - RSP_K21_QUERY_RESPONSE Segment Group
health.hl7v27: RSP_K21_QUERY_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K21_QUERY_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- arv ARV[](default [{}]) -
- nk1 NK1[](default [{}]) -
- qri QRI -
- pid PID -
- pd1 PD1? -
health.hl7v27: RSP_K22
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K22_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- dsc DSC? - DSC Segment
- query_response RSP_K22_QUERY_RESPONSE[](default [{pid:{}}]) - RSP_K22_QUERY_RESPONSE Segment Group
health.hl7v27: RSP_K22_QUERY_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K22_QUERY_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- nk1 NK1[](default [{}]) -
- qri QRI? -
- pid PID -
- pd1 PD1? -
health.hl7v27: RSP_K23
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K23_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR? - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- dsc DSC? - DSC Segment
- query_response RSP_K23_QUERY_RESPONSE[](default [{pid:{}}]) - RSP_K23_QUERY_RESPONSE Segment Group
health.hl7v27: RSP_K23_QUERY_RESPONSE
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K23_QUERY_RESPONSE_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- pid PID -
health.hl7v27: RSP_K25
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K25_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
- staff RSP_K25_STAFF[](default [{stf:{}}]) - RSP_K25_STAFF Segment Group
health.hl7v27: RSP_K25_STAFF
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K25_STAFF_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- aff AFF[](default [{}]) -
- cer CER[](default [{}]) -
- stf STF -
- org ORG[](default [{}]) -
- nk1 NK1[](default [{}]) -
- edu EDU[](default [{}]) -
- lan LAN[](default [{}]) -
- pra PRA[](default [{}]) -
- rol ROL[](default [{}]) -
health.hl7v27: RSP_K31
HL7 Message Default Description
Fields
- Fields Included from *Message
- name string
- anydata...
- name string(default RSP_K31_MESSAGE_TYPE) - Message name
- msh MSH - MSH Segment
- msa MSA - MSA Segment
- err ERR[](default []) - ERR Segment
- sft SFT[](default []) - SFT Segment
- uac UAC? - UAC Segment
- qak QAK - QAK Segment
- qpd QPD - QPD Segment
- rcp RCP - RCP Segment
- dsc DSC? - DSC Segment
- response RSP_K31_RESPONSE[](default [{}]) - RSP_K31_RESPONSE Segment Group
health.hl7v27: RSP_K31_ADDITIONAL_DEMOGRAPHICS
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K31_ADDITIONAL_DEMOGRAPHICS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- pd1 PD1 -
health.hl7v27: RSP_K31_COMPONENTS
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K31_COMPONENTS_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rxc RXC -
- nte NTE[](default [{}]) -
health.hl7v27: RSP_K31_ENCODING
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K31_ENCODING_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- rsp_k31_timing_encoded RSP_K31_TIMING_ENCODED[](default [{tq1:{}}]) -
- rxc RXC[](default [{}]) -
- rxr RXR[](default [{}]) -
- rxe RXE -
- nte NTE[](default [{}]) -
health.hl7v27: RSP_K31_OBSERVATION
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K31_OBSERVATION_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- prt PRT[](default [{}]) -
- obx OBX -
- nte NTE[](default [{}]) -
health.hl7v27: RSP_K31_ORDER
Fields
- Fields Included from *SegmentComponent
- name string(default RSP_K31_ORDER_SEGMENT_COMPONENT) -
- isRequired boolean(default true) -
- orc ORC -
- prt PRT[](default [{}]) -
- rsp_k31_timing RSP_K31_TIMING[](default [{tq1:{}}]) -
- rsp_k31_observation RSP_K31_OBSERVATION[](default [{obx:{}}]) -
- rxc RXC[](default [{}]) -
- rsp_k31_order_detail RSP_K31_ORDER_DETAIL? -
- rsp_k31_encoding RSP_K31_ENCODING? -
- rxr RXR[](default [{}]) -
- rxd RXD -