substrait-extensions 0.99.0

Packaged Substrait Extension Files
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
# Substrait Dialect Schema Definition
# This schema defines the structure for Substrait dialect files, which specify how
# functions and types are supported in different execution environments.

$id: http://substrait.io/schemas/dialect
$schema: https://json-schema.org/draft/2020-12/schema
title: Dialect
additionalProperties: false
type: object

properties:
  name:
    type: string
    description: Optional name of the dialect (e.g., "MySQL", "PostgreSQL", "Spark").
  metadata:
    type: object
    description: Arbitrary data created by the dialect author.
  dependencies:
    type: object
    description: >
      A map of extension files depended on by this dialect.
      Keys are aliases for extensions, which are used within the dialect.
      Values are URNs.
    additionalProperties:
      type: string
    minProperties: 1

  supported_types:
    type: array
    uniqueItems: true
    description: >
      Types that are supported by this dialect. If not present or empty, all
      standard types are supported.
    items:
      oneOf:
        - enum:
          - BOOL
          - I8
          - I16
          - I32
          - I64
          - FP32
          - FP64
          - BINARY
          - FIXED_BINARY
          - STRING
          - VARCHAR
          - FIXED_CHAR
          - PRECISION_TIME
          - PRECISION_TIMESTAMP
          - PRECISION_TIMESTAMP_TZ
          - DATE
          - INTERVAL_COMPOUND
          - INTERVAL_DAY
          - INTERVAL_YEAR
          - UUID
          - UNBOUND
          - DECIMAL
          - STRUCT
          - LIST
          - MAP
        - $ref: "#/definitions/type_bool"
        - $ref: "#/definitions/type_i8"
        - $ref: "#/definitions/type_i16"
        - $ref: "#/definitions/type_i32"
        - $ref: "#/definitions/type_i64"
        - $ref: "#/definitions/type_fp32"
        - $ref: "#/definitions/type_fp64"
        - $ref: "#/definitions/type_binary"
        - $ref: "#/definitions/type_fixed_binary"
        - $ref: "#/definitions/type_string"
        - $ref: "#/definitions/type_varchar"
        - $ref: "#/definitions/type_fixed_char"
        - $ref: "#/definitions/type_precision_time"
        - $ref: "#/definitions/type_precision_timestamp"
        - $ref: "#/definitions/type_precision_timestamp_tz"
        - $ref: "#/definitions/type_date"
        - $ref: "#/definitions/type_interval_compound"
        - $ref: "#/definitions/type_interval_day"
        - $ref: "#/definitions/type_interval_year"
        - $ref: "#/definitions/type_uuid"
        - $ref: "#/definitions/type_unbound"
        - $ref: "#/definitions/type_decimal"
        - $ref: "#/definitions/type_struct"
        - $ref: "#/definitions/type_list"
        - $ref: "#/definitions/type_map"
        - $ref: "#/definitions/type_user_defined"

  supported_relations:
    type: array
    uniqueItems: true
    description: >
      Relations that are supported by this dialect.  If not present or empty,
      all relations are supported.
    items:
      oneOf:
        - enum:
          - READ
          - FILTER
          - FETCH
          - AGGREGATE
          - SORT
          - JOIN
          - LATERAL_JOIN
          - PROJECT
          - SET
          - CROSS
          - REFERENCE
          - WRITE
          - DDL
          - UPDATE
          - HASH_JOIN
          - MERGE_JOIN
          - NESTED_LOOP_JOIN
          - CONSISTENT_PARTITION_WINDOW
          - EXCHANGE
          - EXPAND
        - $ref: "#/definitions/read_relation"
        - $ref: "#/definitions/filter_relation"
        - $ref: "#/definitions/fetch_relation"
        - $ref: "#/definitions/aggregate_relation"
        - $ref: "#/definitions/sort_relation"
        - $ref: "#/definitions/join_relation"
        - $ref: "#/definitions/lateral_join_relation"
        - $ref: "#/definitions/project_relation"
        - $ref: "#/definitions/set_relation"
        - $ref: "#/definitions/extension_single_relation"
        - $ref: "#/definitions/extension_multi_relation"
        - $ref: "#/definitions/extension_leaf_relation"
        - $ref: "#/definitions/cross_relation"
        - $ref: "#/definitions/reference_relation"
        - $ref: "#/definitions/write_relation"
        - $ref: "#/definitions/ddl_relation"
        - $ref: "#/definitions/update_relation"
        - $ref: "#/definitions/hash_join_relation"
        - $ref: "#/definitions/merge_join_relation"
        - $ref: "#/definitions/nested_loop_join_relation"
        - $ref: "#/definitions/consistent_partition_window_relation"
        - $ref: "#/definitions/exchange_relation"
        - $ref: "#/definitions/expand_relation"

  supported_expressions:
    type: array
    uniqueItems: true
    description: >
      Expressions that are supported by this dialect.  If not present or empty,
      all expressions are supported.
    items:
      oneOf:
        - enum:
          - LITERAL
          - SELECTION
          - SCALAR_FUNCTION
          - WINDOW_FUNCTION
          - IF_THEN
          - SWITCH
          - SINGULAR_OR_LIST
          - MULTI_OR_LIST
          - CAST
          - SUBQUERY
          - NESTED
          - DYNAMIC_PARAMETER
          - EXECUTION_CONTEXT_VARIABLE
        - $ref: "#/definitions/literal_expression"
        - $ref: "#/definitions/selection_expression"
        - $ref: "#/definitions/scalar_function_expression"
        - $ref: "#/definitions/window_function_expression"
        - $ref: "#/definitions/if_then_expression"
        - $ref: "#/definitions/switch_expression"
        - $ref: "#/definitions/singular_or_list_expression"
        - $ref: "#/definitions/multi_or_list_expression"
        - $ref: "#/definitions/cast_expression"
        - $ref: "#/definitions/subquery_expression"
        - $ref: "#/definitions/nested_expression"
        - $ref: "#/definitions/dynamic_parameter_expression"
        - $ref: "#/definitions/execution_context_variable"

  supported_scalar_functions:
    type: array
    description: Regular functions that operate on scalar values.
    items:
      $ref: "#/definitions/dialect_function"
  supported_aggregate_functions:
    type: array
    description: Functions that aggregate multiple rows into a single result.
    items:
      $ref: "#/definitions/dialect_function"
  supported_window_functions:
    type: array
    description: Functions that operate over a window of rows.
    items:
      $ref: "#/definitions/dialect_function"

  supported_execution_behavior:
    type: object
    additionalProperties: false
    properties:
      supported_variable_evaluation_mode:
        type: array
        uniqueItems: true
        items:
          oneOf:
            - enum:
              - PER_PLAN
              - PER_RECORD
        description: >
          Supported execution context variable evaluation modes:
          * PER_PLAN: Variables are evaluated once per Substrait plan
            execution. All records in a single plan execution will see the
            same values for execution context variables like `current_date`
            and `current_timestamp`.
          * PER_RECORD: Variables are evaluated once per record during
            execution. Each record may see different values for execution
            context variables if the execution context changes between records.

definitions:
  # Definitions used for functions
  dialect_function:
    type: object
    additionalProperties: false
    required: [source, name, supported_impls]
    properties:
      source:
        type: string
        description: Dependency (alias) in which the function is declared.
      name:
        type: string
        description: >
          The name of the function as declared in the extension it is defined in.
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        type: object
        description: system specific metadata for the function
        $ref: "#/definitions/system_function_metadata"
      required_options:
        type: object
        description: >
          Function-specific options that must be supported by the dialect.  These
          are the exact list of options that must be used.  If no options are
          listed here, no options must be present.
      supported_impls:
        type: array
        description: >
          List of one or more implementations supported by this function. Use
          argument signatures to identify the implementations.
        minItems: 1
        items:
          type: string
      variadic:
        type: object
        description: >
          If present, indicates the function accepts a variable number of arguments.
          Specifies the minimum and/or maximum number of arguments allowed.
        properties:
          min:
            type: integer
            description: "Minimum number of arguments required"
            minimum: 1
          max:
            type: integer
            description: "Maximum number of arguments allowed"
            minimum: 1
        additionalProperties: false
  system_function_metadata:
    type: object
    additionalProperties: false
    description: >
      System specific metadata for use in mapping Substrait to and from
      Common metadata fields are defined for use across dialects.
      Individual dialects may include additional metadata to serve their purposes.
    properties:
      name:
        type: string
        description: >
          The name for this function in the system modelled by the dialect.
          For example, "+" might be the system name for "add".
      notation:
        type: string
        enum:
          - INFIX
          - POSTFIX
          - PREFIX
          - FUNCTION
        default: FUNCTION
        description: >
          The notation used to invoke this function in the system modelled by
          the dialect. For example, a function with system_name "+" could be
          invoked as follow:
          * INFIX:    "a + b"
          * POSTFIX:  "a b +",
          * PREFIX:   "+ a b"
          * FUNCTION: "func(a, b)"

  # Definitions used for types
  type_base:
    type: object
    description: Dialect properties shared by all types
    properties:
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        type: object
        description: system specific metadata for the type
        $ref: "#/definitions/system_type_metadata"
  system_type_metadata:
    type: object
    additionalProperties: false
    description: >
      System specific metadata for use in mapping Substrait to and from the system representation.
      Common metadata fields are defined for use across dialects.
      Individual dialects may include additional metadata to serve their purposes.
    properties:
      name:
        type: string
        description: >
          The name for this type in the system modelled by the dialect.
      supported_as_column:
        type: boolean
        description: >
          Whether this type can be used as a column in a table.  Types listed
          here are always supported as literals.
  type_bool:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: BOOL
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_i8:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: I8
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_i16:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: I16
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_i32:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: I32
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_i64:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: I64
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_fp32:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: FP32
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_fp64:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: FP64
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_binary:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: BINARY
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_fixed_binary:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: FIXED_BINARY
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_length:
        description: >-
          The maximum length for the FIXED_BINARY data type supported by this
          dialect.

          Since the maximum length in Substrait for FIXED_BINARY is
          2,147,483,647 the value must be in range: 0 <= max_length <=
          2,147,483,647.
        type: integer
        minimum: 0
        maximum: 2147483647
  type_string:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: STRING
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_varchar:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: VARCHAR
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_length:
        description: >-
          The maximum length for the VARCHAR data type supported by this
          dialect.

          Since the maximum length in Substrait for VARCHAR is 2,147,483,647
          the value must be in range: 0 <= max_length <= 2,147,483,647.
        type: integer
        minimum: 0
        maximum: 2147483647
  type_fixed_char:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: FIXED_CHAR
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_length:
        description: >-
          The maximum length for the FIXED_CHAR data type supported by this
          dialect.

          Since the maximum length in Substrait for FIXED_CHAR is 2,147,483,647
          the value must be in range: 0 <= max_length <= 2,147,483,647.
        type: integer
        minimum: 0
        maximum: 2147483647
  type_precision_time:
    type: object
    additionalProperties: false
    required: [type, max_precision]
    properties:
      type:
        const: PRECISION_TIME
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum subsecond precision for the PRECISION_TIME data type
          supported by this dialect.

          Since the maximum precision in Substrait for PRECISION_TIME is 12
          the value must be in range: 0 <= max_precision <= 12.
        type: integer
        minimum: 0
        maximum: 12
  type_precision_timestamp:
    type: object
    additionalProperties: false
    required: [type, max_precision]
    properties:
      type:
        const: PRECISION_TIMESTAMP
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum subsecond precision for the PRECISION_TIMESTAMP data type
          supported by this dialect.

          Since the maximum precision in Substrait for PRECISION_TIMESTAMP is
          12 the value must be in range: 0 <= max_precision <= 12.
        type: integer
        minimum: 0
        maximum: 12
  type_precision_timestamp_tz:
    type: object
    additionalProperties: false
    required: [type, max_precision]
    properties:
      type:
        const: PRECISION_TIMESTAMP_TZ
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum subsecond precision for the PRECISION_TIMESTAMP_TZ data
          type supported by this dialect.

          Since the maximum precision in Substrait for PRECISION_TIMESTAMP_TZ is
          12 the value must be in range: 0 <= max_precision <= 12.
        type: integer
        minimum: 0
        maximum: 12
  type_date:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: DATE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_interval_compound:
    type: object
    additionalProperties: false
    required: [type, max_precision]
    properties:
      type:
        const: INTERVAL_COMPOUND
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum subsecond precision for the INTERVAL_COMPOUND data type
          supported by this dialect.

          Since the maximum precision in Substrait for INTERVAL_COMPOUND is 12
          the value must be in range: 0 <= max_precision <= 12.
        type: integer
        minimum: 0
        maximum: 12
  type_interval_day:
    type: object
    additionalProperties: false
    required: [type, max_precision]
    properties:
      type:
        const: INTERVAL_DAY
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum subsecond precision for the INTERVAL_DAY data type
          supported by this dialect.


          Since the maximum precision in Substrait for INTERVAL_DAY is 12
          the value must be in range: 0 <= max_precision <= 12.
        type: integer
        minimum: 0
        maximum: 12
  type_interval_year:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: INTERVAL_YEAR
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_uuid:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: UUID
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_unbound:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: UNBOUND
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_decimal:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: DECIMAL
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
      max_precision:
        description: >-
          The maximum number of digits in the integer part of the decimal type
          where (P, number of digits) <= 38 and scale (S, number of fractional
          digits) 0 <= S <= P.
        type: integer
        minimum: 0
        maximum: 38
      max_scale:
        description: >-
          The maximum number of digits after the decimal point  of the decimal
          type where (P, number of digits) <= 38 and scale (S, number of
          fractional digits) 0 <= S <= P.
        type: integer
        minimum: 0
        maximum: 38
  type_struct:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: STRUCT
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_list:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: LIST
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_map:
    type: object
    additionalProperties: false
    required: [type]
    properties:
      type:
        const: MAP
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"
  type_user_defined:
    type: object
    additionalProperties: false
    required: [type, source, name]
    properties:
      type:
        const: USER_DEFINED
      source:
        type: string
        description: "Dependency (alias) where this type is declared"
      name:
        type: string
        description: >
          The name of the type as declared in the extension it is defined in.
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      system_metadata:
        $ref: "#/definitions/system_type_metadata"

  # Definitions used for relations
  join_types:
    type: array
    uniqueItems: true
    description: The list of possible join types used by join relations.
    items:
      enum:
        - INNER
        - OUTER
        - LEFT
        - RIGHT
        - LEFT_SEMI
        - RIGHT_SEMI
        - LEFT_ANTI
        - RIGHT_ANTI
        - LEFT_SINGLE
        - RIGHT_SINGLE
        - LEFT_MARK
        - RIGHT_MARK
  lateral_join_types:
    type: array
    uniqueItems: true
    description: The list of possible join types used by lateral join relations.
    items:
      enum:
        - INNER
        - LEFT
        - LEFT_SEMI
        - LEFT_ANTI
        - LEFT_SINGLE
        - LEFT_MARK
  read_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: READ
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      read_types:
        type: array
        uniqueItems: true
        description: The list of possible read types used by the read relation.
        items:
          enum:
            - VIRTUAL_TABLE
            - LOCAL_FILES
            - NAMED_TABLE
            - EXTENSION_TABLE
            - ICEBERG_TABLE
    required: [relation]
  filter_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: FILTER
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  fetch_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: FETCH
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  aggregate_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: AGGREGATE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  sort_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: SORT
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  join_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: JOIN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      join_types:
        $ref: "#/definitions/join_types"
    required: [relation]
  lateral_join_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: LATERAL_JOIN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      join_types:
        $ref: "#/definitions/lateral_join_types"
    required: [relation]
  project_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: PROJECT
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  set_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: SET
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      operations:
        type: array
        uniqueItems: true
        description: The list of valid set operations used by a set relation.
        items:
          enum:
            - MINUS_PRIMARY
            - MINUS_PRIMARY_ALL
            - MINUS_MULTISET
            - INTERSECTION_PRIMARY
            - INTERSECTION_MULTISET
            - INTERSECTION_MULTISET_ALL
            - UNION_DISTINCT
            - UNION_ALL
    required: [relation]
  extension_single_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: EXTENSION_SINGLE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      message_types:
        type: array
        uniqueItems: true
        description: >
          The list of supported message types.  Use the URI (e.g.
          type.googleapis.com/google.profile.Person) that is related to the
          detail field.
        items:
          type: string
    required: [relation]
  extension_multi_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: EXTENSION_MULTI
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      message_types:
        type: array
        uniqueItems: true
        description: >
          The list of supported message types.  Use the URI (e.g.
          type.googleapis.com/google.profile.Person) that is related to the
          detail field.
        items:
          type: string
    required: [relation]
  extension_leaf_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: EXTENSION_LEAF
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      message_types:
        type: array
        uniqueItems: true
        description: >
          The list of supported message types.  Use the URI (e.g.
          type.googleapis.com/google.profile.Person) that is related to the
          detail field.
        items:
          type: string
    required: [relation]
  cross_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: CROSS
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  reference_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: REFERENCE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  write_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: WRITE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      write_types:
        type: array
        uniqueItems: true
        description: The list of valid write types a write relation can perform.
        items:
          enum:
            - NAMED_TABLE
            - EXTENSION_TABLE
    required: [relation]
  ddl_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: DDL
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      write_types:
        type: array
        uniqueItems: true
        description: The list of valid types a ddl relation can operate on.
        items:
          enum:
            - NAMED_OBJECT
            - EXTENSION_OBJECT
    required: [relation]
  update_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: UPDATE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  hash_join_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: HASH_JOIN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      join_types:
        $ref: "#/definitions/join_types"
    required: [relation]
  merge_join_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: MERGE_JOIN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      join_types:
        $ref: "#/definitions/join_types"
    required: [relation]
  nested_loop_join_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: NESTED_LOOP_JOIN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      join_types:
        $ref: "#/definitions/join_types"
    required: [relation]
  consistent_partition_window_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: CONSISTENT_PARTITION_WINDOW
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [relation]
  exchange_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: EXCHANGE
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      kinds:
        type: array
        uniqueItems: true
        description: The list of valid exchanges an exchange relation can perform.
        items:
          enum:
            - SCATTER_BY_FIELDS
            - SINGLE_TARGET
            - MULTI_TARGET
            - ROUND_ROBIN
            - BROADCAST
    required: [relation]
  expand_relation:
    type: object
    additionalProperties: false
    properties:
      relation:
        const: EXPAND
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      field_types:
        type: array
        uniqueItems: true
        description: The valid methods that control how an expand relation behaves.
        items:
          enum:
            - SWITCHING_FIELD
            - CONSTANT_FIELD
    required: [relation]

  # Definitions used for expressions
  literal_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: LITERAL
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      # Type restriction not needed as types are restricted explicitly by supported_types.
    required: [expression]
  selection_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: SELECTION
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  scalar_function_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: SCALAR_FUNCTION
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  window_function_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: WINDOW_FUNCTION
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  if_then_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: IF_THEN
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  switch_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: SWITCH
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  singular_or_list_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: SINGULAR_OR_LIST
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  multi_or_list_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: MULTI_OR_LIST
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  # embedded_function_expression not included due to insufficient proto support.
  cast_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: CAST
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      failure_options:
        type: array
        uniqueItems: true
        description: The permissible failure options for cast operations.
        items:
          enum:
            - RETURN_NULL
            - THROW_EXCEPTION
    required: [expression]
  subquery_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: SUBQUERY
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      subquery_types:
        type: array
        description: The possible subquery types for a subquery relation.
        items:
          enum:
            - SCALAR
            - IN_PREDICATE
            - SET_PREDICATE
            - SET_COMPARISON
    required: [expression]
  nested_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: NESTED
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
      nested_types:
        type: array
        description: The valid nested types.
        items:
          enum:
            - STRUCT
            - LIST
            - MAP
    required: [expression]
  dynamic_parameter_expression:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: DYNAMIC_PARAMETER
      metadata:
        type: object
        description: Arbitrary data created by the dialect author.
    required: [expression]
  execution_context_variable:
    type: object
    additionalProperties: false
    properties:
      expression:
        const: EXECUTION_CONTEXT_VARIABLE
      variable_types:
        type: array
        description: The possible execution context variable types.
        items:
          oneOf:
            - enum:
              - CURRENT_TIMESTAMP
              - CURRENT_TIMEZONE
              - CURRENT_DATE
    required: [expression]