简体   繁体   English

所有HL7段结构表头是什么意思?

[英]What do all of the HL7 segment structure table headers mean?

For example, the OBR segment reference table from here has the following headers: 例如, 此处的OBR段引用表具有以下标头:

  • SEQ SEQ
  • LENGTH 长度
  • DT DT
  • OPT 选择
  • RPT/# RPT /#
  • TBL# TBL#
  • NAME 名称

Here are my observations: 以下是我的观察:

  • SEQ seems fairly self-explanatory: It's the field number in the segment. SEQ似乎相当不言自明:它是段中的字段编号。 Things like OBR.1 , OBR.2 , OBR.3 , etc. OBR.1OBR.2OBR.3等等。
  • LENGTH looks fairly straightforward too: It's the length of the data. LENGTH看起来也很简单:这是数据的长度。 But some of them are 0 ? 但有些人是0
  • DT looks like data type. DT看起来像数据类型。 Things like SI , EI , ST , XCN , ID , NDL , etc. SIEISTXCNIDNDL等等。
  • NAME is also self-explanatory: It's the full name of the field. NAME也是不言自明的:它是该领域的全名。

Here are the main things I don't know about: 以下是我不了解的主要内容:

  • What does OPT mean? OPT是什么意思? In this column, I've seen things like: O , R , RE , C , B , X , W 在本专栏中,我看到过类似的东西: ORRECBXW
  • What does RPT/# mean? RPT /#是什么意思? In this column, I've seen things like: * , 1 , 2 在本专栏中,我看到的东西,如: *12
  • What does TBL# mean? TBL#是什么意思? In this column, I've seen things like: 0065 , 0074 , 9999 在本专栏中,我看到的东西,如: 006500749999
  • LENGTH looks fairly straightforward too: It's the length of the data. LENGTH看起来也很简单:这是数据的长度。 But some of them are 0? 但有些人是0?

Lengths are authoritative or arbitrary. 长度是权威的或任意的。 Some lengths are exact lengths. 一些长度是精确的长度。 Some are maximum lengths. 有些是最大长度。 That is why some of them are zero. 这就是为什么它们中的一些是零的原因。 Few other guides simply put it empty. 很少有其他导游只是把它弄空了。 Refer to this . 参考这个

  • What does OPT mean? OPT是什么意思? In this column, I've seen things like: O, R, RE, C, B, X, W 在本专栏中,我看到过类似的东西:O,R,RE,C,B,X,W

OPT denotes optionality. OPT表示可选性。

R = Required  
RE = Required but may be empty  
O = Optional  
C = Conditional  
X = Not Supported  
B = Backward Compatibility  
W = Withdrawn

Refer to this for more details. 请参阅了解更多详情。

  • What does RPT/# mean? RPT /#是什么意思? In this column, I've seen things like: *, 1, 2 在本专栏中,我看到过:*,1,2

This denotes how many times the field value can be repeated. 这表示可以重复字段值的次数。 In other words, how many values a field can hold. 换句话说,字段可以容纳多少个值。

1 = Only one value  
2 = Maximum two values  
* = Not Defined/Multiple
  • What does TBL# mean? TBL#是什么意思? In this column, I've seen things like: 0065, 0074, 9999 在本专栏中,我见过的内容如下:0065,0074,9999

Those are table numbers where more information about the field should be referred. 这些是表格编号,应提及有关该字段的更多信息。 So, in your example, for OBR.11 field, linked table is 0065 which lists the possible values for that field: 因此,在您的示例中,对于OBR.11字段,链接表是0065,其中列出了该字段的可能值:

A = Add ordered tests to the existing specimen  
G = Generated order; reflex order  
L = Lab to obtain specimen from patient  
O = Specimen obtained by service other than Lab  
P = Pending specimen; Order sent prior to delivery  
R = Revised order  
S = Schedule the tests specified below

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM