This page is part of the FHIR Specification (v0.0.82: DSTU 1). The current version which supercedes this version is 5.0.0. For a full list of available versions, see the Directory of published versions
. Page versions: R5 R4B R4 R3 R2
Patient 1 for linking
{
"resourceType": "CarePlan",
"extension": [
{
"url": "http://example.org/DoNotUse/careplan#lmp",
"valueDateTime": "2013-01-01"
}
],
"text": {
"status": "additional",
"div": "<div>\n <p>A maternity care plan (for a pregnant woman).</p> \n <p>LMP is 1st Jan, 2013 (a greaat new years party!) The plan has a scheduled first antenatal,\n and 'placeholders' for the second antenatal and delivery (there would be lots of others of course)</p>\n <p>Note that where is a proposed 'status' element against each activity</p>\n </div>"
},
"contained": [
{
"resourceType": "Condition",
"id": "p1",
"subject": {
"reference": "Patient/1",
"display": "Eve Everywoman"
},
"code": {
"text": "pregnancy"
},
"status": "confirmed"
},
{
"resourceType": "Practitioner",
"id": "pr1",
"name": {
"family": [
"Midwife"
],
"given": [
"Mavis"
]
},
"specialty": [
{
"text": "Midwife"
}
]
},
{
"resourceType": "Practitioner",
"id": "pr2",
"name": {
"family": [
"Obstetrician"
],
"given": [
"Oscar"
]
},
"specialty": [
{
"text": "Obstetrician"
}
]
}
],
"patient": {
"reference": "Patient/1",
"display": "Eve Everywoman"
},
"status": "active",
"period": {
"start": "2013-01-01",
"end": "2013-10-01"
},
"concern": [
{
"reference": "#p1",
"display": "pregnancy"
}
],
"participant": [
{
"role": {
"coding": [
{
"system": "mySys",
"code": "lmc"
}
],
"text": "Midwife"
},
"member": {
"reference": "#pr1",
"display": "Mavis Midwife"
}
},
{
"role": {
"coding": [
{
"system": "mySys",
"code": "obs"
}
],
"text": "Obstretitian"
},
"member": {
"reference": "#pr2",
"display": "Oscar Obstetrician"
}
}
],
"goal": [
{
"description": "Maintain a womans health throughout pregnancy and ensure a healthy child"
}
],
"activity": [
{
"extension": [
{
"url": "http://example.org/DoNotUse/careplan#andetails",
"valueUri": "http://orionhealth.com/fhir/careplan/1andetails"
}
],
"status": "scheduled",
"prohibited": false,
"simple": {
"category": "encounter",
"code": {
"coding": [
{
"system": "mySystem",
"code": "1an"
}
],
"text": "First Antenatal encounter"
},
"timingSchedule": {
"event": [
{
"start": "2013-02-14",
"end": "2013-02-28"
}
]
},
"performer": [
{
"reference": "#pr1",
"display": "Mavis Midwife"
}
],
"details": "The first antenatal encounter. This is where a detailed physical examination is performed. and the pregnanacy discussed with the mother-to-be."
}
},
{
"status": "not started",
"prohibited": false,
"simple": {
"category": "encounter",
"code": {
"coding": [
{
"system": "mySystem",
"code": "an"
}
],
"text": "Follow-up Antenatal encounter"
},
"timingSchedule": {
"event": [
{
"start": "2013-03-01",
"end": "2013-03-14"
}
]
},
"performer": [
{
"reference": "#pr1",
"display": "Mavis Midwife"
}
],
"details": "The second antenatal encounter. Discuss any issues that arose from the first antenatal encounter"
}
},
{
"status": "not started",
"prohibited": false,
"simple": {
"category": "encounter",
"code": {
"coding": [
{
"system": "mySystem",
"code": "del"
}
],
"text": "Delivery"
},
"timingSchedule": {
"event": [
{
"start": "2013-09-01",
"end": "2013-09-14"
}
]
},
"performer": [
{
"reference": "#pr1",
"display": "Mavis Midwife"
}
],
"details": "The delivery."
}
}
]
}