helios-sof 0.1.47

This crate provides a complete implementation of the SQL-on-FHIR specification for Rust, enabling the transformation of FHIR resources into tabular data using declarative ViewDefinitions. It supports all major FHIR versions (R4, R4B, R5, R6) through a version-agnostic abstraction layer.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
//! # Version-Agnostic FHIR Abstraction Traits
//!
//! This module provides trait abstractions that enable the SOF crate to work
//! with ViewDefinitions and Bundles across multiple FHIR versions without
//! duplicating transformation logic. Each FHIR version implements these traits
//! to provide uniform access to their specific data structures.
//!
//! ## Architecture
//!
//! The trait system follows a hierarchical pattern:
//! - Top-level container traits ([`ViewDefinitionTrait`], [`BundleTrait`])
//! - Component traits ([`ViewDefinitionSelectTrait`], [`ViewDefinitionColumnTrait`], etc.)
//! - Version-specific implementations for R4, R4B, R5, and R6
//!
//! ## Design Benefits
//!
//! - **Version Independence**: Core processing logic works with any FHIR version
//! - **Type Safety**: Compile-time verification of trait implementations
//! - **Extensibility**: Easy addition of new FHIR versions or features
//! - **Code Reuse**: Single implementation handles all supported versions

use crate::SofError;
use helios_fhir::FhirResource;
use helios_fhirpath::EvaluationResult;
use helios_fhirpath_support::TypeInfoResult;

/// Trait for abstracting ViewDefinition across FHIR versions.
///
/// This trait provides version-agnostic access to ViewDefinition components,
/// enabling the core processing logic to work uniformly across R4, R4B, R5,
/// and R6 specifications. Each FHIR version implements this trait to expose
/// its ViewDefinition structure through a common interface.
///
/// # Associated Types
///
/// - [`Select`](Self::Select): The select statement type for this FHIR version
/// - [`Where`](Self::Where): The where clause type for this FHIR version  
/// - [`Constant`](Self::Constant): The constant definition type for this FHIR version
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ViewDefinitionTrait;
///
/// fn process_any_version<T: ViewDefinitionTrait>(vd: &T) {
///     if let Some(resource_type) = vd.resource() {
///         println!("Processing {} resources", resource_type);
///     }
///     
///     if let Some(selects) = vd.select() {
///         println!("Found {} select statements", selects.len());
///     }
/// }
/// ```
pub trait ViewDefinitionTrait {
    /// The select statement type for this FHIR version
    type Select: ViewDefinitionSelectTrait;
    /// The where clause type for this FHIR version
    type Where: ViewDefinitionWhereTrait;
    /// The constant definition type for this FHIR version
    type Constant: ViewDefinitionConstantTrait;

    /// Returns the FHIR resource type this ViewDefinition processes
    fn resource(&self) -> Option<&str>;
    /// Returns the select statements that define output columns and structure
    fn select(&self) -> Option<&[Self::Select]>;
    /// Returns the where clauses that filter resources before processing
    fn where_clauses(&self) -> Option<&[Self::Where]>;
    /// Returns the constants/variables available for use in expressions
    fn constants(&self) -> Option<&[Self::Constant]>;
}

/// Trait for abstracting ViewDefinitionSelect across FHIR versions.
///
/// This trait provides version-agnostic access to select statement components,
/// including columns, nested selects, iteration constructs, and union operations.
/// Select statements define the structure and content of the output table.
///
/// # Associated Types
///
/// - [`Column`](Self::Column): The column definition type for this FHIR version
/// - [`Select`](Self::Select): Recursive select type for nested structures
///
/// # Key Features
///
/// - **Column Definitions**: Direct column mappings from FHIRPath to output
/// - **Nested Selects**: Hierarchical select structures for complex transformations
/// - **Iteration**: `forEach` and `forEachOrNull` for processing collections
/// - **Union Operations**: `unionAll` for combining multiple select results
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ViewDefinitionSelectTrait;
///
/// fn analyze_select<T: ViewDefinitionSelectTrait>(select: &T) {
///     if let Some(columns) = select.column() {
///         println!("Found {} columns", columns.len());
///     }
///     
///     if let Some(for_each) = select.for_each() {
///         println!("Iterating over: {}", for_each);
///     }
///     
///     if let Some(union_selects) = select.union_all() {
///         println!("Union with {} other selects", union_selects.len());
///     }
/// }
/// ```
pub trait ViewDefinitionSelectTrait {
    /// The column definition type for this FHIR version
    type Column: ViewDefinitionColumnTrait;
    /// Recursive select type for nested structures
    type Select: ViewDefinitionSelectTrait;

    /// Returns the column definitions for this select statement
    fn column(&self) -> Option<&[Self::Column]>;
    /// Returns nested select statements for hierarchical processing
    fn select(&self) -> Option<&[Self::Select]>;
    /// Returns the FHIRPath expression for forEach iteration (filters out empty collections)
    fn for_each(&self) -> Option<&str>;
    /// Returns the FHIRPath expression for forEachOrNull iteration (includes null rows for empty collections)
    fn for_each_or_null(&self) -> Option<&str>;
    /// Returns FHIRPath expressions for recursive traversal with the repeat directive
    fn repeat(&self) -> Option<Vec<&str>>;
    /// Returns select statements to union with this one (all results combined)
    fn union_all(&self) -> Option<&[Self::Select]>;
}

/// Trait for abstracting ViewDefinitionColumn across FHIR versions.
///
/// This trait provides version-agnostic access to column definitions,
/// which specify how to extract data from FHIR resources and map it
/// to output table columns. Columns are the fundamental building blocks
/// of ViewDefinition output structure.
///
/// # Key Properties
///
/// - **Name**: The output column name in the result table
/// - **Path**: The FHIRPath expression to extract the value
/// - **Collection**: Whether this column contains array/collection values
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ViewDefinitionColumnTrait;
///
/// fn describe_column<T: ViewDefinitionColumnTrait>(col: &T) {
///     if let Some(name) = col.name() {
///         print!("Column '{}'", name);
///         
///         if let Some(path) = col.path() {
///             print!(" from path '{}'", path);
///         }
///         
///         if col.collection() == Some(true) {
///             print!(" (collection)");
///         }
///         
///         println!();
///     }
/// }
/// ```
pub trait ViewDefinitionColumnTrait {
    /// Returns the name of this column in the output table
    fn name(&self) -> Option<&str>;
    /// Returns the FHIRPath expression to extract the column value
    fn path(&self) -> Option<&str>;
    /// Returns whether this column should contain collection/array values
    fn collection(&self) -> Option<bool>;
}

/// Trait for abstracting ViewDefinitionWhere across FHIR versions.
///
/// This trait provides version-agnostic access to where clause definitions,
/// which filter resources before processing. Where clauses use FHIRPath
/// expressions that must evaluate to boolean or boolean-coercible values.
///
/// # Filtering Logic
///
/// Resources are included in processing only if ALL where clauses evaluate to:
/// - `true` (boolean)
/// - Non-empty collections
/// - Any other "truthy" value
///
/// Resources are excluded if ANY where clause evaluates to:
/// - `false` (boolean)
/// - Empty collections
/// - Empty/null results
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ViewDefinitionWhereTrait;
///
/// fn check_where_clause<T: ViewDefinitionWhereTrait>(where_clause: &T) {
///     if let Some(path) = where_clause.path() {
///         println!("Filter condition: {}", path);
///         
///         // Example paths:
///         // "active = true"                  // Boolean condition
///         // "name.exists()"                 // Existence check  
///         // "birthDate >= @1990-01-01"      // Date comparison
///         // "telecom.where(system='email')" // Collection filtering
///     }
/// }
/// ```
pub trait ViewDefinitionWhereTrait {
    /// Returns the FHIRPath expression that must evaluate to true for resource inclusion
    fn path(&self) -> Option<&str>;
}

/// Trait for abstracting ViewDefinitionConstant across FHIR versions.
///
/// This trait provides version-agnostic access to constant definitions,
/// which define reusable values that can be referenced in FHIRPath expressions
/// throughout the ViewDefinition. Constants improve maintainability and
/// readability of complex transformations.
///
/// # Constant Usage
///
/// Constants are referenced in FHIRPath expressions using the `%` prefix:
/// ```fhirpath
/// // Define constant: name="baseUrl", valueString="http://example.org"
/// // Use in path: "identifier.where(system = %baseUrl)"
/// ```
///
/// # Supported Types
///
/// Constants can hold various FHIR primitive types:
/// - String values
/// - Boolean values  
/// - Integer and decimal numbers
/// - Date, dateTime, and time values
/// - Coded values and URIs
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ViewDefinitionConstantTrait;
/// use helios_fhirpath::EvaluationResult;
///
/// fn process_constant<T: ViewDefinitionConstantTrait>(constant: &T) -> Result<(), Box<dyn std::error::Error>> {
///     if let Some(name) = constant.name() {
///         let eval_result = constant.to_evaluation_result()?;
///         
///         match eval_result {
///             EvaluationResult::String(s, _) => {
///                 println!("String constant '{}' = '{}'", name, s);
///             },
///             EvaluationResult::Integer(i, _) => {
///                 println!("Integer constant '{}' = {}", name, i);
///             },
///             EvaluationResult::Boolean(b, _) => {
///                 println!("Boolean constant '{}' = {}", name, b);
///             },
///             _ => {
///                 println!("Other constant '{}'", name);
///             }
///         }
///     }
///     Ok(())
/// }
/// ```
pub trait ViewDefinitionConstantTrait {
    /// Returns the name of this constant for use in FHIRPath expressions (referenced as %name)
    fn name(&self) -> Option<&str>;
    /// Converts this constant to an EvaluationResult for use in FHIRPath evaluation
    fn to_evaluation_result(&self) -> Result<EvaluationResult, SofError>;
}

/// Trait for abstracting Bundle across FHIR versions.
///
/// This trait provides version-agnostic access to Bundle contents,
/// specifically the collection of resources contained within bundle entries.
/// Bundles serve as the input data source for ViewDefinition processing.
///
/// # Bundle Structure
///
/// FHIR Bundles contain:
/// - Bundle metadata (type, id, etc.)
/// - Array of bundle entries
/// - Each entry optionally contains a resource
///
/// This trait focuses on extracting the resources for processing,
/// filtering out entries that don't contain resources.
///
/// # Associated Types
///
/// - [`Resource`](Self::Resource): The resource type for this FHIR version
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::{BundleTrait, ResourceTrait};
///
/// fn analyze_bundle<B: BundleTrait>(bundle: &B)
/// where
///     B::Resource: ResourceTrait
/// {
///     let resources = bundle.entries();
///     println!("Bundle contains {} resources", resources.len());
///     
///     for resource in resources {
///         println!("- {} resource", resource.resource_name());
///     }
/// }
/// ```
pub trait BundleTrait {
    /// The resource type for this FHIR version
    type Resource: ResourceTrait;

    /// Returns references to all resources contained in this bundle's entries
    fn entries(&self) -> Vec<&Self::Resource>;
}

/// Trait for abstracting Resource across FHIR versions.
///
/// This trait provides version-agnostic access to FHIR resource functionality,
/// enabling the core processing logic to work with resources from any supported
/// FHIR version. Resources are the primary data objects processed by ViewDefinitions.
///
/// # Key Functionality
///
/// - **Type Identification**: Determine the resource type (Patient, Observation, etc.)
/// - **Version Wrapping**: Convert to version-agnostic containers for FHIRPath evaluation
///
/// # Examples
///
/// ```rust
/// use helios_sof::traits::ResourceTrait;
/// use helios_fhir::FhirResource;
///
/// fn process_resource<R: ResourceTrait>(resource: &R) {
///     println!("Processing {} resource", resource.resource_name());
///     
///     // Convert to FhirResource for FHIRPath evaluation
///     let fhir_resource = resource.to_fhir_resource();
///     
///     // Now can be used with FHIRPath evaluation context
///     // let context = EvaluationContext::new(vec![fhir_resource]);
/// }
/// ```
pub trait ResourceTrait: Clone {
    /// Returns the FHIR resource type name (e.g., "Patient", "Observation")
    fn resource_name(&self) -> &str;
    /// Converts this resource to a version-agnostic FhirResource for FHIRPath evaluation
    fn to_fhir_resource(&self) -> FhirResource;
    /// Returns the lastUpdated timestamp from the resource's metadata if available
    fn get_last_updated(&self) -> Option<chrono::DateTime<chrono::Utc>>;
}

// ===== FHIR Version Implementations =====
//
// The following modules provide concrete implementations of the abstraction
// traits for each supported FHIR version. Each implementation maps the
// version-specific FHIR structures to the common trait interface.

/// R4 (FHIR 4.0.1) trait implementations.
///
/// This module implements all abstraction traits for FHIR R4 resources,
/// providing the mapping between R4-specific ViewDefinition structures
/// and the version-agnostic trait interfaces.
#[cfg(feature = "R4")]
mod r4_impl {
    use super::*;
    use helios_fhir::r4::*;

    impl ViewDefinitionTrait for ViewDefinition {
        type Select = ViewDefinitionSelect;
        type Where = ViewDefinitionWhere;
        type Constant = ViewDefinitionConstant;

        fn resource(&self) -> Option<&str> {
            self.resource.value.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn where_clauses(&self) -> Option<&[Self::Where]> {
            self.r#where.as_deref()
        }

        fn constants(&self) -> Option<&[Self::Constant]> {
            self.constant.as_deref()
        }
    }

    impl ViewDefinitionSelectTrait for ViewDefinitionSelect {
        type Column = ViewDefinitionSelectColumn;
        type Select = ViewDefinitionSelect;

        fn column(&self) -> Option<&[Self::Column]> {
            self.column.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn for_each(&self) -> Option<&str> {
            self.for_each.as_ref()?.value.as_deref()
        }

        fn for_each_or_null(&self) -> Option<&str> {
            self.for_each_or_null.as_ref()?.value.as_deref()
        }

        fn repeat(&self) -> Option<Vec<&str>> {
            self.repeat
                .as_ref()
                .map(|paths| paths.iter().filter_map(|p| p.value.as_deref()).collect())
        }

        fn union_all(&self) -> Option<&[Self::Select]> {
            self.union_all.as_deref()
        }
    }

    impl ViewDefinitionColumnTrait for ViewDefinitionSelectColumn {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }

        fn collection(&self) -> Option<bool> {
            self.collection.as_ref()?.value
        }
    }

    impl ViewDefinitionWhereTrait for ViewDefinitionWhere {
        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }
    }

    impl ViewDefinitionConstantTrait for ViewDefinitionConstant {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn to_evaluation_result(&self) -> Result<EvaluationResult, SofError> {
            let name = self.name().unwrap_or("unknown");

            if let Some(value) = &self.value {
                let eval_result = match value {
                    ViewDefinitionConstantValue::String(s) => {
                        EvaluationResult::String(s.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Boolean(b) => {
                        EvaluationResult::Boolean(b.value.unwrap_or(false), None)
                    }
                    ViewDefinitionConstantValue::Integer(i) => {
                        EvaluationResult::Integer(i.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Decimal(d) => {
                        if let Some(precise_decimal) = &d.value {
                            match precise_decimal.original_string().parse() {
                                Ok(decimal_value) => EvaluationResult::Decimal(decimal_value, None),
                                Err(_) => {
                                    return Err(SofError::InvalidViewDefinition(format!(
                                        "Invalid decimal value for constant '{}'",
                                        name
                                    )));
                                }
                            }
                        } else {
                            EvaluationResult::Decimal("0".parse().unwrap(), None)
                        }
                    }
                    ViewDefinitionConstantValue::Date(d) => EvaluationResult::Date(
                        d.value.clone().unwrap_or_default().to_string(),
                        None,
                    ),
                    ViewDefinitionConstantValue::DateTime(dt) => {
                        let value_str = dt.value.clone().unwrap_or_default().to_string();
                        // Ensure DateTime values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "dateTime")),
                        )
                    }
                    ViewDefinitionConstantValue::Time(t) => {
                        let value_str = t.value.clone().unwrap_or_default().to_string();
                        // Ensure Time values have the "@T" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@T") {
                            value_str
                        } else {
                            format!("@T{}", value_str)
                        };
                        EvaluationResult::Time(prefixed, None)
                    }
                    ViewDefinitionConstantValue::Code(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Base64Binary(b) => {
                        EvaluationResult::String(b.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Id(i) => {
                        EvaluationResult::String(i.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Instant(i) => {
                        let value_str = i.value.clone().unwrap_or_default().to_string();
                        // Ensure Instant values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "instant")),
                        )
                    }
                    ViewDefinitionConstantValue::Oid(o) => {
                        EvaluationResult::String(o.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::PositiveInt(p) => {
                        EvaluationResult::Integer(p.value.unwrap_or(1) as i64, None)
                    }
                    ViewDefinitionConstantValue::UnsignedInt(u) => {
                        EvaluationResult::Integer(u.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Uri(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Url(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Uuid(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Canonical(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                };

                Ok(eval_result)
            } else {
                Err(SofError::InvalidViewDefinition(format!(
                    "Constant '{}' must have a value",
                    name
                )))
            }
        }
    }

    impl BundleTrait for Bundle {
        type Resource = Resource;

        fn entries(&self) -> Vec<&Self::Resource> {
            self.entry
                .as_ref()
                .map(|entries| entries.iter().filter_map(|e| e.resource.as_ref()).collect())
                .unwrap_or_default()
        }
    }

    impl ResourceTrait for Resource {
        fn resource_name(&self) -> &str {
            self.resource_name()
        }

        fn to_fhir_resource(&self) -> FhirResource {
            FhirResource::R4(Box::new(self.clone()))
        }

        fn get_last_updated(&self) -> Option<chrono::DateTime<chrono::Utc>> {
            self.get_last_updated()
        }
    }
}

/// R4B (FHIR 4.3.0) trait implementations.
///
/// This module implements all abstraction traits for FHIR R4B resources,
/// providing the mapping between R4B-specific ViewDefinition structures
/// and the version-agnostic trait interfaces.
#[cfg(feature = "R4B")]
mod r4b_impl {
    use super::*;
    use helios_fhir::r4b::*;

    impl ViewDefinitionTrait for ViewDefinition {
        type Select = ViewDefinitionSelect;
        type Where = ViewDefinitionWhere;
        type Constant = ViewDefinitionConstant;

        fn resource(&self) -> Option<&str> {
            self.resource.value.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn where_clauses(&self) -> Option<&[Self::Where]> {
            self.r#where.as_deref()
        }

        fn constants(&self) -> Option<&[Self::Constant]> {
            self.constant.as_deref()
        }
    }

    impl ViewDefinitionSelectTrait for ViewDefinitionSelect {
        type Column = ViewDefinitionSelectColumn;
        type Select = ViewDefinitionSelect;

        fn column(&self) -> Option<&[Self::Column]> {
            self.column.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn for_each(&self) -> Option<&str> {
            self.for_each.as_ref()?.value.as_deref()
        }

        fn for_each_or_null(&self) -> Option<&str> {
            self.for_each_or_null.as_ref()?.value.as_deref()
        }

        fn repeat(&self) -> Option<Vec<&str>> {
            self.repeat
                .as_ref()
                .map(|paths| paths.iter().filter_map(|p| p.value.as_deref()).collect())
        }

        fn union_all(&self) -> Option<&[Self::Select]> {
            self.union_all.as_deref()
        }
    }

    impl ViewDefinitionColumnTrait for ViewDefinitionSelectColumn {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }

        fn collection(&self) -> Option<bool> {
            self.collection.as_ref()?.value
        }
    }

    impl ViewDefinitionWhereTrait for ViewDefinitionWhere {
        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }
    }

    impl ViewDefinitionConstantTrait for ViewDefinitionConstant {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn to_evaluation_result(&self) -> Result<EvaluationResult, SofError> {
            let name = self.name().unwrap_or("unknown");

            if let Some(value) = &self.value {
                let eval_result = match value {
                    ViewDefinitionConstantValue::String(s) => {
                        EvaluationResult::String(s.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Boolean(b) => {
                        EvaluationResult::Boolean(b.value.unwrap_or(false), None)
                    }
                    ViewDefinitionConstantValue::Integer(i) => {
                        EvaluationResult::Integer(i.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Decimal(d) => {
                        if let Some(precise_decimal) = &d.value {
                            match precise_decimal.original_string().parse() {
                                Ok(decimal_value) => EvaluationResult::Decimal(decimal_value, None),
                                Err(_) => {
                                    return Err(SofError::InvalidViewDefinition(format!(
                                        "Invalid decimal value for constant '{}'",
                                        name
                                    )));
                                }
                            }
                        } else {
                            EvaluationResult::Decimal("0".parse().unwrap(), None)
                        }
                    }
                    ViewDefinitionConstantValue::Date(d) => EvaluationResult::Date(
                        d.value.clone().unwrap_or_default().to_string(),
                        None,
                    ),
                    ViewDefinitionConstantValue::DateTime(dt) => {
                        let value_str = dt.value.clone().unwrap_or_default().to_string();
                        // Ensure DateTime values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "dateTime")),
                        )
                    }
                    ViewDefinitionConstantValue::Time(t) => {
                        let value_str = t.value.clone().unwrap_or_default().to_string();
                        // Ensure Time values have the "@T" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@T") {
                            value_str
                        } else {
                            format!("@T{}", value_str)
                        };
                        EvaluationResult::Time(prefixed, None)
                    }
                    ViewDefinitionConstantValue::Code(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Base64Binary(b) => {
                        EvaluationResult::String(b.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Id(i) => {
                        EvaluationResult::String(i.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Instant(i) => {
                        let value_str = i.value.clone().unwrap_or_default().to_string();
                        // Ensure Instant values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "instant")),
                        )
                    }
                    ViewDefinitionConstantValue::Oid(o) => {
                        EvaluationResult::String(o.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::PositiveInt(p) => {
                        EvaluationResult::Integer(p.value.unwrap_or(1) as i64, None)
                    }
                    ViewDefinitionConstantValue::UnsignedInt(u) => {
                        EvaluationResult::Integer(u.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Uri(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Url(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Uuid(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Canonical(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                };

                Ok(eval_result)
            } else {
                Err(SofError::InvalidViewDefinition(format!(
                    "Constant '{}' must have a value",
                    name
                )))
            }
        }
    }

    impl BundleTrait for Bundle {
        type Resource = Resource;

        fn entries(&self) -> Vec<&Self::Resource> {
            self.entry
                .as_ref()
                .map(|entries| entries.iter().filter_map(|e| e.resource.as_ref()).collect())
                .unwrap_or_default()
        }
    }

    impl ResourceTrait for Resource {
        fn resource_name(&self) -> &str {
            self.resource_name()
        }

        fn to_fhir_resource(&self) -> FhirResource {
            FhirResource::R4B(Box::new(self.clone()))
        }

        fn get_last_updated(&self) -> Option<chrono::DateTime<chrono::Utc>> {
            self.get_last_updated()
        }
    }
}

/// R5 (FHIR 5.0.0) trait implementations.
///
/// This module implements all abstraction traits for FHIR R5 resources,
/// providing the mapping between R5-specific ViewDefinition structures
/// and the version-agnostic trait interfaces. R5 introduces the Integer64
/// data type for constant values.
#[cfg(feature = "R5")]
mod r5_impl {
    use super::*;
    use helios_fhir::r5::*;

    impl ViewDefinitionTrait for ViewDefinition {
        type Select = ViewDefinitionSelect;
        type Where = ViewDefinitionWhere;
        type Constant = ViewDefinitionConstant;

        fn resource(&self) -> Option<&str> {
            self.resource.value.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn where_clauses(&self) -> Option<&[Self::Where]> {
            self.r#where.as_deref()
        }

        fn constants(&self) -> Option<&[Self::Constant]> {
            self.constant.as_deref()
        }
    }

    impl ViewDefinitionSelectTrait for ViewDefinitionSelect {
        type Column = ViewDefinitionSelectColumn;
        type Select = ViewDefinitionSelect;

        fn column(&self) -> Option<&[Self::Column]> {
            self.column.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn for_each(&self) -> Option<&str> {
            self.for_each.as_ref()?.value.as_deref()
        }

        fn for_each_or_null(&self) -> Option<&str> {
            self.for_each_or_null.as_ref()?.value.as_deref()
        }

        fn repeat(&self) -> Option<Vec<&str>> {
            self.repeat
                .as_ref()
                .map(|paths| paths.iter().filter_map(|p| p.value.as_deref()).collect())
        }

        fn union_all(&self) -> Option<&[Self::Select]> {
            self.union_all.as_deref()
        }
    }

    impl ViewDefinitionColumnTrait for ViewDefinitionSelectColumn {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }

        fn collection(&self) -> Option<bool> {
            self.collection.as_ref()?.value
        }
    }

    impl ViewDefinitionWhereTrait for ViewDefinitionWhere {
        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }
    }

    impl ViewDefinitionConstantTrait for ViewDefinitionConstant {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn to_evaluation_result(&self) -> Result<EvaluationResult, SofError> {
            let name = self.name().unwrap_or("unknown");

            if let Some(value) = &self.value {
                // R5 implementation identical to R4
                let eval_result = match value {
                    ViewDefinitionConstantValue::String(s) => {
                        EvaluationResult::String(s.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Boolean(b) => {
                        EvaluationResult::Boolean(b.value.unwrap_or(false), None)
                    }
                    ViewDefinitionConstantValue::Integer(i) => {
                        EvaluationResult::Integer(i.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Decimal(d) => {
                        if let Some(precise_decimal) = &d.value {
                            match precise_decimal.original_string().parse() {
                                Ok(decimal_value) => EvaluationResult::Decimal(decimal_value, None),
                                Err(_) => {
                                    return Err(SofError::InvalidViewDefinition(format!(
                                        "Invalid decimal value for constant '{}'",
                                        name
                                    )));
                                }
                            }
                        } else {
                            EvaluationResult::Decimal("0".parse().unwrap(), None)
                        }
                    }
                    ViewDefinitionConstantValue::Date(d) => EvaluationResult::Date(
                        d.value.clone().unwrap_or_default().to_string(),
                        None,
                    ),
                    ViewDefinitionConstantValue::DateTime(dt) => {
                        let value_str = dt.value.clone().unwrap_or_default().to_string();
                        // Ensure DateTime values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "dateTime")),
                        )
                    }
                    ViewDefinitionConstantValue::Time(t) => {
                        let value_str = t.value.clone().unwrap_or_default().to_string();
                        // Ensure Time values have the "@T" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@T") {
                            value_str
                        } else {
                            format!("@T{}", value_str)
                        };
                        EvaluationResult::Time(prefixed, None)
                    }
                    ViewDefinitionConstantValue::Code(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Base64Binary(b) => {
                        EvaluationResult::String(b.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Id(i) => {
                        EvaluationResult::String(i.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Instant(i) => {
                        let value_str = i.value.clone().unwrap_or_default().to_string();
                        // Ensure Instant values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "instant")),
                        )
                    }
                    ViewDefinitionConstantValue::Oid(o) => {
                        EvaluationResult::String(o.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::PositiveInt(p) => {
                        EvaluationResult::Integer(p.value.unwrap_or(1) as i64, None)
                    }
                    ViewDefinitionConstantValue::UnsignedInt(u) => {
                        EvaluationResult::Integer(u.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Uri(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Url(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Uuid(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Canonical(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Integer64(i) => {
                        EvaluationResult::Integer64(i.value.unwrap_or(0), None)
                    }
                };

                Ok(eval_result)
            } else {
                Err(SofError::InvalidViewDefinition(format!(
                    "Constant '{}' must have a value",
                    name
                )))
            }
        }
    }

    impl BundleTrait for Bundle {
        type Resource = Resource;

        fn entries(&self) -> Vec<&Self::Resource> {
            self.entry
                .as_ref()
                .map(|entries| {
                    entries
                        .iter()
                        .filter_map(|e| e.resource.as_deref()) // Note: R5 uses Box<Resource>
                        .collect()
                })
                .unwrap_or_default()
        }
    }

    impl ResourceTrait for Resource {
        fn resource_name(&self) -> &str {
            self.resource_name()
        }

        fn to_fhir_resource(&self) -> FhirResource {
            FhirResource::R5(Box::new(self.clone()))
        }

        fn get_last_updated(&self) -> Option<chrono::DateTime<chrono::Utc>> {
            self.get_last_updated()
        }
    }
}

/// R6 (FHIR 6.0.0) trait implementations.
///
/// This module implements all abstraction traits for FHIR R6 resources,
/// providing the mapping between R6-specific ViewDefinition structures
/// and the version-agnostic trait interfaces. R6 continues to support
/// the Integer64 data type introduced in R5.
#[cfg(feature = "R6")]
mod r6_impl {
    use super::*;
    use helios_fhir::r6::*;

    impl ViewDefinitionTrait for ViewDefinition {
        type Select = ViewDefinitionSelect;
        type Where = ViewDefinitionWhere;
        type Constant = ViewDefinitionConstant;

        fn resource(&self) -> Option<&str> {
            self.resource.value.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn where_clauses(&self) -> Option<&[Self::Where]> {
            self.r#where.as_deref()
        }

        fn constants(&self) -> Option<&[Self::Constant]> {
            self.constant.as_deref()
        }
    }

    impl ViewDefinitionSelectTrait for ViewDefinitionSelect {
        type Column = ViewDefinitionSelectColumn;
        type Select = ViewDefinitionSelect;

        fn column(&self) -> Option<&[Self::Column]> {
            self.column.as_deref()
        }

        fn select(&self) -> Option<&[Self::Select]> {
            self.select.as_deref()
        }

        fn for_each(&self) -> Option<&str> {
            self.for_each.as_ref()?.value.as_deref()
        }

        fn for_each_or_null(&self) -> Option<&str> {
            self.for_each_or_null.as_ref()?.value.as_deref()
        }

        fn repeat(&self) -> Option<Vec<&str>> {
            self.repeat
                .as_ref()
                .map(|paths| paths.iter().filter_map(|p| p.value.as_deref()).collect())
        }

        fn union_all(&self) -> Option<&[Self::Select]> {
            self.union_all.as_deref()
        }
    }

    impl ViewDefinitionColumnTrait for ViewDefinitionSelectColumn {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }

        fn collection(&self) -> Option<bool> {
            self.collection.as_ref()?.value
        }
    }

    impl ViewDefinitionWhereTrait for ViewDefinitionWhere {
        fn path(&self) -> Option<&str> {
            self.path.value.as_deref()
        }
    }

    impl ViewDefinitionConstantTrait for ViewDefinitionConstant {
        fn name(&self) -> Option<&str> {
            self.name.value.as_deref()
        }

        fn to_evaluation_result(&self) -> Result<EvaluationResult, SofError> {
            let name = self.name().unwrap_or("unknown");

            if let Some(value) = &self.value {
                // R5 implementation identical to R4
                let eval_result = match value {
                    ViewDefinitionConstantValue::String(s) => {
                        EvaluationResult::String(s.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Boolean(b) => {
                        EvaluationResult::Boolean(b.value.unwrap_or(false), None)
                    }
                    ViewDefinitionConstantValue::Integer(i) => {
                        EvaluationResult::Integer(i.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Decimal(d) => {
                        if let Some(precise_decimal) = &d.value {
                            match precise_decimal.original_string().parse() {
                                Ok(decimal_value) => EvaluationResult::Decimal(decimal_value, None),
                                Err(_) => {
                                    return Err(SofError::InvalidViewDefinition(format!(
                                        "Invalid decimal value for constant '{}'",
                                        name
                                    )));
                                }
                            }
                        } else {
                            EvaluationResult::Decimal("0".parse().unwrap(), None)
                        }
                    }
                    ViewDefinitionConstantValue::Date(d) => EvaluationResult::Date(
                        d.value.clone().unwrap_or_default().to_string(),
                        None,
                    ),
                    ViewDefinitionConstantValue::DateTime(dt) => {
                        let value_str = dt.value.clone().unwrap_or_default().to_string();
                        // Ensure DateTime values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "dateTime")),
                        )
                    }
                    ViewDefinitionConstantValue::Time(t) => {
                        let value_str = t.value.clone().unwrap_or_default().to_string();
                        // Ensure Time values have the "@T" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@T") {
                            value_str
                        } else {
                            format!("@T{}", value_str)
                        };
                        EvaluationResult::Time(prefixed, None)
                    }
                    ViewDefinitionConstantValue::Code(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Base64Binary(b) => {
                        EvaluationResult::String(b.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Id(i) => {
                        EvaluationResult::String(i.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Instant(i) => {
                        let value_str = i.value.clone().unwrap_or_default().to_string();
                        // Ensure Instant values have the "@" prefix for FHIRPath
                        let prefixed = if value_str.starts_with("@") {
                            value_str
                        } else {
                            format!("@{}", value_str)
                        };
                        EvaluationResult::DateTime(
                            prefixed,
                            Some(TypeInfoResult::new("FHIR", "instant")),
                        )
                    }
                    ViewDefinitionConstantValue::Oid(o) => {
                        EvaluationResult::String(o.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::PositiveInt(p) => {
                        EvaluationResult::Integer(p.value.unwrap_or(1) as i64, None)
                    }
                    ViewDefinitionConstantValue::UnsignedInt(u) => {
                        EvaluationResult::Integer(u.value.unwrap_or(0) as i64, None)
                    }
                    ViewDefinitionConstantValue::Uri(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Url(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Uuid(u) => {
                        EvaluationResult::String(u.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Canonical(c) => {
                        EvaluationResult::String(c.value.clone().unwrap_or_default(), None)
                    }
                    ViewDefinitionConstantValue::Integer64(i) => {
                        EvaluationResult::Integer(i.value.unwrap_or(0), None)
                    }
                };

                Ok(eval_result)
            } else {
                Err(SofError::InvalidViewDefinition(format!(
                    "Constant '{}' must have a value",
                    name
                )))
            }
        }
    }

    impl BundleTrait for Bundle {
        type Resource = Resource;

        fn entries(&self) -> Vec<&Self::Resource> {
            self.entry
                .as_ref()
                .map(|entries| {
                    entries
                        .iter()
                        .filter_map(|e| e.resource.as_deref()) // Note: R6 uses Box<Resource>
                        .collect()
                })
                .unwrap_or_default()
        }
    }

    impl ResourceTrait for Resource {
        fn resource_name(&self) -> &str {
            self.resource_name()
        }

        fn to_fhir_resource(&self) -> FhirResource {
            FhirResource::R6(Box::new(self.clone()))
        }

        fn get_last_updated(&self) -> Option<chrono::DateTime<chrono::Utc>> {
            self.get_last_updated()
        }
    }
}