"assertedDate":
"code": {
"text": "Burnt Ear",
"coding": [
{
"code": "39065001",
"system": "http://snomed.info/sct",
"display": "Burn of ear"
}
]
}
"abatementRange":
"onsetString":
"onsetDateTime": "2012-05-24"
"asserter":
"onsetPeriod":
"bodySite": [
{
"text": "Left Ear",
"coding": [
{
"code": "49521004",
"system": "http://snomed.info/sct",
"display": "Left external ear structure"
}
]
}
]
"onsetRange":
"abatementPeriod":
"onsetAge":
"subject": {
"reference": "Patient/example"
}
"category": [
{
"coding": [
{
"code": "encounter-diagnosis",
"system": "http://hl7.org/fhir/condition-category",
"display": "Encounter Diagnosis"
},
{
"code": "439401001",
"system": "http://snomed.info/sct",
"display": "Diagnosis"
}
]
}
]
"severity": {
"coding": [
{
"code": "24484000",
"system": "http://snomed.info/sct",
"display": "Severe"
}
]
}
"note":
"evidence":
"abatementString":
"abatementDateTime":
"abatementBoolean":
"clinicalStatus": "active"
"stage":
"abatementAge":
"context":
"identifier":
"verificationStatus": "confirmed"
{
"category": [
{
"coding": [
{
"code": "encounter-diagnosis",
"system": "http://hl7.org/fhir/condition-category",
"display": "Encounter Diagnosis"
},
{
"code": "439401001",
"system": "http://snomed.info/sct",
"display": "Diagnosis"
}
]
}
],
"code": {
"text": "Burnt Ear",
"coding": [
{
"code": "39065001",
"system": "http://snomed.info/sct",
"display": "Burn of ear"
}
]
},
"severity": {
"coding": [
{
"code": "24484000",
"system": "http://snomed.info/sct",
"display": "Severe"
}
]
},
"resourceType": "Condition",
"text": {
"status": "generated",
"div": "<div xmlns=\"http://www.w3.org/1999/xhtml\">Severe burn of left ear (Date: 24-May 2012)</div>"
},
"onsetDateTime": "2012-05-24",
"id": "example",
"bodySite": [
{
"text": "Left Ear",
"coding": [
{
"code": "49521004",
"system": "http://snomed.info/sct",
"display": "Left external ear structure"
}
]
}
],
"clinicalStatus": "active",
"verificationStatus": "confirmed",
"subject": {
"reference": "Patient/example"
}
}
{
"resourceType" : "Condition",
// from Resource: id, meta, implicitRules, and language
// from DomainResource: text, contained, extension, and modifierExtension
"identifier" : [{ Identifier }], // External Ids for this condition
"clinicalStatus" : "<code>", // C? active | recurrence | inactive | remission | resolved
"verificationStatus" : "<code>", // C? provisional | differential | confirmed | refuted | entered-in-error | unknown
"category" : [{ CodeableConcept }], // problem-list-item | encounter-diagnosis
"severity" : { CodeableConcept }, // Subjective severity of condition
"code" : { CodeableConcept }, // Identification of the condition, problem or diagnosis
"bodySite" : [{ CodeableConcept }], // Anatomical location, if relevant
"subject" : { Reference(Patient|Group) }, // R! Who has the condition?
"context" : { Reference(Encounter|EpisodeOfCare) }, // Encounter or episode when condition first asserted
// onset[x]: Estimated or actual date, date-time, or age. One of these 5:
"onsetDateTime" : "<dateTime>",
"onsetAge" : { Age },
"onsetPeriod" : { Period },
"onsetRange" : { Range },
"onsetString" : "<string>",
// abatement[x]: If/when in resolution/remission. One of these 6:
"abatementDateTime" : "<dateTime>",
"abatementAge" : { Age },
"abatementBoolean" : <boolean>,
"abatementPeriod" : { Period },
"abatementRange" : { Range },
"abatementString" : "<string>",
"assertedDate" : "<dateTime>", // Date record was believed accurate
"asserter" : { Reference(Practitioner|Patient|RelatedPerson) }, // Person who asserts this condition
"stage" : { // Stage/grade, usually assessed formally
"summary" : { CodeableConcept }, // C? Simple summary (disease specific)
"assessment" : [{ Reference(ClinicalImpression|DiagnosticReport|Observation) }] // C? Formal record of assessment
},
"evidence" : [{ // Supporting evidence
"code" : [{ CodeableConcept }], // C? Manifestation/symptom
"detail" : [{ Reference(Any) }] // C? Supporting information found elsewhere
}],
"note" : [{ Annotation }] // Additional information about the Condition
}
The following search parameters can be used to query Condition resources. Just submit them like so:
https://api.1up.health/fhir/stu3/Condition?query-param=queryvalue
Search Parameter | Field Type | Resource Fields Searched |
---|---|---|
abatement-age | quantity | abatement.as |
abatement-boolean | text | abatement.as |
abatement-date | date | abatement.as |
abatement-string | text | abatement.as |
asserted-date | date | assertedDate |
asserter | reference | asserter |
body-site | text | bodySite |
category | text | category |
clinical-status | text | clinicalStatus |
code | text | code |
context | reference | context |
encounter | reference | context |
evidence | text | evidence.code |
evidence-detail | reference | evidence.detail |
identifier | text | identifier |
onset-age | quantity | onset.as |
onset-date | date | onset.as |
onset-info | text | onset.as |
patient | reference | subject |
severity | text | severity |
stage | text | stage.summary |
subject | reference | subject |
verification-status | text | verificationStatus |