Created
June 29, 2023 09:34
-
-
Save brianraila/6023406c53fbcc2ee682752aa9a5ec18 to your computer and use it in GitHub Desktop.
Revisions
-
brianraila created this gist
Jun 29, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,21 @@ { "resourceType": "CodeSystem", "url": "http://example.com/CodeSystem/CardiacConditions", "version": "1.0.0", "name": "CardiacConditions", "status": "active", "concept": [ { "code": "myocardial-infarction", "display": "Myocardial Infarction" }, { "code": "heart-failure", "display": "Heart Failure" }, { "code": "arrhythmia", "display": "Arrhythmia" } ] } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ { "resourceType": "ValueSet", "url": "http://example.com/ValueSet/CardiacConditions", "version": "1.0.0", "name": "CardiacConditions", "status": "active", "compose": { "include": [ { "system": "http://example.com/CodeSystem/CardiacConditions" } ] } } This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ { "resourceType": "StructureDefinition", "id": "CardiologyPatientProfile", "url": "http://example.com/StructureDefinition/CardiologyPatientProfile", "version": "1.0.0", "name": "CardiologyPatientProfile", "status": "active", "publisher": "Cardiology Organization", "description": "A profile for cardiology patients", "fhirVersion": "4.0.1", "baseDefinition": "http://hl7.org/fhir/StructureDefinition/Patient", "snapshot": { "element": [ { "id": "Patient.extension", "path": "Patient.extension", "min": 0, "max": "*" }, { "id": "Patient.extension:cardiac-condition", "path": "Patient.extension", "min": 0, "max": "1", "type": [ { "code": "Extension" } ], "binding": { "strength": "required", "valueSet": "http://example.com/ValueSet/CardiacConditions" } } ] } }