odata_client_codegen 0.1.0

Strongly-typed OData client code generation
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
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
//! Manually-created EDM/EDMX type structure, based on:
//! - <https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/os/schemas/edm.xsd>
//! - <https://docs.oasis-open.org/odata/odata-csdl-xml/v4.01/os/schemas/edmx.xsd>
//! Should be capable of parsing any valid EDMX document, but does not exhaustively match all of the
//! .xsd rules (i.e. an invalid EDMX document might also parse successfully).

#[cfg(test)]
mod test;

pub mod xs {
    use odata_client_util::deserialize_with::flattened_xml_attr;
    use serde::de::Visitor;
    use serde::{Deserialize, Deserializer};
    use std::{fmt, marker::PhantomData};

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct AnyUri(pub String);

    #[derive(Debug, Deserialize, Clone, PartialEq, Default)]
    #[serde(transparent)]
    pub struct Boolean(#[serde(deserialize_with = "flattened_xml_attr")] pub bool);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Long(#[serde(deserialize_with = "flattened_xml_attr")] pub i64);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Double(#[serde(deserialize_with = "flattened_xml_attr")] pub f64);

    /// Can strictly be *any* integer value, but 64-bit is used for simplicity.
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Integer(#[serde(deserialize_with = "flattened_xml_attr")] pub i64);

    /// Can strictly be *any* non-negative integer value, but 64-bit is used for simplicity.
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct NonNegativeInteger(#[serde(deserialize_with = "flattened_xml_attr")] pub u64);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct String(pub std::string::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Token(pub std::string::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct NCName(pub std::string::String);

    #[derive(Debug, Clone, PartialEq)]
    pub struct List<T>(pub Vec<T>);

    impl<'de, T: Deserialize<'de>> Deserialize<'de> for List<T> {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            struct EdmListVisitor<T>(PhantomData<T>);

            impl<'de, T: Deserialize<'de>> Visitor<'de> for EdmListVisitor<T> {
                type Value = List<T>;

                fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
                    formatter.write_str("whitespace-separated list of items")
                }

                fn visit_str<E>(self, v: &str) -> Result<Self::Value, E>
                where
                    E: serde::de::Error,
                {
                    #[derive(Debug, Deserialize, Clone, PartialEq)]
                    struct ListItemWrap<T> {
                        val: T,
                    }

                    let mut parsed_items = Vec::new();

                    for item_str in v.split_whitespace() {
                        // Disgusting hack on the xml deserializer to parse the sub-string
                        // TODO: test xml-escaped characters/obtain an actual "string input
                        // deserializer"
                        let parsed_item = serde_xml_rs::from_str::<ListItemWrap<T>>(&format!(
                            "<Wrap val=\"{}\" />",
                            xml::escape::escape_str_attribute(item_str)
                        ))
                        .map_err(|e| {
                            E::custom(format!("Failed to deserialize item in xs:list: {}", e))
                        })?;

                        parsed_items.push(parsed_item.val);
                    }

                    Ok(List(parsed_items))
                }
            }

            deserializer.deserialize_str(EdmListVisitor::<T>(PhantomData))
        }
    }
}

pub mod edm {
    use super::xs;
    use lazy_static::lazy_static;
    use regex::Regex;
    use serde::de::Error;
    use serde::{Deserialize, Deserializer};
    use uuid::Uuid;

    fn boolean_true() -> xs::Boolean {
        xs::Boolean(true)
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct Schema {
        #[serde(rename = "ComplexType", default)]
        pub complex_types: Vec<TComplexType>,
        #[serde(rename = "EntityType", default)]
        pub entity_types: Vec<TEntityType>,
        #[serde(rename = "TypeDefinition", default)]
        pub type_definitions: Vec<TTypeDefinition>,
        #[serde(rename = "EnumType", default)]
        pub enum_types: Vec<TEnumType>,
        #[serde(rename = "Action", default)]
        pub actions: Vec<TAction>,
        #[serde(rename = "Function", default)]
        pub functions: Vec<TFunction>,
        #[serde(rename = "Term", default)]
        pub terms: Vec<TTerm>,
        #[serde(rename = "Annotations", default)]
        pub annotation_groups: Vec<TAnnotations>,
        #[serde(rename = "EntityContainer", default)]
        pub entity_containers: Vec<TEntityContainer>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub namespace: TNamespaceName,
        pub alias: Option<TSimpleIdentifier>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEntityType {
        pub key: Option<TEntityKeyElement>,
        #[serde(rename = "Property", default)]
        pub properties: Vec<TProperty>,
        #[serde(rename = "NavigationProperty", default)]
        pub navigation_properties: Vec<TNavigationProperty>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub derivable_type_attributes: TDerivableTypeAttributes,
        #[serde(default)]
        pub open_type: xs::Boolean,
        #[serde(default)]
        pub has_stream: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEntityKeyElement {
        #[serde(rename = "PropertyRef", default)]
        pub property_refs: Vec<TPropertyRef>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TPropertyRef {
        pub name: TPath,
        pub alias: Option<TSimpleIdentifier>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TComplexType {
        #[serde(rename = "Property", default)]
        pub properties: Vec<TProperty>,
        #[serde(rename = "NavigationProperty", default)]
        pub navigation_properties: Vec<TNavigationProperty>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub derivable_type_attributes: TDerivableTypeAttributes,
        #[serde(default)]
        pub open_type: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TProperty {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub common_property_attributes: TCommonPropertyAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TTypeDefinition {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        pub underlying_type: TPrimitiveType,
        #[serde(flatten)]
        pub facet_attributes: TFacetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TNavigationProperty {
        #[serde(rename = "ReferentialConstraint", default)]
        pub referential_constraints: Vec<TReferentialConstraint>,
        #[serde(rename = "OnDelete", default)]
        pub on_deletes: Vec<TOnDelete>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        pub r#type: TTypeName,
        pub nullable: Option<xs::Boolean>,
        pub partner: Option<TPath>,
        // Differs from xsd definition: document odata-csdl-json-v4.01 section8.4
        #[serde(default)]
        pub contains_target: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TReferentialConstraint {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub property: TPath,
        pub referenced_property: TPath,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TOnDelete {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub action: TOnDeleteAction,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEnumType {
        #[serde(rename = "Member", default)]
        pub members: Vec<TEnumTypeMember>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub type_attributes: TTypeAttributes,
        // Spec differs from xsd: document odata-csdl-json-v4.01 section 10.2
        #[serde(default)]
        pub is_flags: xs::Boolean,
        pub underlying_type: Option<TTypeName>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEnumTypeMember {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        // odata-csdl-xml-v4.01 sec 10.3
        pub value: Option<xs::Long>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionFunctionReturnType {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub r#type: TTypeName,
        pub nullable: Option<xs::Boolean>,
        #[serde(flatten)]
        pub facet_attributes: TFacetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TAction {
        #[serde(rename = "Parameter", default)]
        pub parameters: Vec<TActionFunctionParameter>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(rename = "ReturnType", default)]
        pub return_types: Vec<TActionFunctionReturnType>,
        #[serde(flatten)]
        pub action_attributes: TActionAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TFunction {
        #[serde(rename = "Parameter", default)]
        pub parameters: Vec<TActionFunctionParameter>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub return_type: TActionFunctionReturnType,
        #[serde(flatten)]
        pub function_attributes: TFunctionAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionFunctionParameter {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub action_function_parameter_attributes: TActionFunctionParameterAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TTerm {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        pub r#type: TTypeName,
        pub base_term: Option<TQualifiedName>,
        pub nullable: Option<xs::Boolean>,
        pub default_value: Option<xs::String>,
        pub applies_to: Option<TAppliesTo>,
        #[serde(flatten)]
        pub facet_attributes: TFacetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TAnnotations {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub target: TTarget,
        pub qualifier: Option<TSimpleIdentifier>,
    }

    /// Define a struct with the `GInlineExpressions` Attribute Group fields added to it. This is
    /// necessary instead of just defining a `GInlineExpressions` struct and using
    /// `#[serde(flatten)]`, because it cannot be used in conjunction with `#[serde(rename = "$value")]`: see https://github.com/RReverser/serde-xml-rs/issues/83
    macro_rules! with_g_inline_expressions_fields {
        (
            $(#[$attr:meta])*
            pub struct $name:ident {
                $(
                    $(#[$field_attr:meta])*
                    pub $field_name:ident: $field_type:ty,
                )*
                ...
            }
        ) => {
            $(#[$attr])*
            pub struct $name {
                $(
                    $(#[$field_attr])*
                    pub $field_name: $field_type,
                )*
                // `GInlineExpressions` Attribute Group fields
                pub binary: Option<Binary>,
                pub bool: Option<Boolean>,
                pub date: Option<Date>,
                pub date_time_offset: Option<DateTimeStamp>,
                pub decimal: Option<TDecimalLiteral>,
                pub duration: Option<DayTimeDuration>,
                pub enum_member: Option<TEnumMemberList>,
                pub float: Option<xs::Double>,
                pub guid: Option<TGuidLiteral>,
                pub int: Option<xs::Integer>,
                pub string: Option<xs::String>,
                pub time_of_day: Option<Time>,
                pub annotation_path: Option<TModelPath>,
                pub model_element_path: Option<TModelPath>,
                pub navigation_property_path: Option<TModelPath>,
                pub path: Option<TInstancePath>,
                pub property_path: Option<TModelPath>,
                pub url_ref: Option<xs::AnyUri>,
            }
        };
    }

    with_g_inline_expressions_fields! {
        #[derive(Debug, Deserialize, Clone, PartialEq)]
        #[serde(rename_all = "PascalCase")]
        pub struct Annotation {
            #[serde(rename = "$value", default)]
            pub expressions_annotations: Vec<GExpressionOrAnnotation>,
            pub term: TQualifiedName,
            pub qualifier: Option<TSimpleIdentifier>,
            ...
        }
    }

    /// Define an enum with the `GExpression` element group variants added to it. This is necessary
    /// instead of composing via outer enum (i.e. with 2 variants `GExpression` and
    /// `Annotation`), with `[serde(untagged)]`, because that doesn't work when set as the type
    /// for a `#[serde(rename = "$value")]` field.
    macro_rules! with_g_expression_variants {
        (
            $(#[$attr:meta])*
            pub enum $name:ident {
                $($extra_variant:ident($extra_variant_type:ident),)*
                ...
            }
        ) => {
            $(#[$attr])*
            pub enum $name {
                $(
                    $extra_variant($extra_variant_type),
                )*
                Binary(TBinaryConstantExpression),
                Bool(TBoolConstantExpression),
                Date(TDateConstantExpression),
                DateTimeOffset(TDateTimeOffsetConstantExpression),
                Decimal(TDecimalConstantExpression),
                Duration(TDurationConstantExpression),
                EnumMember(TEnumMemberList),
                Float(TFloatConstantExpression),
                Guid(TGuidConstantExpression),
                Int(TIntConstantExpression),
                String(TStringConstantExpression),
                TimeOfDay(TTimeOfDayConstantExpression),
                AnnotationPath(TModelPath),
                Apply(TApplyExpression),
                Cast(TCastOrIsOfExpression),
                Collection(TCollectionExpression),
                If(TIfExpression),
                Eq(TTwoChildrenExpression),
                Ne(TTwoChildrenExpression),
                Ge(TTwoChildrenExpression),
                Gt(TTwoChildrenExpression),
                Le(TTwoChildrenExpression),
                Lt(TTwoChildrenExpression),
                And(TTwoChildrenExpression),
                Or(TTwoChildrenExpression),
                Not(TOneChildExpression),
                Has(TTwoChildrenExpression),
                In(TTwoChildrenExpression),
                Add(TTwoChildrenExpression),
                Sub(TTwoChildrenExpression),
                Neg(TOneChildExpression),
                Mul(TTwoChildrenExpression),
                Div(TTwoChildrenExpression),
                DivBy(TTwoChildrenExpression),
                Mod(TTwoChildrenExpression),
                IsOf(TCastOrIsOfExpression),
                LabeledElement(TLabeledElementExpression),
                LabeledElementReference(TLabeledElementReferenceExpression),
                Null(TNullExpression),
                ModelElementPath(TModelPath),
                NavigationPropertyPath(TModelPath),
                Path(TInstancePath),
                PropertyPath(TModelPath),
                Record(TRecordExpression),
                UrlRef(TOneChildExpression),
            }
        };
    }

    // Define both `GExpression` and `GExpressionOrAnnotation` for "inner value" deserialisation of
    // several element types. The latter must be created via macro, because using a composed,
    // "untagged" enum (i.e. with 2 variants `GExpression` and `Annotation`) doesn't work in
    // conjunction with `#[serde(rename = "$value")]`.
    with_g_expression_variants! {
        #[derive(Debug, Deserialize, Clone, PartialEq)]
        pub enum GExpression { ... }
    }

    with_g_expression_variants! {
        #[derive(Debug, Deserialize, Clone, PartialEq)]
        pub enum GExpressionOrAnnotation {
            Annotation(Annotation),
            ...
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct GInlineExpressions {
        pub binary: Option<Binary>,
        pub bool: Option<Boolean>,
        pub date: Option<Date>,
        pub date_time_offset: Option<DateTimeStamp>,
        pub decimal: Option<TDecimalLiteral>,
        pub duration: Option<DayTimeDuration>,
        pub enum_member: Option<TEnumMemberList>,
        pub float: Option<xs::Double>,
        pub guid: Option<TGuidLiteral>,
        pub int: Option<xs::Integer>,
        pub string: Option<xs::String>,
        pub time_of_day: Option<Time>,
        pub annotation_path: Option<TModelPath>,
        pub model_element_path: Option<TModelPath>,
        pub navigation_property_path: Option<TModelPath>,
        pub path: Option<TInstancePath>,
        pub property_path: Option<TModelPath>,
        pub url_ref: Option<xs::AnyUri>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TBinaryConstantExpression {
        #[serde(rename = "$value")]
        pub val: Binary,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TBoolConstantExpression {
        #[serde(rename = "$value")]
        pub val: Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TDateConstantExpression {
        #[serde(rename = "$value")]
        pub val: Date,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TDateTimeOffsetConstantExpression {
        #[serde(rename = "$value")]
        pub val: DateTimeStamp,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TDecimalConstantExpression {
        #[serde(rename = "$value")]
        pub val: TDecimalLiteral,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TDurationConstantExpression {
        #[serde(rename = "$value")]
        pub val: DayTimeDuration,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TFloatConstantExpression {
        #[serde(rename = "$value")]
        pub val: xs::Double,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TGuidConstantExpression {
        #[serde(rename = "$value")]
        pub val: TGuidLiteral,
    }

    /// Technically string, but use f64 for simplicity.
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TDecimalLiteral(f64);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TGuidLiteral(Uuid);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TIntConstantExpression {
        #[serde(rename = "$value")]
        pub val: xs::Integer,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TStringConstantExpression {
        #[serde(rename = "$value")]
        pub val: xs::String,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TTimeOfDayConstantExpression {
        #[serde(rename = "$value")]
        pub val: Time,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TApplyExpression {
        #[serde(rename = "$value")]
        pub expressions_annotations: Vec<GExpressionOrAnnotation>,
        pub function: Option<TClientFunction>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TCastOrIsOfExpression {
        #[serde(rename = "$value")]
        pub expressions_annotations: Vec<GExpressionOrAnnotation>,
        pub r#type: Option<TTypeName>,

        // Manually-flattened TFacetAttributes fields (`flatten` incompatible with `$value`)
        pub max_length: Option<TMaxLengthFacet>,
        pub precision: Option<TPrecisionFacet>,
        pub scale: Option<TScaleFacet>,
        pub srid: Option<TSridFacet>,
        pub unicode: Option<TUnicodeFacet>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TCollectionExpression {
        #[serde(rename = "$value", default)]
        pub expressions: Vec<GExpression>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TIfExpression {
        #[serde(rename = "$value")]
        pub expressions_annotations: Vec<GExpressionOrAnnotation>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TOneChildExpression {
        #[serde(rename = "$value")]
        pub expressions_annotations: Vec<GExpressionOrAnnotation>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TTwoChildrenExpression {
        #[serde(rename = "$value")]
        pub expressions_annotations: Vec<GExpressionOrAnnotation>,
    }

    with_g_inline_expressions_fields! {
        #[derive(Debug, Deserialize, Clone, PartialEq)]
        #[serde(rename_all = "PascalCase")]
        pub struct TLabeledElementExpression {
            #[serde(rename = "$value")]
            pub expressions_annotations: Vec<GExpressionOrAnnotation>,
            pub name: TSimpleIdentifier,
            ...
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TLabeledElementReferenceExpression {
        #[serde(rename = "$value")]
        pub val: TQualifiedName,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub struct TNullExpression {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TRecordExpression {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(rename = "Annotation", default)]
        pub property_value: Vec<TPropertyValue>,
        pub r#type: Option<TQualifiedName>,
    }

    with_g_inline_expressions_fields! {
        #[derive(Debug, Deserialize, Clone, PartialEq)]
        #[serde(rename_all = "PascalCase")]
        pub struct TPropertyValue {
            #[serde(rename = "$value")]
            pub expressions_annotations: Vec<GExpressionOrAnnotation>,
            pub property: TSimpleIdentifier,
            ...
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TFacetAttributes {
        pub max_length: Option<TMaxLengthFacet>,
        pub precision: Option<TPrecisionFacet>,
        pub scale: Option<TScaleFacet>,
        pub srid: Option<TSridFacet>,
        pub unicode: Option<TUnicodeFacet>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TCommonPropertyAttributes {
        pub name: TSimpleIdentifier,
        pub r#type: TTypeName,
        #[serde(default = "boolean_true")]
        pub nullable: xs::Boolean,
        pub default_value: Option<xs::String>,
        #[serde(flatten)]
        pub facet_attributes: TFacetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionFunctionParameterAttributes {
        pub name: TSimpleIdentifier,
        pub r#type: TTypeName,
        #[serde(default = "boolean_true")]
        pub nullable: xs::Boolean,
        #[serde(flatten)]
        pub facet_attributes: TFacetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionAttributes {
        pub name: TSimpleIdentifier,
        pub entity_set_path: Option<TPath>,
        #[serde(default)]
        pub is_bound: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TFunctionAttributes {
        pub name: TSimpleIdentifier,
        pub entity_set_path: Option<TPath>,
        #[serde(default)]
        pub is_bound: xs::Boolean,
        #[serde(default)]
        pub is_composable: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TTypeAttributes {
        pub name: TSimpleIdentifier,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TDerivableTypeAttributes {
        #[serde(flatten)]
        pub type_attributes: TTypeAttributes,
        pub base_type: Option<TQualifiedName>,
        #[serde(default)]
        pub r#abstract: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEntityContainer {
        #[serde(rename = "EntitySet", default)]
        pub entity_sets: Vec<TEntitySet>,
        #[serde(rename = "ActionImport", default)]
        pub action_imports: Vec<TActionImport>,
        #[serde(rename = "FunctionImport", default)]
        pub function_imports: Vec<TFunctionImport>,
        #[serde(rename = "Singleton", default)]
        pub singletons: Vec<TSingleton>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        pub extends: Option<TQualifiedName>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEntitySet {
        #[serde(rename = "NavigationPropertyBinding", default)]
        pub navigation_property_bindings: Vec<TNavigationPropertyBinding>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        #[serde(flatten)]
        pub entity_set_attributes: TEntitySetAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TNavigationPropertyBinding {
        pub path: TPath,
        pub target: TPath,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEntitySetAttributes {
        pub name: TSimpleIdentifier,
        pub entity_type: TQualifiedName,
        #[serde(default = "boolean_true")]
        pub include_in_service_document: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TSingleton {
        #[serde(rename = "NavigationPropertyBinding", default)]
        pub navigation_property_bindings: Vec<TNavigationPropertyBinding>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub name: TSimpleIdentifier,
        pub r#type: TQualifiedName,
        #[serde(default)] // odata-csdl-json-v4.01 sec 13.3: absence of nullable attr means false
        pub nullable: xs::Boolean,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionImport {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub action: TQualifiedName,
        #[serde(flatten)]
        pub action_function_import_attributes: TActionFunctionImportAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TFunctionImport {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<Annotation>,
        pub function: TQualifiedName,
        #[serde(default)]
        pub include_in_service_document: xs::Boolean,
        #[serde(flatten)]
        pub action_function_import_attributes: TActionFunctionImportAttributes,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TActionFunctionImportAttributes {
        pub name: TSimpleIdentifier,
        pub entity_set: Option<TPath>,
    }
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TSimpleIdentifier(pub xs::NCName);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TNamespaceName(pub xs::NCName);

    #[derive(Debug, Clone, PartialEq)]
    pub struct TQualifiedName(pub xs::NCName);

    impl<'de> Deserialize<'de> for TQualifiedName {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            lazy_static! {
                static ref T_QUALIFIED_NAME_PATTERN: Regex = Regex::new(
                    r#"(?x)
                        [\p{L}\p{Nl}_]
                        [\p{L}\p{Nl}\p{Nd}\p{Mn}\p{Mc}\p{Pc}[[:cntrl:]]]{0,}
                        (
                            \.
                            [\p{L}\p{Nl}_]
                            [\p{L}\p{Nl}\p{Nd}\p{Mn}\p{Mc}\p{Pc}[[:cntrl:]]]{0,}
                        ){1,}
                    "#
                )
                .unwrap();
            }

            let string_val = String::deserialize(deserializer)?;

            if T_QUALIFIED_NAME_PATTERN.is_match(&string_val) {
                Ok(TQualifiedName(xs::NCName(string_val)))
            } else {
                Err(D::Error::custom("Value is not a valid `TQualifiedName`"))
            }
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TEnumMemberList(pub xs::List<TPath>);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TTypeName {
        Primitive(TPrimitiveType),
        Abstract(TAbstractType),
        CollectionQualified(CollectionQualified),
        Qualified(TQualifiedName),
    }

    /// Additional variant defined with `TTypeName`
    #[derive(Debug, Clone, PartialEq)]
    pub struct CollectionQualified(pub TQualifiedName);

    impl<'de> Deserialize<'de> for CollectionQualified {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            lazy_static! {
                static ref COLLECTION_QUALIFIED_PATTERN: Regex = Regex::new(
                    r#"(?x)
                        Collection\(
                            (?P<inner>
                                [\p{L}\p{Nl}_]
                                [\p{L}\p{Nl}\p{Nd}\p{Mn}\p{Mc}\p{Pc}[[:cntrl:]]]{0,}
                                (
                                    \.
                                    [\p{L}\p{Nl}_]
                                    [\p{L}\p{Nl}\p{Nd}\p{Mn}\p{Mc}\p{Pc}[[:cntrl:]]]{0,}
                                ){1,}
                            )
                        \)
                    "#
                )
                .unwrap();
            }

            let string_val = String::deserialize(deserializer)?;

            match COLLECTION_QUALIFIED_PATTERN.captures(&string_val) {
                Some(cap) => {
                    let inner_val = cap["inner"].to_string();
                    Ok(CollectionQualified(TQualifiedName(xs::NCName(inner_val))))
                }
                None => Err(D::Error::custom(
                    "Value does not match 'Collection([TQualifiedName])'",
                )),
            }
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TPath(pub xs::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TInstancePath(pub xs::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TModelPath(pub xs::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TTarget(pub xs::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TClientFunction {
        Qualified(TQualifiedName),
        BuiltIn(BuiltInClientFunction),
    }

    /// Additional variants defined by `TClientFunction`
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum BuiltInClientFunction {
        #[serde(rename = "odata.concat")]
        OdataConcat,
        #[serde(rename = "odata.contains")]
        OdataContains,
        #[serde(rename = "odata.endswith")]
        OdataEndswith,
        #[serde(rename = "odata.indexof")]
        OdataIndexof,
        #[serde(rename = "odata.length")]
        OdataLength,
        #[serde(rename = "odata.startswith")]
        OdataStartswith,
        #[serde(rename = "odata.substring")]
        OdataSubstring,
        #[serde(rename = "odata.hassubset")]
        OdataHassubset,
        #[serde(rename = "odata.hassubsequence")]
        OdataHassubsequence,
        #[serde(rename = "odata.tolower")]
        OdataTolower,
        #[serde(rename = "odata.toupper")]
        OdataToupper,
        #[serde(rename = "odata.trim")]
        OdataTrim,
        #[serde(rename = "odata.date")]
        OdataDate,
        #[serde(rename = "odata.day")]
        OdataDay,
        #[serde(rename = "odata.fractionalseconds")]
        OdataFractionalSeconds,
        #[serde(rename = "odata.hour")]
        OdataHour,
        #[serde(rename = "odata.maxdatetime")]
        OdataMaxdatetime,
        #[serde(rename = "odata.mindatetime")]
        OdataMindatetime,
        #[serde(rename = "odata.minute")]
        OdataMinute,
        #[serde(rename = "odata.month")]
        OdataMonth,
        #[serde(rename = "odata.now")]
        OdataNow,
        #[serde(rename = "odata.second")]
        OdataSecond,
        #[serde(rename = "odata.time")]
        OdataTime,
        #[serde(rename = "odata.totaloffsetminutes")]
        OdataTotaloffsetminutes,
        #[serde(rename = "odata.totalseconds")]
        OdataTotalseconds,
        #[serde(rename = "odata.year")]
        OdataYear,
        #[serde(rename = "odata.ceiling")]
        OdataCeiling,
        #[serde(rename = "odata.floor")]
        OdataCloor,
        #[serde(rename = "odata.round")]
        OdataRound,
        #[serde(rename = "odata.cast")]
        OdataCast,
        #[serde(rename = "odata.isof")]
        OdataIsof,
        #[serde(rename = "odata.geo.distance")]
        OdataGeoDistance,
        #[serde(rename = "odata.geo.intersects")]
        OdataGeoIntersects,
        #[serde(rename = "odata.geo.length")]
        OdataGeoLength,
        #[serde(rename = "odata.fillUriTemplate")]
        OdataFillUriTemplate,
        #[serde(rename = "odata.uriEncode")]
        OdataUriEncode,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum TPrimitiveType {
        #[serde(rename = "Edm.Binary")]
        EdmBinary,
        #[serde(rename = "Edm.Boolean")]
        EdmBoolean,
        #[serde(rename = "Edm.Byte")]
        EdmByte,
        #[serde(rename = "Edm.Date")]
        EdmDate,
        #[serde(rename = "Edm.DateTimeOffset")]
        EdmDateTimeOffset,
        #[serde(rename = "Edm.Duration")]
        EdmDuration,
        #[serde(rename = "Edm.TimeOfDay")]
        EdmTimeOfDay,
        #[serde(rename = "Edm.Decimal")]
        EdmDecimal,
        #[serde(rename = "Edm.Double")]
        EdmDouble,
        #[serde(rename = "Edm.Single")]
        EdmSingle,
        #[serde(rename = "Edm.GeographyPoint")]
        EdmGeographyPoint,
        #[serde(rename = "Edm.GeographyLineString")]
        EdmGeographyLineString,
        #[serde(rename = "Edm.GeographyPolygon")]
        EdmGeographyPolygon,
        #[serde(rename = "Edm.GeographyMultiPoint")]
        EdmGeographyMultiPoint,
        #[serde(rename = "Edm.GeographyMultiLineString")]
        EdmGeographyMultiLineString,
        #[serde(rename = "Edm.GeographyMultiPolygon")]
        EdmGeographyMultiPolygon,
        #[serde(rename = "Edm.GeographyCollection")]
        EdmGeographyCollection,
        #[serde(rename = "Edm.GeometryPoint")]
        EdmGeometryPoint,
        #[serde(rename = "Edm.GeometryLineString")]
        EdmGeometryLineString,
        #[serde(rename = "Edm.GeometryPolygon")]
        EdmGeometryPolygon,
        #[serde(rename = "Edm.GeometryMultiPoint")]
        EdmGeometryMultiPoint,
        #[serde(rename = "Edm.GeometryMultiLineString")]
        EdmGeometryMultiLineString,
        #[serde(rename = "Edm.GeometryMultiPolygon")]
        EdmGeometryMultiPolygon,
        #[serde(rename = "Edm.GeometryCollection")]
        EdmGeometryCollection,
        #[serde(rename = "Edm.Guid")]
        EdmGuid,
        #[serde(rename = "Edm.Int16")]
        EdmInt16,
        #[serde(rename = "Edm.Int32")]
        EdmInt32,
        #[serde(rename = "Edm.Int64")]
        EdmInt64,
        #[serde(rename = "Edm.String")]
        EdmString,
        #[serde(rename = "Edm.SByte")]
        EdmSByte,
        #[serde(rename = "Collection(Edm.Binary)")]
        CollectionEdmBinary,
        #[serde(rename = "Collection(Edm.Boolean)")]
        CollectionEdmBoolean,
        #[serde(rename = "Collection(Edm.Byte)")]
        CollectionEdmByte,
        #[serde(rename = "Collection(Edm.Date)")]
        CollectionEdmDate,
        #[serde(rename = "Collection(Edm.DateTimeOffset)")]
        CollectionEdmDateTimeOffset,
        #[serde(rename = "Collection(Edm.Duration)")]
        CollectionEdmDuration,
        #[serde(rename = "Collection(Edm.TimeOfDay)")]
        CollectionEdmTimeOfDay,
        #[serde(rename = "Collection(Edm.Decimal)")]
        CollectionEdmDecimal,
        #[serde(rename = "Collection(Edm.Double)")]
        CollectionEdmDouble,
        #[serde(rename = "Collection(Edm.Single)")]
        CollectionEdmSingle,
        #[serde(rename = "Collection(Edm.GeographyPoint)")]
        CollectionEdmGeographyPoint,
        #[serde(rename = "Collection(Edm.GeographyLineString)")]
        CollectionEdmGeographyLineString,
        #[serde(rename = "Collection(Edm.GeographyPolygon)")]
        CollectionEdmGeographyPolygon,
        #[serde(rename = "Collection(Edm.GeographyMultiPoint)")]
        CollectionEdmGeographyMultiPoint,
        #[serde(rename = "Collection(Edm.GeographyMultiLineString)")]
        CollectionEdmGeographyMultiLineString,
        #[serde(rename = "Collection(Edm.GeographyMultiPolygon)")]
        CollectionEdmGeographyMultiPolygon,
        #[serde(rename = "Collection(Edm.GeographyCollection)")]
        CollectionEdmGeographyCollection,
        #[serde(rename = "Collection(Edm.GeometryPoint)")]
        CollectionEdmGeometryPoint,
        #[serde(rename = "Collection(Edm.GeometryLineString)")]
        CollectionEdmGeometryLineString,
        #[serde(rename = "Collection(Edm.GeometryPolygon)")]
        CollectionEdmGeometryPolygon,
        #[serde(rename = "Collection(Edm.GeometryMultiPoint)")]
        CollectionEdmGeometryMultiPoint,
        #[serde(rename = "Collection(Edm.GeometryMultiLineString)")]
        CollectionEdmGeometryMultiLineString,
        #[serde(rename = "Collection(Edm.GeometryMultiPolygon)")]
        CollectionEdmGeometryMultiPolygon,
        #[serde(rename = "Collection(Edm.GeometryCollection)")]
        CollectionEdmGeometryCollection,
        #[serde(rename = "Collection(Edm.Guid)")]
        CollectionEdmGuid,
        #[serde(rename = "Collection(Edm.Int16)")]
        CollectionEdmInt16,
        #[serde(rename = "Collection(Edm.Int32)")]
        CollectionEdmInt32,
        #[serde(rename = "Collection(Edm.Int64)")]
        CollectionEdmInt64,
        #[serde(rename = "Collection(Edm.String)")]
        CollectionEdmString,
        #[serde(rename = "Collection(Edm.SByte)")]
        CollectionEdmSByte,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum TAbstractType {
        #[serde(rename = "Edm.ComplexType")]
        EdmComplexType,
        #[serde(rename = "Edm.EntityType")]
        EdmEntityType,
        #[serde(rename = "Edm.PrimitiveType")]
        EdmPrimitiveType,
        #[serde(rename = "Edm.Untyped")]
        EdmUntyped,
        #[serde(rename = "Edm.Geography")]
        EdmGeography,
        #[serde(rename = "Edm.Geometry")]
        EdmGeometry,
        #[serde(rename = "Edm.AnnotationPath")]
        EdmAnnotationPath,
        #[serde(rename = "Edm.AnyPropertyPath")]
        EdmAnyPropertyPath,
        #[serde(rename = "Edm.ModelElementPath")]
        EdmModelElementPath,
        #[serde(rename = "Edm.NavigationPropertyPath")]
        EdmNavigationPropertyPath,
        #[serde(rename = "Edm.PropertyPath")]
        EdmPropertyPath,
        #[serde(rename = "Collection(Edm.ComplexType)")]
        CollectionEdmComplexType,
        #[serde(rename = "Collection(Edm.EntityType)")]
        CollectionEdmEntityType,
        #[serde(rename = "Collection(Edm.PrimitiveType)")]
        CollectionEdmPrimitiveType,
        #[serde(rename = "Collection(Edm.Untyped)")]
        CollectionEdmUntyped,
        #[serde(rename = "Collection(Edm.Geography)")]
        CollectionEdmGeography,
        #[serde(rename = "Collection(Edm.Geometry)")]
        CollectionEdmGeometry,
        #[serde(rename = "Collection(Edm.AnnotationPath)")]
        CollectionEdmAnnotationPath,
        #[serde(rename = "Collection(Edm.AnyPropertyPath)")]
        CollectionEdmAnyPropertyPath,
        #[serde(rename = "Collection(Edm.ModelElementPath)")]
        CollectionEdmModelElementPath,
        #[serde(rename = "Collection(Edm.NavigationPropertyPath)")]
        CollectionEdmNavigationPropertyPath,
        #[serde(rename = "Collection(Edm.PropertyPath)")]
        CollectionEdmPropertyPath,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TAppliesTo {
        AppliesToElements(TAppliesToElements),
        SimpleIdentifier(TSimpleIdentifier),
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TAppliesToElements(pub xs::List<AppliesToElementsInner>);

    /// Variants defined for `TAppliesToElements` members
    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum AppliesToElementsInner {
        Action,
        ActionImport,
        Annotation,
        Apply,
        Cast,
        Collection,
        ComplexType,
        EntityContainer,
        EntitySet,
        EntityType,
        EnumType,
        Function,
        FunctionImport,
        If,
        Include,
        IsOf,
        LabeledElement,
        Member,
        NavigationProperty,
        Null,
        OnDelete,
        Parameter,
        Property,
        PropertyValue,
        Record,
        Reference,
        ReferentialConstraint,
        ReturnType,
        Schema,
        Singleton,
        Term,
        TypeDefinition,
        UrlRef,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum TFloating {
        #[serde(rename = "floating")]
        Floating,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum TMax {
        #[serde(rename = "max")]
        Max,
    }

    #[derive(Debug, Clone, PartialEq)]
    pub enum TVariable {
        Variable,
    }

    // edm spec specifies `"variable"`, but Dynamics 365 metadata uses `"Variable"`. Just allow any
    // casing.
    impl<'de> Deserialize<'de> for TVariable {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            let string_val = String::deserialize(deserializer)?;

            match string_val.to_ascii_lowercase() == "variable" {
                true => Ok(TVariable::Variable),
                false => Err(D::Error::custom(format!(
                    "Expected `\"variable\"`, found {}",
                    string_val
                ))),
            }
        }
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TMaxLengthFacet {
        Max(TMax),
        NonNegativeInteger(xs::NonNegativeInteger),
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TPrecisionFacet(pub xs::NonNegativeInteger);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TScaleFacet {
        Floating(TFloating),
        Variable(TVariable),
        NonNegativeInteger(xs::NonNegativeInteger),
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(untagged)]
    pub enum TSridFacet {
        Variable(TVariable),
        NonNegativeInteger(xs::NonNegativeInteger),
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct TUnicodeFacet(pub xs::Boolean);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    pub enum TOnDeleteAction {
        Cascade,
        None,
        SetDefault,
        SetNull,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Binary(pub xs::String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Boolean(pub xs::Boolean);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Date(pub String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct Time(pub String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct DateTimeStamp(pub String);

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(transparent)]
    pub struct DayTimeDuration(pub String);
}

pub mod edmx {
    use super::{edm, xs};
    use serde::de::Error;
    use serde::{Deserialize, Deserializer};

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TEdmx {
        pub version: TVersion,
        #[serde(rename = "Reference", default)]
        pub references: Vec<TReference>,
        pub data_services: TDataServices,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TReference {
        pub uri: xs::AnyUri,
        #[serde(rename = "Include", default)]
        pub includes: Vec<TInclude>,
        #[serde(rename = "IncludeAnnotations", default)]
        pub include_annotations: Vec<TIncludeAnnotations>,
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<edm::Annotation>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TInclude {
        #[serde(rename = "Annotation", default)]
        pub annotations: Vec<edm::Annotation>,
        pub namespace: edm::TNamespaceName,
        pub alias: Option<edm::TSimpleIdentifier>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TIncludeAnnotations {
        pub term_namespace: edm::TNamespaceName,
        pub qualifier: Option<edm::TSimpleIdentifier>,
        pub target_namespace: Option<edm::TNamespaceName>,
    }

    #[derive(Debug, Deserialize, Clone, PartialEq)]
    #[serde(rename_all = "PascalCase")]
    pub struct TDataServices {
        #[serde(rename = "Schema", default)]
        pub schemas: Vec<edm::Schema>,
    }

    // edmx.xsd specifies only "4.0" and "4.01". However, we will attempt to validate documents of
    // other EDMX versions anyway.
    #[derive(Debug, Clone, PartialEq)]
    pub enum TVersion {
        V4_0,
        V4_01,
    }

    impl<'de> Deserialize<'de> for TVersion {
        fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
        where
            D: Deserializer<'de>,
        {
            let string_val = String::deserialize(deserializer)?;

            match string_val.as_str() {
                "4.0" => Ok(TVersion::V4_0),
                "4.01" => Ok(TVersion::V4_01),
                s => Err(D::Error::custom(format!(
                    "Only EDMX versions 4.0 and 4.01 supported; found version value \"{}\"",
                    s
                ))),
            }
        }
    }
}