For AI agents: the documentation index is at /docs/termbox/llms.txt. A Markdown version of this page is available at /docs/termbox/examples/validate-code-implicit-valueset.md or by requesting it with the Accept: text/markdown header.
Termbox Docs

Validate a code using an implicit value set

For this example we assume THO and SNOMED International are loaded.

Here we're validating that code 38341003 is valid in the implicit value set http://snomed.info/sct?fhir_vs=isa/404684003, which is the value set of all SNOMED concepts that are a 404684003 | Clinical finding.

GET /ValueSet/$validate-code?url=http://snomed.info/sct?fhir_vs=isa/404684003&code=38341003&inferSystem=true
{
  "resourceType": "Parameters",
  "parameter": [
    {
      "name": "result",
      "valueBoolean": true
    },
    {
      "name": "code",
      "valueCode": "38341003"
    },
    {
      "name": "display",
      "valueString": "Hypertensive disorder, systemic arterial (disorder)"
    },
    {
      "name": "system",
      "valueUri": "http://snomed.info/sct"
    },
    {
      "name": "version",
      "valueString": "http://snomed.info/sct/900000000000207008/version/20260201"
    }
  ]
}

Last updated: