Haste Health
    Preparing search index...
    interface ViewDefinitionSelect {
        _forEach?: Element;
        _forEachOrNull?: Element;
        _repeat?: Element[];
        column?: ViewDefinitionSelectColumn[];
        extension?: Extension[];
        forEach?: string;
        forEachOrNull?: string;
        id?: id;
        modifierExtension?: Extension[];
        repeat?: string[];
        select?: ViewDefinitionSelect[];
        unionAll?: ViewDefinitionSelect[];
    }
    Index

    Properties

    _forEach?: Element

    A FHIRPath expression to retrieve the parent element(s) used in the containing select. The default is effectively $this.

    _forEachOrNull?: Element

    Same as forEach, but will produce a row with null values if the collection is empty.

    _repeat?: Element[]

    FHIRPath expressions to recursively select from.

    A column to be produced in the resulting table.

    extension?: Extension[]

    Additional content defined by implementations

    forEach?: string

    A FHIRPath expression to retrieve the parent element(s) used in the containing select. The default is effectively $this.

    forEachOrNull?: string

    Same as forEach, but will produce a row with null values if the collection is empty.

    id?: id

    Unique id for inter-element referencing

    modifierExtension?: Extension[]

    Extensions that cannot be ignored even if unrecognized

    repeat?: string[]

    FHIRPath expressions to recursively select from.

    Nested select relative to a parent expression.

    Creates a union of all rows in the given selection structures.