Connectathon 2026 Wiki

Racsel logo
Back to home

Tasks · T4

Test terminology operations

Verify successful $lookup and $translate operations on the terminology server.

Requirements

T3

Expected response

The server returns valid FHIR Parameters responses for lookup and translate calls.

Evidence

JSON with the transactions.

Observations

Use the terminology server URLs from the appendix and validate both operations.

Requests to run

Collection

Terminology server - FHIR terminology

ITI-98: CodeSystem/$lookup

curl -X GET "${TERMINOLOGY_SERVER}/CodeSystem/\$lookup?system=${LOCAL_CODESYSTEM_VACUNAS}&code=L30" \
  -H "Accept: application/fhir+json"

Expected response

HTTP 200 with a FHIR Parameters resource containing system, version, and display values for the code.

Collection

Terminology server - FHIR terminology

ITI-101: ConceptMap/$translate

curl -X GET "${TERMINOLOGY_SERVER}/ConceptMap/\$translate?code=L30&system=${LOCAL_CODESYSTEM_VACUNAS}&targetsystem=${SNOMED_CODESYSTEM}" \
  -H "Accept: application/fhir+json"

Expected response

HTTP 200 with a FHIR Parameters resource where result is true and match includes an equivalent SNOMED CT concept.