CareTeam Resource #

This resource will be available only for registered Smart Health users.

Standards/Exceptions/Profiles in use #

Attributes #

Attribute Comment Reference
contained Patient, Provider and Organization information DomainResource.contained
status Status of the Care Team, will be one of these values: proposed, active, suspended, inactive or entered-in-error CareTeam.status
subject Reference to Patient in contained section CareTeam.subject
participant List of Care Team participants CareTeam.participant

Example #

{
    "resourceType": "CareTeam",
    "id": "7d212786-378f-492a-afe1-429d1e8eac04",
    "contained": [
        {
            "resourceType": "Patient",
            "id": "1",
            "name": [
                {
                    "family": "Doe",
                    "given": [
                        "Jane"
                    ]
                }
            ]
        },
        {
            "resourceType": "Organization",
            "id": "2",
            "name": "My Acme Pharmacy",
            "address": [
                {
                    "line": [
                        "100 Orlando Blvd"
                    ],
                    "city": "Orlando",
                    "state": "FL",
                    "postalCode": "32803",
                    "country": "USA"
                }
            ],
            "telecom": [
                {
                    "system": "phone",
                    "value": "5555555555"
                },
                {
                    "system": "fax",
                    "value": "5555555554"
                }
            ]
        }
    ],
    "status": "active",
    "category": [
        {
            "coding": [
                {
                    "system": "http://loinc.org",
                    "code": "LA27976-2",
                    "display": "Encounter-focused care team"
                }
            ]
        }
    ],
    "subject": {
        "reference": "#1"
    },
    "participant": [
        {
            "role": [
                {
                    "coding": [
                        {
                            "system": "http://snomed.info/sct",
                            "code": "46255001",
                            "display": "Pharmacist"
                        }
                    ]
                }
            ],
            "member": {
                "reference": "#2",
                "display": "Preferred Pharmacy"
            }
        }
    ]
}