FHIR Chat · Blood Type · Orders and Observation WG

Stream: Orders and Observation WG

Topic: Blood Type


view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:12):

@Eric Haas do you know of any work around representing blood group and Rh Status in Observation?

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:12):

this would be a good example to add, right?

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:19):

how about this:

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:19):

{
  "resourceType" : "Observation",
  "subject" : {
    "reference" : "Patient/<patient-id>"
  },
  "code" : [
    "coding" : [{
      "system" : "http://loinc.org",
      "code" : "34532-2"
    }],
    "text" : "Blood Group Panel"
  ],
  "component" : [{
    "code" : [
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "883-9"
      }],
    "text" : "Blood Group"
    ],
    "valueString" : "<A.ABO>"
  },{
    "code" : [
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "10331-7"
      }],
    "text" : "Rh Status"
    ],
    "valueString" : "<A.Rh>"
  }]
}

view this post on Zulip Eric Haas (Mar 01 2018 at 02:26):

nope

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:27):

ok why not

view this post on Zulip Eric Haas (Mar 01 2018 at 02:32):

nope to the first question I created this a while back...

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:36):

ok. so I made a few mistakes, so this:

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:36):

{
  "resourceType" : "Observation",
  "status" : "final",
  "subject" : {
    "reference" : "Patient/<patient-id>"
  },
  "code" : [
    "coding" : [{
      "system" : "http://loinc.org",
      "code" : "34532-2"
    }],
    "text" : "Blood Group Panel"
  ],
  "component" : [{
    "code" : {
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "883-9"
      }],
    "text" : "Blood Group"
    },
    "valueString" : "<A.ABO>"
  },{
    "code" : {
      "coding" : [{
        "system" : "http://loinc.org",
        "code" : "10331-7"
      }],
    "text" : "Rh Status"
    },
    "valueString" : "<A.Rh>"
  }]
}

view this post on Zulip Eric Haas (Mar 01 2018 at 02:40):

OK will add... started this profile a while back ....
Screen-Shot-2018-02-28-at-6.39.52-PM.png

view this post on Zulip Eric Haas (Mar 01 2018 at 02:41):

to which this kind of aligns. never got the blood typing panel though just noodling a bit

view this post on Zulip Grahame Grieve (Mar 01 2018 at 02:49):

k. so there's a question about the panel/component thing. And also which data type to use. LOINC is silent about this

view this post on Zulip Eric Haas (Mar 01 2018 at 04:03):

They are stand alone measures and I think should be individual Observations.

view this post on Zulip Rob Hausam (Mar 01 2018 at 16:23):

I agree with Eric that these should be individual observations - this is a panel, and the individual observations can be used independently.

view this post on Zulip Grahame Grieve (Mar 01 2018 at 21:01):

and which data type?

view this post on Zulip Rob Hausam (Mar 01 2018 at 21:22):

any reason it shouldn't be valueCodeableConcept?

view this post on Zulip Grahame Grieve (Mar 01 2018 at 21:37):

is there a code system suitable for use? Other than SNOMED?

view this post on Zulip Rob Hausam (Mar 01 2018 at 21:49):

there may be LOINC answers for it - I haven't looked to be sure


Last updated: Apr 12 2022 at 19:14 UTC