The CareTeam resource implements the FHIR R4 CareTeam specification and US Core v3.1.1 CareTeam profile
Fields
| Name | Type | Cardinality | Required | Description |
|---|---|---|---|---|
| identifier | Identifier | 0..* | External Ids for this team | |
| status | code | 1..1 | * | proposed | active | suspended | inactive | entered-in-error - Binding |
| category | CodeableConcept | 0..* | Type of team | |
| name | string | 0..1 | Name of the team, such as crisis assessment team | |
| subject | ResourceReference | 1..1 | * | Who care team is for |
| period | Period | 0..1 | Time period team covers | |
| participant | CareTeam.Participant | 1..* | * | Members of the team |
| participant.role | CodeableConcept | 1..1 | * | Type of involvement - Binding |
| participant.member | Reference(US Core Patient Profile | US Core Practitioner Profile | US Core Organization Profile) | 1..1 | * | Who is involved |
| managingOrganization | ResourceReference | 0..1 | Organization responsible for the care team | |
| encounter | ResourceReference | 0..1 | Encounter created as part of | |
| reasonCode | CodeableConcept | 0..* | Time period of participant |
Interactions
Read
Get an CareTeam entry by id
GET /CareTeam/:id
Example
Request
https://r4cert.medicasoft.us/api/fhir/CareTeam/a609d2a4-17b5-44a3-470e-4e5db05b5c4c
Response
{
"resourceType": "CareTeam",
"status": "active",
"subject": {
"reference": "Patient/bcfa83df-ee8c-9721-cc07-bdcfc2b1e3f2"
},
"period": {
"start": "1994-01-02T01:19:44-05:00"
},
"participant": [
{
"role": [
{
"coding": [
{
"code": "116154003",
"system": "http://snomed.info/sct",
"display": "Patient"
}
],
"text": "Patient"
}
],
"member": {
"reference": "Patient/bcfa83df-ee8c-9721-cc07-bdcfc2b1e3f2",
"display": "Mr. Walton167 Veum823"
}
},
{
"role": [
{
"coding": [
{
"code": "223366009",
"system": "http://snomed.info/sct",
"display": "Healthcare professional (occupation)"
}
],
"text": "Healthcare professional (occupation)"
}
],
"member": {
"reference": "Practitioner/938fcb90-fd0a-351e-a874-a0cd3bdc81b9",
"display": "Dr. Ingrid581 Jacobson885"
}
},
{
"role": [
{
"coding": [
{
"code": "224891009",
"system": "http://snomed.info/sct",
"display": "Healthcare services (qualifier value)"
}
],
"text": "Healthcare services (qualifier value)"
}
],
"member": {
"reference": "Organization/b1ddf812-1fdd-3adf-b1d5-32cc8bd07ebb",
"display": "BETH ISRAEL DEACONESS HOSPITAL - PLYMOUTH"
}
}
],
"managingOrganization": [
{
"reference": "Organization/b1ddf812-1fdd-3adf-b1d5-32cc8bd07ebb",
"display": "BETH ISRAEL DEACONESS HOSPITAL - PLYMOUTH"
}
],
"encounter": {
"reference": "Encounter/df0372ee-1819-453a-507b-fb6ecfc0e768"
},
"reasonCode": [
{
"coding": [
{
"code": "88805009",
"system": "http://snomed.info/sct",
"display": "Chronic congestive heart failure (disorder)"
}
],
"text": "Chronic congestive heart failure (disorder)"
}
],
"id": "a609d2a4-17b5-44a3-470e-4e5db05b5c4c"
}
Search
Query CareTeam resources
GET /CareTeam?:query_parameters
Parameters
| Name | Type | Description |
|---|---|---|
| category | token | |
| date | date | |
| encounter | reference | |
| identifier | token | |
| participant | reference | |
| patient | reference | |
| status | token | |
| subject | reference | |
| _revinclude | Provenance:target |
Example
Request
https://r4cert.medicasoft.us/api/fhir/CareTeam?patient=bcfa83df-ee8c-9721-cc07-bdcfc2b1e3f2&status=active
Errors
| Code | Description |
|---|---|
| 400 | Invalid parameters |
| 404 | Resource not found |