Class SampledData
A series of measurements taken by a device, with upper and lower limits. There may be more than one dimension in the data.
Implements
Inherited Members
Namespace: fhirCsR2.Models
Assembly: fhirCsR2.dll
Syntax
public class SampledData : Element, IFhirJsonSerializable
Properties
| Improve this Doc View Source_Data
Extension container element for Data
Declaration
public Element _Data { get; set; }
Property Value
Type | Description |
---|---|
Element |
_Factor
Extension container element for Factor
Declaration
public Element _Factor { get; set; }
Property Value
Type | Description |
---|---|
Element |
_LowerLimit
Extension container element for LowerLimit
Declaration
public Element _LowerLimit { get; set; }
Property Value
Type | Description |
---|---|
Element |
_Period
Extension container element for Period
Declaration
public Element _Period { get; set; }
Property Value
Type | Description |
---|---|
Element |
_UpperLimit
Extension container element for UpperLimit
Declaration
public Element _UpperLimit { get; set; }
Property Value
Type | Description |
---|---|
Element |
Data
A series of data points which are decimal values separated by a single space (character u20). The special values "E" (error), "L" (below detection limit) and "U" (above detection limit) can also be used in place of a decimal value.
Declaration
public string Data { get; set; }
Property Value
Type | Description |
---|---|
System. |
Dimensions
The number of sample points at each time point. If this value is greater than one, then the dimensions will be interlaced - all the sample points for a point in time will be recorded at once.
Declaration
public uint Dimensions { get; set; }
Property Value
Type | Description |
---|---|
System. |
Factor
A correction factor that is applied to the sampled data points before they are added to the origin.
Declaration
public decimal? Factor { get; set; }
Property Value
Type | Description |
---|---|
System. |
LowerLimit
The lower limit of detection of the measured points. This is needed if any of the data points have the value "L" (lower than detection limit).
Declaration
public decimal? LowerLimit { get; set; }
Property Value
Type | Description |
---|---|
System. |
Origin
The base quantity that a measured value of zero represents. In addition, this provides the units of the entire measurement series.
Declaration
public Quantity Origin { get; set; }
Property Value
Type | Description |
---|---|
Quantity |
Period
The length of time between sampling times, measured in milliseconds.
Declaration
public decimal Period { get; set; }
Property Value
Type | Description |
---|---|
System. |
UpperLimit
The upper limit of detection of the measured points. This is needed if any of the data points have the value "U" (higher than detection limit).
Declaration
public decimal? UpperLimit { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceDeserializeJson(ref Utf8JsonReader, JsonSerializerOptions)
Deserialize a JSON object
Declaration
public void DeserializeJson(ref Utf8JsonReader reader, JsonSerializerOptions options)
Parameters
Type | Name | Description |
---|---|---|
Utf8Json |
reader | |
Json |
options |
DeserializeJsonProperty(ref Utf8JsonReader, JsonSerializerOptions, String)
Deserialize a JSON property
Declaration
public void DeserializeJsonProperty(ref Utf8JsonReader reader, JsonSerializerOptions options, string propertyName)
Parameters
Type | Name | Description |
---|---|---|
Utf8Json |
reader | |
Json |
options | |
System. |
propertyName |
SerializeJson(Utf8JsonWriter, JsonSerializerOptions, Boolean)
Serialize to a JSON object
Declaration
public void SerializeJson(Utf8JsonWriter writer, JsonSerializerOptions options, bool includeStartObject = true)
Parameters
Type | Name | Description |
---|---|---|
Utf8Json |
writer | |
Json |
options | |
System. |
includeStartObject |