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.
Withdrawn.
I reran the public request against
tx.fhir.org, and it does not reproduce a failure.Expected: reverse translation should return
result=true, amatchwith source-side codemale, target-side conceptM, and R4equivalence=equal. It should not include an unrelatedoriginMappart.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.