Condition Resource #

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

Standards/Exceptions/Profiles in use #

Attributes #

Attribute Comment Reference
contained Patient name information DomainResource.contained
clinicalStatus The clinical status of the allergy or intolerance (active, inactive, resolved) Condition.clinicalStatus and ValueSet
verificationStatus Assertion about certainty associated with the propensity, or potential risk, of a reaction to the identified substance (unconfirmed, confirmed, refuted, entered-in-error) Condition.verificationStatus and ValueSet
severity Subjective severity of condition. Severe (24484000), Moderate (6736007), Mild (255604002). SNOMED codes may not be included Condition.severity and ValueSet
code display is used to present name of the condition. SNOMED codes may not be included Condition.code and CodeSet
subject reference to patient found in contained
asserter reference to Source of the information about the allergy found in contained. Typically this is the patient
onsetDateTime When allergy or intolerance was identified Condition.onset_x_

Example #

{
    "resourceType": "Bundle",
    "id": "bundle-references",
    "type": "collection",
    "entry": [
        {
            "fullUrl": "resource:1",
            "resource": {
                "resourceType": "Condition",
                "id": "7d212786-378f-492a-afe1-429d1e8eac04",
                "contained": [
                    {
                        "resourceType": "Patient",
                        "id": "f6173d13-6844-4128-8fcb-fecebadbbb00",
                        "name": [
                            {
                                "family": "Doe",
                                "given": [
                                    "Jane"
                                ]
                            }
                        ]
                    }
                ],
                "clinicalStatus": {
                    "coding": [
                        {
                            "system": "http://terminology.hl7.org/CodeSystem/condition-clinical",
                            "code": "active"
                        }
                    ]
                },
                "verificationStatus": {
                    "coding": [
                        {
                            "system": "http://terminology.hl7.org/CodeSystem/condition-ver-status",
                            "code": "confirmed"
                        }
                    ]
                },
                "severity": {
                    "coding": [
                        {
                            "system": "http://www.snomed.org/",
                            "code": "6736007",
                            "display": "Moderate"
                        }
                    ]
                },
                "code": {
                    "coding": [
                        {
                            "display": "Diabetes mellitus"
                        }
                    ]
                },
                "subject": {
                    "reference": "#f6173d13-6844-4128-8fcb-fecebadbbb00"
                },
                "onsetDateTime": "2011-08-05",
                "asserter": {
                    "reference": "#f6173d13-6844-4128-8fcb-fecebadbbb00"
                }
            }
        }
    ]
}