For AI agents: the documentation index is at /docs/termbox/llms.txt. A Markdown version of this page is available at /docs/termbox/standard-operations/codesystem-find-matches.md or by requesting it with the Accept: text/markdown header.
Termbox Docs

CodeSystem/$find-matches

Returns possible matching CodeSystem concepts for a submitted display string. Termbox currently supports exact, case-sensitive matching against concept designations and display text.

FHIR Specification

See the official FHIR specification for supported request parameters and response parameters: https://www.hl7.org/fhir/codesystem-operation-find-matches.html.

Response

Returns a FHIR Parameters resource with zero or more match parameters. Each match contains a code part.

Example

POST /CodeSystem/$find-matches
Content-Type: application/fhir+json

{
  "resourceType": "Parameters",
  "parameter": [
    { "name": "system", "valueUri": "http://example.org/CodeSystem/cs-colors" },
    { "name": "display", "valueString": "Azure" }
  ]
}
{
  "resourceType": "Parameters",
  "parameter": [
    {
      "name": "match",
      "part": [
        { "name": "code", "valueCode": "blue" }
      ]
    }
  ]
}

For high-throughput matching over many display strings, use $x-multi-invoke with operation set to CodeSystem/$find-matches.

Last updated: