Stream: conformance
Topic: tx.fhir.org not accepting a valid designation as a display
 Rob Hausam (Mar 21 2019 at 06:53):
In the IPS IG build we're getting a warning that:
The display "Menopausal and female climacteric states" is not a valid display for the code ,{http://hl7.org/fhir/sid/icd-10-vn}N95.1 - should be one of ["Tình trạng mãn kinh nữ"]
Querying tx.fhir.org (GET) directly with:
http://tx.fhir.org/r4/CodeSystem/$validate-code?system=http://hl7.org/fhir/sid/icd-10-vn&code=N95.1&display=Menopausal%20and%20female%20climacteric%20states
Gives the same error message:
{
  "resourceType" : "Parameters",
  "parameter" : [
    {
      "name" : "display",
      "valueString" : "Tình trạng mãn kinh nữ"
    },
    {
      "name" : "result",
      "valueBoolean" : true
    },
    {
      "name" : "message",
      "valueString" : "The display \"Menopausal and female climacteric states\" is not a valid display for the code {http://hl7.org/fhir/sid/icd-10-vn}N95.1 - should be one of [\"Tình trạng mãn kinh nữ\"]"
    }
  ]
}
But $lookup with:
http://tx.fhir.org/r4/CodeSystem/$lookup?system=http://hl7.org/fhir/sid/icd-10-vn&code=N95.1
Gives:
{
  "resourceType" : "Parameters",
  "parameter" : [
    {
      "name" : "name",
      "valueString" : "ICD-10 Vietnam"
    },
    {
      "name" : "display",
      "valueString" : "Tình trạng mãn kinh nữ"
    },
    {
      "name" : "designation",
      "part" : [
        {
          "name" : "language",
          "valueCode" : "en"
        },
        {
          "name" : "value",
          "valueString" : "Menopausal and female climacteric states"
        }
      ]
    },
    {
      "name" : "property",
      "part" : [
        {
          "name" : "code",
          "valueCode" : "descendents"
        },
        {
          "name" : "value",
          "valueInteger" : 0
        }
      ]
    }
  ]
}
Which verifies that "Menopausal and female climacteric states" is a valid designation and it should be valid as a display string.
 Rob Hausam (Mar 21 2019 at 06:54):
@Grahame Grieve?
 Grahame Grieve (Mar 22 2019 at 00:29):
I’ll add it to my list
Last updated: Apr 12 2022 at 19:14 UTC