-
Notifications
You must be signed in to change notification settings - Fork 3
/
user_account_operations.yaml
7995 lines (7588 loc) · 261 KB
/
user_account_operations.yaml
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
openapi: 3.0.0
info:
title: Account Operations - User
description: >-
The official SeaTable API Reference (OpenAPI 3.0).
version: "5.1"
servers:
- url: "https://{server}"
variables:
server:
default: cloud.seatable.io
x-readme:
explorer-enabled: true
metrics-enabled: false
proxy-enabled: false
# - why different?
# /api/v2.1/workspace/{workspace_id}/dtable/{base_name}/share/ < includes GET, POST, PUT and DELETE
# vs
# /api/v2.1/workspace/{workspace_id}/dtable/{base_name}/group-shares/{group_id}/ < includes only PUT AND DELETE. GET and POST use sub-urls. Why?
# - why is workspace_id_query a query param?
# - why is base_name in one case a query param?
components:
securitySchemes:
AccountTokenAuth:
type: http
scheme: bearer
description: This is the [Account-Token](/reference/authentication).
parameters:
#=======================Query parameters=======================#
workspace_id_query:
name: workspace_id_query
description: id of your workspace.
in: query
schema:
type: integer
minimum: 1
required: true
example: 127
base_name_query:
name: base_name
description: name of your base
in: query
schema:
type: string
required: true
example: "My Projects"
table_id:
name: table_id
in: query
schema:
type: string
pattern: "^[A-Za-z0-9]{4}$"
description: "The id of the table. The id of a table is unique inside a base and is often used to identify a table. **Important: the table_id is not the table_name**."
example: "0000"
required: true
table_name:
name: table_name
description: The name of the table.
in: query
schema:
type: string
example: Table1
required: true
view_id:
name: view_id
in: query
schema:
type: string
pattern: "^[A-Za-z0-9]{4}$"
required: true
description: id of view, string
example: "Jz4d"
view_name:
name: view_name
in: query
schema:
type: string
required: true
description: name of view, required, string
example: "Default View"
dtable_uuid_query:
name: dtable_uuid
in: query
schema:
type: string
pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$'
required: true
description: The unique identifier of a base. Sometimes also called dtable_uuid.
example: 5c264e76-0e5a-448a-9f34-580b551364ca
dtable_name_query:
name: dtable_name
in: query
schema:
type: string
required: true
example: Example
page:
name: page
in: query
schema:
type: integer
minimum: 1
example: 1
per_page:
name: per_page
in: query
schema:
type: integer
minimum: 1
example: 2
tz:
name: to_tz
in: query
schema:
type: string
pattern: "^+[0-9]{2}:[0-9]{2}$"
example: +08:00
detail:
name: detail
in: query
schema:
type: boolean
description: >-
`true` or `false`, optional, `true` by default. When `false`, only
the ID, name and type of each workspace is listed.
example: "false"
parent_dir:
name: parent_dir
in: query
schema:
type: string
example: /
path:
name: path
in: query
schema:
type: string
example: /files/2021-01/abc.jpg
months:
name: months
in: query
schema:
type: integer
minimum: 1
maximum: 12
description: >-
Number of months to list file upload history. Optional. 2 by
default.
example: "3"
account_name:
name: account_name
in: query
schema:
type: string
example: Email Server2
task_id:
name: task_id
in: query
schema:
type: integer
description: >-
The ID of the task, returned when you **Send An Email via 3rd Party
Email Account**.
example: "1616585864320"
base_password:
name: password
in: query
schema:
type: string
description: The password of your Base.
by_group:
name: by_group
in: query
schema:
type: boolean
description: Whether return the list of datasets by groups when dtable_uuid is not given, default false, optional
op_date:
name: op_date
in: query
schema:
type: string
pattern: "^((19|20)[0-9][0-9])[-](0[1-9]|1[012])[-](0[1-9]|[12][0-9]|3[01])[T]([01][1-9]|[2][0-3])[:]([0-5][0-9])[:]([0-5][0-9])([+|-]([01][0-9]|[2][0-3])[:]([0-5][0-9])){0,1}$"
required: true
example: "2023-05-25T10:06:39+08:00"
query_str:
name: query_str
in: query
schema:
type: string
example: "test"
description: "Search string. Substrings are allowed and capitalization does not matter."
query_type:
name: query_type
in: query
schema:
type: string
enum: ["", "base", "app"]
ignore_asset:
name: ignore_asset
in: query
schema:
type: boolean
example: "false"
description: Set this to `true` to export the base without assets. Default is `false`.
#=======================Path parameters=======================#
user_id:
name: user_id
in: path
schema:
type: string
pattern: "^[a-f0-9]{32}(@auth.local)$"
required: true
example: [email protected]
workspace_id:
name: workspace_id
description: id of your workspace.
in: path
schema:
type: integer
minimum: 1
required: true
example: 127
base_name:
name: base_name
description: name of your base.
in: path
schema:
type: string
required: true
example: "My Projects"
base_uuid:
name: base_uuid
in: path
schema:
type: string
pattern: '^[0-9a-fA-F]{8}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{4}\b-[0-9a-fA-F]{12}$'
required: true
description: The unique identifier of a base. Sometimes also called dtable_uuid.
example: 5c264e76-0e5a-448a-9f34-580b551364ca
folder_id:
name: folder_id
in: path
schema:
type: string
required: true
commit_id:
name: commit_id
in: path
schema:
type: string
pattern: "^[a-f0-9]{40}$"
required: true
example: 7ee107a4eadb9561e8ce7699494939015f0d101b
external_link_token:
name: external_link_token
in: path
schema:
type: string
required: true
example: fleischkaesebroetchen
form_token:
name: form_token
in: path
schema:
type: string
pattern: "^[0-9]{8}-([a-f0-9]{4}-){3}[a-f0-9]{12}$"
required: true
example: 12345678-d378-4c12-8d7a-6da0fb48ee83
collection_token:
name: collection_token
in: path
schema:
type: string
required: true
org_id:
name: org_id
in: path
schema:
type: integer
minimum: 1
required: true
description: >-
The ID of your team/organization. Numeric. Get it from "Team admin >
Info and Settings > Get Team Info". Contact your team admin, if you
are not the admin.
example: "1"
sys_notification_id:
name: sys_notification_id
description: The id of the notification.
in: path
schema:
type: string
required: true
example: "1"
3rd_party_account_id:
name: 3rd_party_account_id
in: path
schema:
type: string
required: true
example: "5"
group_id:
name: group_id
in: path
schema:
type: integer
minimum: 1
required: true
example: 1
group_member:
name: group_member
in: path
schema:
type: string
pattern: "^[a-f0-9]{32}(@auth.local)$"
required: true
example: 12345678-d378-4c12-8d7a-6da0fb48ee83
webhook_id:
name: webhook_id
in: path
schema:
type: integer
minimum: 1
required: true
example: 1
notification_rule_id:
name: notification_rule_id
in: path
schema:
type: string
required: true
example: "1"
common_dataset_id:
name: common_dataset_id
in: path
schema:
type: integer
minimum: 1
required: true
description: >-
The ID of the common dataset. Can be retrieved by calling [List Common Datasets A Base Can Access](/reference/listcommondataset-1).
example: 7
app_token:
name: app_token
in: path
schema:
type: string
pattern: "^[0-9a-f]{8}-([a-f1-9]{4}-){3}[a-f0-9]{12}$"
required: true
example: 8254d58e-6a67-45ab-be37-87939d80e99f
group_view_share_id:
name: group_view_share_id
in: path
schema:
type: integer
minimum: 1
required: true
example: 6
user_view_share_id:
name: user_view_share_id
in: path
schema:
type: integer
minimum: 1
required: true
example: 15
view_external_link_token:
name: view_external_link_token
in: path
schema:
type: string
pattern: "^[0-9a-f]{20}$"
required: true
example: f234baec8ce44028978a
invite_link_token:
name: invite_link_token
in: path
schema:
type: string
pattern: "^[0-9a-f]{20}$"
required: true
example: 65432148a9074901923d
dataset_id:
name: dataset_id
in: path
schema:
type: integer
minimum: 1
required: true
description: >-
The ID of the common dataset. When you e.g. publish a common dataset
from a view, the returned `id` is what you need here.
example: 5
department_id:
name: department_id
in: path
schema:
type: integer
minimum: 1
required: true
description: ID of the department. Required.
example: 10
automation_rule_id:
name: automation_rule_id
in: path
schema:
type: integer
minimum: 1
required: true
example: 20
schemas:
Base:
type: object
properties:
table:
type: object
properties:
id:
type: integer
workspace_id:
type: integer
uuid:
$ref: "#/components/schemas/dtable_uuid"
name:
$ref: "#/components/schemas/dtable_name"
created_at:
type: string
format: date-time
updated_at:
type: string
format: date-time
color:
type: string
nullable: true
text_color:
type: string
nullable: true
icon:
type: string
nullable: true
is_encrypted:
type: boolean
in_storage:
type: boolean
user_account_name:
type: string
example: Example
user_id:
type: string
example: [email protected]
required:
- user_id
role_id:
type: integer
example: 21
old_base_name:
type: string
description: The old name of the base. Required.
example: Example
new_base_name:
type: string
description: The new name of the base. Optional.
example: New Example
operation:
type: string
default: "password_unset"
user_account_password:
type: string
example: "654321"
is_sync_periodically:
type: boolean
dtable_uuid:
type: string
description: The UUID of the base.
example: 650d8a0d-7e27-46a8-8b18-6cc6f3dbvh46
dst_dtable_uuid:
type: string
description: The UUID of the destination base.
example: 650d8a0d-7e27-46a8-8b18-6cc6f3dbvh46
dst_table_id:
type: string
example: pzoO
dtable_name:
type: string
description: The name of the base.
example: Example
share_type:
type: string
example: shared_groups
view_name:
type: string
description: The name of the view
example: Default View
group_id:
type: string
description: "The ID of the group. "
example: "1"
group_name:
type: string
description: The name of the group.
example: "Sample Group"
group_ids:
type: array
items:
type: integer
example: "52"
user_id_list:
type: array
items:
type: string
example: "[email protected]"
account_name:
type: string
example: "Email Server2"
account_type:
type: string
example: email
detail:
type: object
properties:
email_host:
type: string
example: smtp.example.com
email_port:
type: integer
example: 587
host_user:
type: string
example: [email protected]
password:
type: string
example: "123456"
run_condition:
type: string
example: per_day
trigger:
type: object
properties:
rule_name:
type: string
example: "Test heute"
condition:
type: string
example: rows_modified
table_id:
type: string
example: "0000"
view_id:
type: string
example: "0000"
action:
type: object
properties:
type:
type: string
example: notify
users:
type: array
items:
type: string
example: [email protected]
is_admin:
type: string
enum: ["", "true", "false"]
is_inactive:
type: object
properties:
is_inactive:
type: boolean
required:
- is_inactive
### schema Automation Rule
#################### Events ####################
records_meet_specific_conditions_after_modification:
title: "Records meet specific conditions after modification"
type: object
properties:
run_condition:
type: string
enum: [per_update]
trigger:
$ref: "#/components/schemas/trigger_records_meet_specific_conditions_after_modification"
actions:
$ref: "#/components/schemas/action_records_meet_specific_conditions_after_modification"
row_added:
title: "Row added"
type: object
properties:
run_condition:
type: string
enum: [per_update]
trigger:
$ref: "#/components/schemas/trigger_row_added"
actions:
$ref: "#/components/schemas/action_row_added"
run_periodically:
title: "Run periodically"
oneOf:
- $ref: "#/components/schemas/trigger_run_periodically_per_day"
- $ref: "#/components/schemas/trigger_run_periodically_per_week"
- $ref: "#/components/schemas/trigger_run_periodically_per_month"
run_periodically_on_records_meet_conditions:
title: "Run periodically on records meet conditions"
oneOf:
- $ref: "#/components/schemas/trigger_run_periodically_on_records_meet_per_day"
- $ref: "#/components/schemas/trigger_run_periodically_on_records_meet_per_week"
- $ref: "#/components/schemas/trigger_run_periodically_on_records_meet_per_month"
#################### Events ####################
#################### trigger conditions ####################
trigger_records_meet_specific_conditions_after_modification:
title: Trigger
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_records_meet_specific_conditions_after_modification_condition"
filters:
$ref: "#/components/schemas/filters"
filter_conjunction:
type: string
column_keys:
type: array
items:
type: string
watch_all_columns:
type: boolean
trigger_row_added:
title: Trigger
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_row_added_condition"
filters:
$ref: "#/components/schemas/filters"
filter_conjunction:
type: string
column_keys:
type: array
items:
type: string
watch_all_columns:
type: string
enum: [true]
trigger_run_periodically_per_day:
title: "per day"
type: object
properties:
run_condition:
type: string
enum: [per_day]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_condition"
date_column_name:
type: string
notify_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically"
trigger_run_periodically_per_week:
title: "per week"
type: object
properties:
run_condition:
type: string
enum: [per_week]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_condition"
date_column_name:
type: string
notify_week_day:
type: integer
notify_week_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically"
trigger_run_periodically_per_month:
title: "per month"
type: object
properties:
run_condition:
type: string
enum: [per_month]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_condition"
date_column_name:
type: string
notify_month_day:
type: integer
notify_month_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically"
trigger_run_periodically_on_records_meet_per_day:
title: "per day"
type: object
properties:
run_condition:
type: string
enum: [per_day]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_by_condition"
date_column_name:
type: string
filters:
$ref: "#/components/schemas/filters"
filter_conjunction:
type: string
notify_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically_on_records"
trigger_run_periodically_on_records_meet_per_week:
title: "per week"
type: object
properties:
run_condition:
type: string
enum: [per_week]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_by_condition"
date_column_name:
type: string
filters:
$ref: "#/components/schemas/filters"
filter_conjunction:
type: string
notify_week_day:
type: integer
notify_week_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically_on_records"
trigger_run_periodically_on_records_meet_per_month:
title: "per month"
type: object
properties:
run_condition:
type: string
enum: [per_month]
trigger:
type: object
properties:
rule_name:
$ref: "#/components/schemas/rule_name"
table_id:
$ref: "#/components/schemas/table_id"
view_id:
$ref: "#/components/schemas/view_id"
condition:
$ref: "#/components/schemas/trigger_run_periodically_by_condition"
date_column_name:
type: string
filters:
$ref: "#/components/schemas/filters"
filter_conjunction:
type: string
notify_month_day:
type: integer
notify_month_hour:
type: integer
actions:
$ref: "#/components/schemas/action_run_periodically_on_records"
#################### trigger conditions ####################
#################### trigger components ####################
rule_name:
type: string
trigger_records_meet_specific_conditions_after_modification_condition:
type: string
enum: [filters_satisfy]
trigger_row_added_condition:
type: string
enum: [rows_added]
trigger_run_periodically_condition:
type: string
enum: [run_periodically]
trigger_run_periodically_by_condition:
type: string
enum: [run_periodically_by_condition]
############### Filter components ###############
column_key:
type: string
filter_term_string:
type: string
filter_term_date:
type: string
pattern: ^[0-9]{4}-((0[1-9])|(1[0-2]))?-(([0-2][0-9])|(3[01]))?$
filter_term_integer:
type: integer
filter_term_array:
type: array
items:
type: string
filter_term_empty:
type: string
enum: [""]
contains:
title: Contains
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [contains]
filter_term:
oneOf:
- $ref: "#/components/schemas/filter_term_string"
- $ref: "#/components/schemas/filter_term_array"
does_not_contain:
title: "Does not contain"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [does_not_contain]
filter_term:
oneOf:
- $ref: "#/components/schemas/filter_term_string"
- $ref: "#/components/schemas/filter_term_array"
is:
title: is
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [is]
filter_term:
$ref: "#/components/schemas/filter_term_string"
is_not:
title: "is not"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [is_not]
filter_term:
$ref: "#/components/schemas/filter_term_string"
is_empty:
title: "is empty"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [is_empty]
filter_term:
$ref: "#/components/schemas/filter_term_empty"
is_not_empty:
title: "is not empty"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [is_not_empty]
filter_term:
$ref: "#/components/schemas/filter_term_empty"
is_current_user_ID:
title: "Is current user id"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [is_current_user_ID]
filter_term:
$ref: "#/components/schemas/filter_term_empty"
equal:
title: equal
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [equal]
filter_term:
$ref: "#/components/schemas/filter_term_string"
not_equal:
title: "not equal"
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [not_equal]
filter_term:
$ref: "#/components/schemas/filter_term_string"
less:
title: less
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [less]
filter_term:
$ref: "#/components/schemas/filter_term_string"
greater:
title: greater
type: object
properties:
column_key:
$ref: "#/components/schemas/column_key"
filter_predicate:
type: string
enum: [greater]
filter_term:
$ref: "#/components/schemas/filter_term_string"
less_or_equal:
title: "less or equal"