FHIR Chat · Extensions missing range · dotnet

Stream: dotnet

Topic: Extensions missing range


view this post on Zulip Jefferson (Jul 25 2019 at 12:12):

I have this extension that is missing the values and I am just creating the url. Is there a way to add the value into once it as that object?

<extension url="http://ots.nccn.org/hl7/fhir/StructureDefinition/dividedDoses">
<extension url="totalAmountPerPeriod">
<valueQuantity>
<value value="45" />
<unit value="mg/m²" />
<system value="http://unitsofmeasure.org" />
<code value="mg/m2" />
</valueQuantity>
</extension>
</extension>

var dividedDosesExtension = new Extension()
{
Url = GetExtensionUrl("dividedDoses"),
Extension = new List<Extension>()
//Need to Check isRanage

                    //Add LowRange
                    //Dont have access to object
                    //Add HighRange
                    //Dont have access to object

                };

Last updated: Apr 12 2022 at 19:14 UTC