2014-10-18 6 views
1

FHIR 투약 스케쥴/타이밍 구조를 사용하면 다음 두 가지 빈도를 나타내는 데 권장되는 방법은 무엇입니까? 1) 21 일마다 1 시간 (예 : 화학 요법 주입) 및 2) 4-6 시간마다 .투약 타이밍 문제

덕분에,

답변

0

음, FHIR 프로젝트 팀 내에서 협의 후, 당신이 순간을 위해 확장을 사용해야합니다 것을, 그리고이 FHIR의 R2에서 해결 될 것으로 보인다.

0

이 예 도울 수

http://hl7.org/fhir/2016Sep/medicationorder0317.json.html

발췌 ....

"dosageInstruction": [ 
{ 
    "text": "Rapid daily-dose escalation, until tolerated, from 3 mg/d, and then 10 mg/d, to the recommended maintenance dose of 30 mg IV over 120 min, 3 times per wk on alternate days for up to 12 wk", 
    "additionalInstructions": [ 
    { 
     "text": "Rapidly increase dose until tolerated" 
    }, 
    { 
     "text": "Administer on alternate days" 
    } 
    ], 
    "timing": { 
    "repeat": { 
     "duration": 12, 
     "durationUnit": "wk", 
     "frequency": 3, 
     "period": 1, 
     "periodUnit": "wk" 
    } 
    }, 
    "route": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "47625008", 
     "display": "Intravenous route (qualifier value)" 
     } 
    ] 
    }, 
    "method": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "422145002", 
     "display": "Inject - dosing instruction imperative (qualifier value)" 
     } 
    ] 
    }, 
    "doseQuantity": { 
    "value": 3, 
    "unit": "mg", 
    "system": "http://loinc.org", 
    "code": "mg" 
    } 
}, 
{ 
    "text": "Rapid daily-dose escalation, until tolerated, from 3 mg/d, and then 10 mg/d, to the recommended maintenance dose of 30 mg IV over 120 min, 3 times per wk on alternate days for up to 12 wk", 
    "additionalInstructions": [ 
    { 
     "text": "Rapidly increase dose until tolerated" 
    }, 
    { 
     "text": "Administer on alternate days" 
    } 
    ], 
    "timing": { 
    "repeat": { 
     "duration": 12, 
     "durationUnit": "wk", 
     "frequency": 3, 
     "period": 1, 
     "periodUnit": "wk" 
    } 
    }, 
    "route": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "47625008", 
     "display": "Intravenous route (qualifier value)" 
     } 
    ] 
    }, 
    "method": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "422145002", 
     "display": "Inject - dosing instruction imperative (qualifier value)" 
     } 
    ] 
    }, 
    "doseQuantity": { 
    "value": 10, 
    "unit": "mg", 
    "system": "http://loinc.org", 
    "code": "mg" 
    } 
}, 
{ 
    "text": "Rapid daily-dose escalation, until tolerated, from 3 mg/d, and then 10 mg/d, to the recommended maintenance dose of 30 mg IV over 120 min, 3 times per wk on alternate days for up to 12 wk", 
    "additionalInstructions": [ 
    { 
     "text": "Rapidly increase dose until tolerated" 
    }, 
    { 
     "text": "Administer on alternate days" 
    } 
    ], 
    "timing": { 
    "repeat": { 
     "duration": 12, 
     "durationUnit": "wk", 
     "frequency": 3, 
     "period": 1, 
     "periodUnit": "wk" 
    } 
    }, 
    "route": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "47625008", 
     "display": "Intravenous route (qualifier value)" 
     } 
    ] 
    }, 
    "method": { 
    "coding": [ 
     { 
     "system": "http://snomed.info/sct", 
     "code": "422145002", 
     "display": "Inject - dosing instruction imperative (qualifier value)" 
     } 
    ] 
    }, 
    "doseQuantity": { 
    "value": 30, 
    "unit": "mg", 
    "system": "http://loinc.org", 
    "code": "mg" 
    } 
} 

]