TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/sagar-grv/ayush-synapse/llms.txt
Use this file to discover all available pages before exploring further.
/conceptmap endpoint returns the full FHIR R4 ConceptMap resource describing how NAMASTE codes map to ICD-11 codes. This resource enables FHIR-compatible EMR systems to consume the mappings directly without any custom parsing.
Endpoint
Method:GETPath:
/conceptmapAuth: None (demo mode)
Response
Returns a FHIR R4ConceptMap JSON object.
Key Response Fields
| Field | Value |
|---|---|
resourceType | "ConceptMap" |
id | "namaste-icd11-map" |
name | "NAMASTE to ICD-11 Mapping" |
status | "active" |
sourceUri | http://example.com/codesystem/namaste-codes |
targetUri | http://who.int/icd11/tm2 |
group[].element | Array of source concept elements, each with a target array |
group[].element contains:
| Field | Description |
|---|---|
code | The NAMASTE source code (e.g. NAM-001) |
target[].code | The mapped ICD-11 target code |
target[].equivalence | The mapping equivalence type |
Example
Response (truncated)
Source and Target URIs
ThesourceUri and targetUri fields identify the code systems participating in the map:
| Field | URI |
|---|---|
sourceUri | http://example.com/codesystem/namaste-codes |
targetUri | http://who.int/icd11/tm2 |
source and target properties on the group object inside the ConceptMap, conforming to the FHIR R4 ConceptMap.group structure.
The ConceptMap includes all 85 concept mappings. If you need a simpler JSON format without the FHIR resource wrapping, use GET /mappings instead.