Extension: Condition Living Child Details
URL for this extension:
- Production
- Preview
https://fhir.netsmartcloud.com/v4/StructureDefinition/condition-living-child-details
https://fhirtest.netsmartcloud.com/v4/StructureDefinition/condition-living-child-details
Status: draft
This extension represents the Condition living child details.
Context of Use
This extension may be used on the Condition resource.
Supported CareRecords
This extension is supported by the following CareRecords:
- Netsmart myAvatar
Formal Views of Extension Content
Differential Table
| Name | Flags | Card. | Type | Description & Constraints |
|---|---|---|---|---|
| Extension | 0..* | Extension | Condition Living Child Details | |
| - url | 1..1 | uri | "[base]/StructureDefinition/condition-lnmp" | |
| - extension:delivery-date | 1..1 | Extension | Condition Living Child Details Delivery Date | |
| - - url | 1..1 | uri | "delivery-date" | |
| - - value[x] | 1..1 | date | Condition Living Child Details Delivery Date | |
| - extension:delivery-method | 1..1 | Extension | Condition Living Child Details Delivery Method | |
| - - url | 1..1 | uri | "delivery-method" | |
| - - value[x] | 1..1 | code | Condition Living Child Details Delivery Method Binding: This is bound to a dictionary configured in myAvatar and may vary by organization. | |
| - extension:delivery-outcome | 1..1 | Extension | Condition Living Child Details Delivery Outcome | |
| - - url | 1..1 | uri | "delivery-outcome" | |
| - - value[x] | 1..1 | code | Condition Living Child Details Delivery Outcome Binding: This is bound to a dictionary configured in myAvatar and may vary by organization. | |
| - extension:birth-weight | 1..1 | Extension | Condition Living Child Details Birth Weight | |
| - - url | 1..1 | uri | "birth-weight" | |
| - - value[x] | 1..1 | string | Condition Living Child Details Birth Weight |
Terminology Bindings
| Path | Conformance | ValueSet |
|---|---|---|
| Extension.value[x] | extensible | This is bound to a dictionary configured in myAvatar and may vary by organization. |
Constraints
| Id | Grade | Path(s) | Requirements | Details |
|---|---|---|---|---|
| ele-1 | error | ALL elements | All FHIR elements must have a @value or children : hasValue() or (children().count() > id.count()) | |
| ext-1 | error | ALL extensions | Must have either extensions or value[x], not both : extension.exists() != value.exists() |
Examples
{
"resourceType": "Condition",
"id": "123",
"extension": [
{
"url": "https://fhir.netsmartcloud.com/v4/StructureDefinition/condition-living-child-details",
"extension": [
{
"url": "delivery-date",
"valueDate": "2024-02-07"
},
{
"url": "delivery-method",
"valueCode": "1"
},
{
"url": "delivery-outcome",
"valueCode": "3"
},
{
"url": "birth-weight",
"valueString": "7.3"
}
]
},
// additional extensions
],
// additional Condition content
}