Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FHIR-47860 #371

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,82 @@
"derivation": "constraint",
"differential": {
"element": [
{
"id" : "Condition.extension:assertedDate",
"path" : "Condition.extension",
"sliceName" : "assertedDate",
"short" : "(QI) Date the condition was first asserted",
"definition" : "The date on which the existence of the Condition was first asserted or acknowledged.",
"comment" : "The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate.",
"min" : 0,
"max" : "1",
"base" : {
"path" : "DomainResource.extension",
"min" : 0,
"max" : "*"
},
"type" : [
{
"code" : "Extension",
"profile" : [
"http://hl7.org/fhir/StructureDefinition/condition-assertedDate"
]
}
],
"mustSupport" : true,
"isModifier" : false
},
{
"id" : "Condition.clinicalStatus",
"extension": [
{
"url": "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-keyelement",
"valueBoolean": true
}
],
"path" : "Condition.clinicalStatus",
"short" : "(QI) active | recurrence | relapse | inactive | remission | resolved",
"definition" : "The clinical status of the condition.",
"comment" : "The data type is CodeableConcept because clinicalStatus has some clinical judgment involved, such that there might need to be more specificity than the required FHIR value set allows. For example, a SNOMED coding might allow for additional specificity."
},
{
"id" : "Condition.verificationStatus",
"extension": [
{
"url": "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-keyelement",
"valueBoolean": true
}
],
"path" : "Condition.verificationStatus",
"short" : "(QI) unconfirmed | provisional | differential | confirmed | refuted | entered-in-error",
"definition" : "The verification status to support the clinical status of the condition."
},
{
"id" : "Condition.severity",
"extension": [
{
"url": "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-keyelement",
"valueBoolean": true
}
],
"path" : "Condition.severity",
"short" : "(QI) Subjective severity of condition",
"definition" : "A subjective assessment of the severity of the condition as evaluated by the clinician.",
"comment" : "Coding of the severity with a terminology is preferred, where possible."
},
{
"id" : "Condition.code",
"extension": [
{
"url": "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-keyelement",
"valueBoolean": true
}
],
"path" : "Condition.code",
"short" : "(QI) Identification of the condition, problem or diagnosis",
"definition" : "Identification of the condition, problem or diagnosis."
},
{
"id": "Condition.subject",
"extension": [
{
Expand Down Expand Up @@ -215,6 +290,18 @@
"code": "Range"
}
]
},
{
"id" : "Condition.recordedDate",
"extension": [
{
"url": "http://hl7.org/fhir/us/qicore/StructureDefinition/qicore-keyelement",
"valueBoolean": true
}
],
"path" : "Condition.recordedDate",
"short" : "(QI) Date record was first recorded",
"definition" : "The recordedDate represents when this particular Condition record was created in the system, which is often a system-generated date."
}
]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,31 @@
"path": "Condition.meta",
"mustSupport": true
},
{
"id" : "Condition.extension:assertedDate",
"path" : "Condition.extension",
"sliceName" : "assertedDate",
"short" : "(QI) Date the condition was first asserted",
"definition" : "The date on which the existence of the Condition was first asserted or acknowledged.",
"comment" : "The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate.",
"min" : 0,
"max" : "1",
"base" : {
"path" : "DomainResource.extension",
"min" : 0,
"max" : "*"
},
"type" : [
{
"code" : "Extension",
"profile" : [
"http://hl7.org/fhir/StructureDefinition/condition-assertedDate"
]
}
],
"mustSupport" : true,
"isModifier" : false
},
{
"id": "Condition.meta.lastUpdated",
"path": "Condition.meta.lastUpdated",
Expand Down