Class TElementDefinitionBase
Unit
bsFhir_r4
Declaration
type TElementDefinitionBase = class(TBackboneElement)
Description
Captures constraints on each element within the resource, profile, or extension. If the element is present, it must have a value for at least one of the defined elements, an @id referenced from the Narrative, or extensions
Hierarchy
Overview
Methods
Properties
|
property path : string read Getpath write Setpath; |
|
property pathElement : Tstring read GetpathElement write SetpathElement; |
|
property min : Int64 read Getmin write Setmin; |
|
property minElement : TunsignedInt read GetminElement write SetminElement; |
|
property max : string read Getmax write Setmax; |
|
property maxElement : Tstring read GetmaxElement write SetmaxElement; |
Description
Methods
|
constructor Create; override; |
|
Properties
|
property path : string read Getpath write Setpath; |
The Path that identifies the base element - this matches the ElementDefinition.path for that element. Across FHIR, there is only one base definition of any element - that is, an element definition on a [[[StructureDefinition]]] without a StructureDefinition.base.
|
|
property pathElement : Tstring read GetpathElement write SetpathElement; |
|
|
property min : Int64 read Getmin write Setmin; |
Minimum cardinality of the base element identified by the path.
|
|
property minElement : TunsignedInt read GetminElement write SetminElement; |
|
|
property max : string read Getmax write Setmax; |
Maximum cardinality of the base element identified by the path.
|
|
property maxElement : Tstring read GetmaxElement write SetmaxElement; |
|
Generated by PasDoc 0.15.0.
|