Skip to content

Withdrawn: reverse translate report does not reproduce #218

@jmandel

Description

@jmandel

Withdrawn.

I reran the public request against tx.fhir.org, and it does not reproduce a failure.

curl -sS \
  -H 'Accept: application/fhir+json' \
  -H 'Content-Type: application/fhir+json' \
  --data-binary @- \
  'https://tx.fhir.org/r4/ConceptMap/$translate' <<'JSON'
{
  "resourceType": "Parameters",
  "parameter": [
    {"name": "url", "valueUri": "http://hl7.org/fhir/ConceptMap/cm-administrative-gender-v3"},
    {"name": "sourceSystem", "valueUri": "http://hl7.org/fhir/administrative-gender"},
    {"name": "targetSystem", "valueUri": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender"},
    {"name": "targetCode", "valueCode": "M"}
  ]
}
JSON

Expected: reverse translation should return result=true, a match with source-side code male, target-side concept M, and R4 equivalence=equal. It should not include an unrelated originMap part.

Observed:

{
  "resourceType": "Parameters",
  "result": true,
  "matches": [
    {
      "parts": [
        {
          "name": "source",
          "valueCoding": {
            "system": "http://hl7.org/fhir/administrative-gender",
            "code": "male"
          }
        },
        {
          "name": "concept",
          "valueCoding": {
            "system": "http://terminology.hl7.org/CodeSystem/v3-AdministrativeGender",
            "code": "M"
          }
        },
        {
          "name": "equivalence",
          "valueCode": "equal"
        }
      ]
    }
  ]
}

Expected and observed match, so this is not a valid upstream issue.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions