2.4. ValueSet
⚠️ This is a template for describing your Valueset
resource. To start, update the canonical URL above to the one of your resource. Don't forget to remove this paragraph.
2.4.1. Metadata
These are the details for this resource:
Canonical_URL | Status |
---|---|
https://disease-code-cm.com/fhir/ValueSet/icd10cm-tcm-combo | active |
2.4.2. Resource content
These are different views on this resource:
ValueSet ''
Status | Active |
This value set includes codes from the following code systems:
The following codes from system: icd-10-cm-china
Code Display C16.901 高血压 C16.902 冠心病
<ValueSet xmlns="http://hl7.org/fhir"> <id value="chinese-diagnosis-valueset" /> <url value="https://disease-code-cm.com/fhir/ValueSet/icd10cm-tcm-combo" /> <status value="active" /> <compose> <include> <system value="https://disease-code-cm.com/fhir/CodeSystem/icd10cm-cn" /> <concept> <code value="C16.901" /> <display value="高血压" /> </concept> <concept> <code value="C16.902" /> <display value="冠心病" /> </concept> </include> </compose> </ValueSet>
{ "resourceType": "ValueSet", "id": "chinese-diagnosis-valueset", "url": "https://disease-code-cm.com/fhir/ValueSet/icd10cm-tcm-combo", "status": "active", "compose": { "include": [ { "system": "https://disease-code-cm.com/fhir/CodeSystem/icd10cm-cn", "concept": [ { "code": "C16.901", "display": "高血压" }, { "code": "C16.902", "display": "冠心病" } ] } ] } }