@epilot/entity-client 4.34.1 → 4.34.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,1420 @@
1
+ {
2
+ "openapi": "3.0.2",
3
+ "info": {
4
+ "title": "",
5
+ "version": ""
6
+ },
7
+ "paths": {
8
+ "/v1/entity/schemas": {
9
+ "get": {
10
+ "operationId": "listSchemas",
11
+ "parameters": [
12
+ {
13
+ "in": "query",
14
+ "name": "unpublished"
15
+ }
16
+ ],
17
+ "responses": {}
18
+ }
19
+ },
20
+ "/v1/entity/schemas/{slug}": {
21
+ "get": {
22
+ "operationId": "getSchema",
23
+ "parameters": [
24
+ {
25
+ "$ref": "#/components/parameters/EntitySlugPathParam"
26
+ },
27
+ {
28
+ "in": "query",
29
+ "name": "id"
30
+ }
31
+ ],
32
+ "responses": {}
33
+ },
34
+ "put": {
35
+ "operationId": "putSchema",
36
+ "parameters": [
37
+ {
38
+ "$ref": "#/components/parameters/EntitySlugPathParam"
39
+ },
40
+ {
41
+ "in": "query",
42
+ "name": "draft"
43
+ }
44
+ ],
45
+ "requestBody": {
46
+ "content": {
47
+ "application/json": {}
48
+ }
49
+ },
50
+ "responses": {}
51
+ },
52
+ "delete": {
53
+ "operationId": "deleteSchema",
54
+ "parameters": [
55
+ {
56
+ "$ref": "#/components/parameters/EntitySlugPathParam"
57
+ }
58
+ ],
59
+ "responses": {}
60
+ }
61
+ },
62
+ "/v1/entity/schemas/{slug}/json/schema": {
63
+ "get": {
64
+ "operationId": "getJsonSchema",
65
+ "parameters": [
66
+ {
67
+ "$ref": "#/components/parameters/EntitySlugPathParam"
68
+ }
69
+ ],
70
+ "responses": {}
71
+ }
72
+ },
73
+ "/v1/entity/schemas/{slug}/json/example": {
74
+ "get": {
75
+ "operationId": "getSchemaExample",
76
+ "parameters": [
77
+ {
78
+ "$ref": "#/components/parameters/EntitySlugPathParam"
79
+ }
80
+ ],
81
+ "responses": {}
82
+ }
83
+ },
84
+ "/v1/entity/schemas/{slug}/versions": {
85
+ "get": {
86
+ "operationId": "getSchemaVersions",
87
+ "parameters": [
88
+ {
89
+ "$ref": "#/components/parameters/EntitySlugPathParam"
90
+ },
91
+ {
92
+ "in": "query",
93
+ "name": "versions_from"
94
+ },
95
+ {
96
+ "in": "query",
97
+ "name": "versions_size"
98
+ },
99
+ {
100
+ "in": "query",
101
+ "name": "drafts_from"
102
+ },
103
+ {
104
+ "in": "query",
105
+ "name": "drafts_size"
106
+ },
107
+ {
108
+ "in": "query",
109
+ "name": "fields",
110
+ "required": false,
111
+ "style": "form",
112
+ "explode": false
113
+ }
114
+ ],
115
+ "responses": {}
116
+ }
117
+ },
118
+ "/v1/entity/schemas/blueprints": {
119
+ "get": {
120
+ "operationId": "listSchemaBlueprints",
121
+ "responses": {}
122
+ }
123
+ },
124
+ "/v1/entity:search": {
125
+ "post": {
126
+ "operationId": "searchEntities",
127
+ "requestBody": {
128
+ "content": {
129
+ "application/json": {}
130
+ }
131
+ },
132
+ "responses": {}
133
+ }
134
+ },
135
+ "/v1/entity:list": {
136
+ "post": {
137
+ "operationId": "listEntities",
138
+ "requestBody": {
139
+ "content": {
140
+ "application/json": {}
141
+ }
142
+ },
143
+ "responses": {}
144
+ }
145
+ },
146
+ "/v1/entity/{slug}": {
147
+ "post": {
148
+ "operationId": "createEntity",
149
+ "parameters": [
150
+ {
151
+ "$ref": "#/components/parameters/EntitySlugPathParam"
152
+ },
153
+ {
154
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
155
+ },
156
+ {
157
+ "$ref": "#/components/parameters/FillActivityQueryParam"
158
+ },
159
+ {
160
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
161
+ },
162
+ {
163
+ "$ref": "#/components/parameters/ValidateEntityQueryParam"
164
+ }
165
+ ],
166
+ "requestBody": {
167
+ "content": {
168
+ "application/json": {}
169
+ }
170
+ },
171
+ "responses": {}
172
+ }
173
+ },
174
+ "/v1/entity/{slug}:validate": {
175
+ "post": {
176
+ "operationId": "validateEntity",
177
+ "parameters": [
178
+ {
179
+ "$ref": "#/components/parameters/EntitySlugPathPriceParam"
180
+ }
181
+ ],
182
+ "requestBody": {
183
+ "content": {
184
+ "application/json": {}
185
+ }
186
+ },
187
+ "responses": {}
188
+ }
189
+ },
190
+ "/v2/entity/{slug}:validate": {
191
+ "post": {
192
+ "operationId": "validateEntityV2",
193
+ "parameters": [
194
+ {
195
+ "$ref": "#/components/parameters/EntitySlugPathPriceParam"
196
+ }
197
+ ],
198
+ "requestBody": {
199
+ "content": {
200
+ "application/json": {}
201
+ }
202
+ },
203
+ "responses": {}
204
+ }
205
+ },
206
+ "/v1/entity/{slug}:upsert": {
207
+ "patch": {
208
+ "operationId": "upsertEntity",
209
+ "parameters": [
210
+ {
211
+ "$ref": "#/components/parameters/EntitySlugPathParam"
212
+ },
213
+ {
214
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
215
+ },
216
+ {
217
+ "$ref": "#/components/parameters/FillActivityQueryParam"
218
+ },
219
+ {
220
+ "$ref": "#/components/parameters/DryRunQueryParam"
221
+ },
222
+ {
223
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
224
+ },
225
+ {
226
+ "$ref": "#/components/parameters/ValidateEntityQueryParam"
227
+ },
228
+ {
229
+ "name": "strict",
230
+ "in": "query",
231
+ "required": false
232
+ }
233
+ ],
234
+ "requestBody": {
235
+ "content": {
236
+ "application/json": {}
237
+ }
238
+ },
239
+ "responses": {}
240
+ }
241
+ },
242
+ "/v2/entity/{slug}/{id}": {
243
+ "get": {
244
+ "operationId": "getEntityV2",
245
+ "parameters": [
246
+ {
247
+ "$ref": "#/components/parameters/EntityIdPathParam"
248
+ },
249
+ {
250
+ "$ref": "#/components/parameters/EntitySlugPathParam"
251
+ },
252
+ {
253
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
254
+ },
255
+ {
256
+ "in": "query",
257
+ "name": "fields",
258
+ "style": "form",
259
+ "explode": false
260
+ }
261
+ ],
262
+ "responses": {}
263
+ }
264
+ },
265
+ "/v1/entity/{slug}/{id}:restore": {
266
+ "patch": {
267
+ "operationId": "restoreEntity",
268
+ "parameters": [
269
+ {
270
+ "$ref": "#/components/parameters/EntityIdPathParam"
271
+ },
272
+ {
273
+ "$ref": "#/components/parameters/EntitySlugPathParam"
274
+ },
275
+ {
276
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
277
+ }
278
+ ],
279
+ "requestBody": {
280
+ "content": {
281
+ "application/json": {}
282
+ }
283
+ },
284
+ "responses": {}
285
+ }
286
+ },
287
+ "/v1/entity/{slug}/{id}": {
288
+ "get": {
289
+ "operationId": "getEntity",
290
+ "parameters": [
291
+ {
292
+ "$ref": "#/components/parameters/EntityIdPathParam"
293
+ },
294
+ {
295
+ "$ref": "#/components/parameters/EntitySlugPathParam"
296
+ },
297
+ {
298
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
299
+ }
300
+ ],
301
+ "responses": {}
302
+ },
303
+ "put": {
304
+ "operationId": "updateEntity",
305
+ "parameters": [
306
+ {
307
+ "$ref": "#/components/parameters/EntitySlugPathParam"
308
+ },
309
+ {
310
+ "$ref": "#/components/parameters/EntityIdPathParam"
311
+ },
312
+ {
313
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
314
+ },
315
+ {
316
+ "$ref": "#/components/parameters/FillActivityQueryParam"
317
+ },
318
+ {
319
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
320
+ },
321
+ {
322
+ "$ref": "#/components/parameters/ValidateEntityQueryParam"
323
+ }
324
+ ],
325
+ "requestBody": {
326
+ "content": {
327
+ "application/json": {}
328
+ }
329
+ },
330
+ "responses": {}
331
+ },
332
+ "patch": {
333
+ "operationId": "patchEntity",
334
+ "parameters": [
335
+ {
336
+ "$ref": "#/components/parameters/EntitySlugPathParam"
337
+ },
338
+ {
339
+ "$ref": "#/components/parameters/EntityIdPathParam"
340
+ },
341
+ {
342
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
343
+ },
344
+ {
345
+ "$ref": "#/components/parameters/FillActivityQueryParam"
346
+ },
347
+ {
348
+ "$ref": "#/components/parameters/DryRunQueryParam"
349
+ },
350
+ {
351
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
352
+ },
353
+ {
354
+ "$ref": "#/components/parameters/ValidateEntityQueryParam"
355
+ }
356
+ ],
357
+ "requestBody": {
358
+ "content": {
359
+ "application/json": {}
360
+ },
361
+ "required": true
362
+ },
363
+ "responses": {}
364
+ },
365
+ "delete": {
366
+ "operationId": "deleteEntity",
367
+ "parameters": [
368
+ {
369
+ "$ref": "#/components/parameters/EntitySlugPathParam"
370
+ },
371
+ {
372
+ "$ref": "#/components/parameters/EntityIdPathParam"
373
+ },
374
+ {
375
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
376
+ },
377
+ {
378
+ "in": "query",
379
+ "name": "purge"
380
+ }
381
+ ],
382
+ "responses": {}
383
+ }
384
+ },
385
+ "/v1/entity:autocomplete": {
386
+ "get": {
387
+ "operationId": "autocomplete",
388
+ "parameters": [
389
+ {
390
+ "name": "input",
391
+ "in": "query"
392
+ },
393
+ {
394
+ "name": "attribute",
395
+ "in": "query",
396
+ "required": true
397
+ },
398
+ {
399
+ "name": "slug",
400
+ "in": "query"
401
+ },
402
+ {
403
+ "name": "size",
404
+ "in": "query"
405
+ }
406
+ ],
407
+ "responses": {}
408
+ }
409
+ },
410
+ "/v1/entity/activity": {
411
+ "post": {
412
+ "operationId": "createActivity",
413
+ "parameters": [
414
+ {
415
+ "in": "query",
416
+ "name": "entities",
417
+ "style": "form",
418
+ "explode": false
419
+ }
420
+ ],
421
+ "requestBody": {
422
+ "content": {
423
+ "application/json": {}
424
+ }
425
+ },
426
+ "responses": {}
427
+ }
428
+ },
429
+ "/v1/entity/activity/{id}": {
430
+ "get": {
431
+ "operationId": "getActivity",
432
+ "parameters": [
433
+ {
434
+ "$ref": "#/components/parameters/ActivityIdPathParam"
435
+ },
436
+ {
437
+ "in": "query",
438
+ "name": "operations_size"
439
+ },
440
+ {
441
+ "in": "query",
442
+ "name": "operations_from"
443
+ }
444
+ ],
445
+ "responses": {}
446
+ }
447
+ },
448
+ "/v1/entity/activity/{id}:attach": {
449
+ "post": {
450
+ "operationId": "attachActivity",
451
+ "parameters": [
452
+ {
453
+ "$ref": "#/components/parameters/ActivityIdPathParam"
454
+ },
455
+ {
456
+ "in": "query",
457
+ "name": "entities",
458
+ "style": "form",
459
+ "explode": false
460
+ }
461
+ ],
462
+ "responses": {}
463
+ }
464
+ },
465
+ "/v1/entity/{slug}/{id}/activity": {
466
+ "get": {
467
+ "operationId": "getEntityActivityFeed",
468
+ "parameters": [
469
+ {
470
+ "$ref": "#/components/parameters/EntitySlugPathParam"
471
+ },
472
+ {
473
+ "$ref": "#/components/parameters/EntityIdPathParam"
474
+ },
475
+ {
476
+ "in": "query",
477
+ "name": "after"
478
+ },
479
+ {
480
+ "in": "query",
481
+ "name": "before"
482
+ },
483
+ {
484
+ "$ref": "#/components/parameters/FromPageQueryParam"
485
+ },
486
+ {
487
+ "in": "query",
488
+ "name": "size"
489
+ },
490
+ {
491
+ "in": "query",
492
+ "name": "type"
493
+ },
494
+ {
495
+ "in": "query",
496
+ "name": "include_relations"
497
+ }
498
+ ],
499
+ "responses": {}
500
+ }
501
+ },
502
+ "/v1/entity/{slug}/{id}/relations": {
503
+ "get": {
504
+ "operationId": "getRelations",
505
+ "parameters": [
506
+ {
507
+ "$ref": "#/components/parameters/EntitySlugPathParam"
508
+ },
509
+ {
510
+ "$ref": "#/components/parameters/EntityIdPathParam"
511
+ },
512
+ {
513
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
514
+ },
515
+ {
516
+ "$ref": "#/components/parameters/IncludeReverseQueryParam"
517
+ },
518
+ {
519
+ "$ref": "#/components/parameters/FromPageQueryParam"
520
+ },
521
+ {
522
+ "in": "query",
523
+ "name": "size",
524
+ "required": false
525
+ },
526
+ {
527
+ "$ref": "#/components/parameters/IncludeSchemasQueryParam"
528
+ },
529
+ {
530
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
531
+ }
532
+ ],
533
+ "responses": {}
534
+ },
535
+ "post": {
536
+ "operationId": "addRelations",
537
+ "parameters": [
538
+ {
539
+ "$ref": "#/components/parameters/EntitySlugPathParam"
540
+ },
541
+ {
542
+ "$ref": "#/components/parameters/EntityIdPathParam"
543
+ },
544
+ {
545
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
546
+ },
547
+ {
548
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
549
+ }
550
+ ],
551
+ "requestBody": {
552
+ "content": {
553
+ "application/json": {}
554
+ }
555
+ },
556
+ "responses": {}
557
+ },
558
+ "delete": {
559
+ "operationId": "removeRelations",
560
+ "parameters": [
561
+ {
562
+ "$ref": "#/components/parameters/EntitySlugPathParam"
563
+ },
564
+ {
565
+ "$ref": "#/components/parameters/EntityIdPathParam"
566
+ },
567
+ {
568
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
569
+ },
570
+ {
571
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
572
+ }
573
+ ],
574
+ "requestBody": {
575
+ "content": {
576
+ "application/json": {}
577
+ }
578
+ },
579
+ "responses": {}
580
+ }
581
+ },
582
+ "/v2/entity/{slug}/{id}/relations": {
583
+ "get": {
584
+ "operationId": "getRelationsV2",
585
+ "parameters": [
586
+ {
587
+ "$ref": "#/components/parameters/EntitySlugPathParam"
588
+ },
589
+ {
590
+ "$ref": "#/components/parameters/EntityIdPathParam"
591
+ },
592
+ {
593
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
594
+ },
595
+ {
596
+ "in": "query",
597
+ "name": "query"
598
+ },
599
+ {
600
+ "$ref": "#/components/parameters/IncludeReverseQueryParam"
601
+ },
602
+ {
603
+ "$ref": "#/components/parameters/FromPageQueryParam"
604
+ },
605
+ {
606
+ "in": "query",
607
+ "name": "size"
608
+ },
609
+ {
610
+ "in": "query",
611
+ "name": "fields"
612
+ }
613
+ ],
614
+ "responses": {}
615
+ }
616
+ },
617
+ "/v3/entity/{slug}/{id}/relations": {
618
+ "get": {
619
+ "operationId": "getRelationsV3",
620
+ "parameters": [
621
+ {
622
+ "$ref": "#/components/parameters/EntitySlugPathParam"
623
+ },
624
+ {
625
+ "$ref": "#/components/parameters/EntityIdPathParam"
626
+ },
627
+ {
628
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
629
+ },
630
+ {
631
+ "$ref": "#/components/parameters/IncludeReverseDeprecatedQueryParam"
632
+ },
633
+ {
634
+ "$ref": "#/components/parameters/FromPageQueryParam"
635
+ },
636
+ {
637
+ "in": "query",
638
+ "name": "size",
639
+ "required": false
640
+ },
641
+ {
642
+ "$ref": "#/components/parameters/IncludeSchemasQueryParam"
643
+ },
644
+ {
645
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
646
+ },
647
+ {
648
+ "$ref": "#/components/parameters/EntityRelationsModeQueryParam"
649
+ }
650
+ ],
651
+ "responses": {}
652
+ }
653
+ },
654
+ "/v2/entity/{slug}/{id}/relations/count": {
655
+ "get": {
656
+ "operationId": "getRelatedEntitiesCount",
657
+ "parameters": [
658
+ {
659
+ "$ref": "#/components/parameters/EntitySlugPathParam"
660
+ },
661
+ {
662
+ "$ref": "#/components/parameters/EntityIdPathParam"
663
+ },
664
+ {
665
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
666
+ }
667
+ ],
668
+ "responses": {}
669
+ }
670
+ },
671
+ "/v1/entity/{slug}/{id}/relations/{attribute}/{entity_id}": {
672
+ "put": {
673
+ "operationId": "updateRelation",
674
+ "parameters": [
675
+ {
676
+ "$ref": "#/components/parameters/EntitySlugPathParam"
677
+ },
678
+ {
679
+ "$ref": "#/components/parameters/EntityIdPathParam"
680
+ },
681
+ {
682
+ "in": "path",
683
+ "name": "attribute",
684
+ "required": true
685
+ },
686
+ {
687
+ "in": "path",
688
+ "name": "entity_id",
689
+ "required": true
690
+ },
691
+ {
692
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
693
+ },
694
+ {
695
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
696
+ }
697
+ ],
698
+ "requestBody": {
699
+ "content": {
700
+ "application/json": {}
701
+ }
702
+ },
703
+ "responses": {}
704
+ },
705
+ "delete": {
706
+ "operationId": "deleteRelation",
707
+ "parameters": [
708
+ {
709
+ "$ref": "#/components/parameters/EntitySlugPathParam"
710
+ },
711
+ {
712
+ "$ref": "#/components/parameters/EntityIdPathParam"
713
+ },
714
+ {
715
+ "in": "path",
716
+ "name": "attribute",
717
+ "required": true
718
+ },
719
+ {
720
+ "in": "path",
721
+ "name": "entity_id",
722
+ "required": true
723
+ },
724
+ {
725
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
726
+ },
727
+ {
728
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
729
+ }
730
+ ],
731
+ "responses": {}
732
+ }
733
+ },
734
+ "/v1/entity:export": {
735
+ "post": {
736
+ "operationId": "exportEntities",
737
+ "parameters": [
738
+ {
739
+ "in": "query",
740
+ "name": "job_id"
741
+ },
742
+ {
743
+ "in": "query",
744
+ "name": "is_template"
745
+ },
746
+ {
747
+ "in": "query",
748
+ "name": "language"
749
+ }
750
+ ],
751
+ "requestBody": {
752
+ "content": {
753
+ "application/json": {}
754
+ }
755
+ },
756
+ "responses": {}
757
+ }
758
+ },
759
+ "/v1/entity:import": {
760
+ "post": {
761
+ "operationId": "importEntities",
762
+ "parameters": [
763
+ {
764
+ "in": "query",
765
+ "name": "job_id"
766
+ }
767
+ ],
768
+ "requestBody": {
769
+ "content": {
770
+ "application/json": {}
771
+ }
772
+ },
773
+ "responses": {}
774
+ }
775
+ },
776
+ "/v1/entity/views": {
777
+ "get": {
778
+ "operationId": "listSavedViews",
779
+ "parameters": [
780
+ {
781
+ "in": "query",
782
+ "name": "slug",
783
+ "required": false
784
+ },
785
+ {
786
+ "in": "query",
787
+ "name": "sort",
788
+ "required": false
789
+ },
790
+ {
791
+ "in": "query",
792
+ "name": "from",
793
+ "required": false
794
+ },
795
+ {
796
+ "in": "query",
797
+ "name": "size",
798
+ "required": false
799
+ },
800
+ {
801
+ "in": "query",
802
+ "name": "fields",
803
+ "required": false
804
+ }
805
+ ],
806
+ "responses": {}
807
+ }
808
+ },
809
+ "/v1/entity/view": {
810
+ "post": {
811
+ "operationId": "createSavedView",
812
+ "requestBody": {
813
+ "content": {
814
+ "application/json": {}
815
+ }
816
+ },
817
+ "responses": {}
818
+ }
819
+ },
820
+ "/v1/entity/view/{id}": {
821
+ "get": {
822
+ "operationId": "getSavedView",
823
+ "parameters": [
824
+ {
825
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
826
+ }
827
+ ],
828
+ "responses": {}
829
+ },
830
+ "put": {
831
+ "operationId": "updateSavedView",
832
+ "parameters": [
833
+ {
834
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
835
+ }
836
+ ],
837
+ "requestBody": {
838
+ "content": {
839
+ "application/json": {}
840
+ }
841
+ },
842
+ "responses": {}
843
+ },
844
+ "patch": {
845
+ "operationId": "patchSavedView",
846
+ "parameters": [
847
+ {
848
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
849
+ }
850
+ ],
851
+ "requestBody": {
852
+ "content": {
853
+ "application/json": {}
854
+ }
855
+ },
856
+ "responses": {}
857
+ },
858
+ "delete": {
859
+ "operationId": "deleteSavedView",
860
+ "parameters": [
861
+ {
862
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
863
+ }
864
+ ],
865
+ "responses": {}
866
+ }
867
+ },
868
+ "/v1/entity/views/favorites": {
869
+ "get": {
870
+ "operationId": "listFavoriteViewsForUser",
871
+ "responses": {}
872
+ }
873
+ },
874
+ "/v1/entity/taxonomies": {
875
+ "get": {
876
+ "operationId": "listTaxonomies",
877
+ "parameters": [
878
+ {
879
+ "in": "query",
880
+ "name": "include_disabled"
881
+ }
882
+ ],
883
+ "responses": {}
884
+ },
885
+ "post": {
886
+ "operationId": "createTaxonomy",
887
+ "requestBody": {
888
+ "content": {
889
+ "application/json": {}
890
+ }
891
+ },
892
+ "responses": {}
893
+ }
894
+ },
895
+ "/v1/entity/taxonomies/{taxonomySlug}": {
896
+ "get": {
897
+ "operationId": "getTaxonomy",
898
+ "parameters": [
899
+ {
900
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
901
+ }
902
+ ],
903
+ "responses": {}
904
+ },
905
+ "put": {
906
+ "operationId": "updateTaxonomy",
907
+ "parameters": [
908
+ {
909
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
910
+ }
911
+ ],
912
+ "requestBody": {
913
+ "content": {
914
+ "application/json": {}
915
+ }
916
+ },
917
+ "responses": {}
918
+ },
919
+ "delete": {
920
+ "operationId": "deleteTaxonomy",
921
+ "parameters": [
922
+ {
923
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
924
+ },
925
+ {
926
+ "in": "query",
927
+ "name": "permanent"
928
+ }
929
+ ],
930
+ "responses": {}
931
+ }
932
+ },
933
+ "/v1/entity/taxonomies/{taxonomySlug}/classifications": {
934
+ "post": {
935
+ "operationId": "updateClassificationsForTaxonomy",
936
+ "parameters": [
937
+ {
938
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
939
+ }
940
+ ],
941
+ "requestBody": {
942
+ "content": {
943
+ "application/json": {}
944
+ }
945
+ },
946
+ "responses": {}
947
+ }
948
+ },
949
+ "/v2/entity/taxonomies/classifications/{classificationSlug}": {
950
+ "get": {
951
+ "operationId": "getTaxonomyClassification",
952
+ "parameters": [
953
+ {
954
+ "$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
955
+ }
956
+ ],
957
+ "responses": {}
958
+ },
959
+ "put": {
960
+ "operationId": "updateTaxonomyClassification",
961
+ "parameters": [
962
+ {
963
+ "$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
964
+ }
965
+ ],
966
+ "requestBody": {
967
+ "content": {
968
+ "application/json": {}
969
+ }
970
+ },
971
+ "responses": {}
972
+ },
973
+ "delete": {
974
+ "operationId": "deleteTaxonomyClassification",
975
+ "parameters": [
976
+ {
977
+ "$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
978
+ }
979
+ ],
980
+ "responses": {}
981
+ }
982
+ },
983
+ "/v1/entity/taxonomies/{taxonomySlug}:autocomplete": {
984
+ "get": {
985
+ "operationId": "taxonomyAutocomplete",
986
+ "parameters": [
987
+ {
988
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
989
+ },
990
+ {
991
+ "in": "query",
992
+ "name": "query"
993
+ },
994
+ {
995
+ "in": "query",
996
+ "name": "size"
997
+ }
998
+ ],
999
+ "responses": {}
1000
+ }
1001
+ },
1002
+ "/v1/entity/taxonomies/classifications:search": {
1003
+ "post": {
1004
+ "operationId": "taxonomiesClassificationsSearch",
1005
+ "parameters": [
1006
+ {
1007
+ "$ref": "#/components/parameters/TaxonomySlugQueryParamOptional"
1008
+ },
1009
+ {
1010
+ "in": "query",
1011
+ "name": "query"
1012
+ },
1013
+ {
1014
+ "in": "query",
1015
+ "name": "archived"
1016
+ }
1017
+ ],
1018
+ "requestBody": {
1019
+ "content": {
1020
+ "application/json": {}
1021
+ }
1022
+ },
1023
+ "responses": {}
1024
+ }
1025
+ },
1026
+ "/v1/entity/schemas/{slug}/taxonomy/{taxonomySlug}": {
1027
+ "get": {
1028
+ "operationId": "listTaxonomyClassificationsForSchema",
1029
+ "parameters": [
1030
+ {
1031
+ "$ref": "#/components/parameters/EntitySlugPathParam"
1032
+ },
1033
+ {
1034
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
1035
+ },
1036
+ {
1037
+ "in": "query",
1038
+ "name": "query"
1039
+ },
1040
+ {
1041
+ "in": "query",
1042
+ "name": "size"
1043
+ }
1044
+ ],
1045
+ "responses": {}
1046
+ }
1047
+ },
1048
+ "/v1/entity/taxonomies/bulk-jobs": {
1049
+ "get": {
1050
+ "operationId": "getTaxonomyBulkActionJobs",
1051
+ "parameters": [
1052
+ {
1053
+ "in": "query",
1054
+ "name": "status"
1055
+ }
1056
+ ],
1057
+ "responses": {}
1058
+ }
1059
+ },
1060
+ "/v1/entity/taxonomies/bulk-jobs/{job_id}": {
1061
+ "get": {
1062
+ "operationId": "getTaxonomyBulkActionJobById",
1063
+ "parameters": [
1064
+ {
1065
+ "in": "path",
1066
+ "name": "job_id",
1067
+ "required": true
1068
+ }
1069
+ ],
1070
+ "responses": {}
1071
+ }
1072
+ },
1073
+ "/v1/entity/taxonomies/classifications:move": {
1074
+ "post": {
1075
+ "operationId": "bulkMoveClassifications",
1076
+ "requestBody": {
1077
+ "content": {
1078
+ "application/json": {}
1079
+ }
1080
+ },
1081
+ "responses": {}
1082
+ }
1083
+ },
1084
+ "/v1/entity/taxonomies/classifications:delete": {
1085
+ "post": {
1086
+ "operationId": "bulkDeleteClassifications",
1087
+ "requestBody": {
1088
+ "content": {
1089
+ "application/json": {}
1090
+ }
1091
+ },
1092
+ "responses": {}
1093
+ }
1094
+ },
1095
+ "/v1/entity/schemas/attributes": {
1096
+ "post": {
1097
+ "operationId": "createSchemaAttribute",
1098
+ "requestBody": {
1099
+ "content": {
1100
+ "application/json": {}
1101
+ }
1102
+ },
1103
+ "responses": {}
1104
+ }
1105
+ },
1106
+ "/v1/entity/schemas/attributes/{composite_id}": {
1107
+ "get": {
1108
+ "operationId": "getSchemaAttribute",
1109
+ "parameters": [
1110
+ {
1111
+ "name": "composite_id",
1112
+ "in": "path",
1113
+ "required": true
1114
+ }
1115
+ ],
1116
+ "responses": {}
1117
+ },
1118
+ "put": {
1119
+ "operationId": "putSchemaAttribute",
1120
+ "parameters": [
1121
+ {
1122
+ "name": "composite_id",
1123
+ "in": "path",
1124
+ "required": true
1125
+ }
1126
+ ],
1127
+ "requestBody": {
1128
+ "content": {
1129
+ "application/json": {}
1130
+ }
1131
+ },
1132
+ "responses": {}
1133
+ },
1134
+ "delete": {
1135
+ "operationId": "deleteSchemaAttribute",
1136
+ "parameters": [
1137
+ {
1138
+ "name": "composite_id",
1139
+ "in": "path",
1140
+ "required": true
1141
+ }
1142
+ ],
1143
+ "responses": {}
1144
+ }
1145
+ },
1146
+ "/v1/entity/schemas/capabilities": {
1147
+ "post": {
1148
+ "operationId": "createSchemaCapability",
1149
+ "requestBody": {
1150
+ "content": {
1151
+ "application/json": {}
1152
+ }
1153
+ },
1154
+ "responses": {}
1155
+ }
1156
+ },
1157
+ "/v1/entity/schemas/capabilities/{composite_id}": {
1158
+ "get": {
1159
+ "operationId": "getSchemaCapability",
1160
+ "parameters": [
1161
+ {
1162
+ "name": "composite_id",
1163
+ "in": "path",
1164
+ "required": true
1165
+ }
1166
+ ],
1167
+ "responses": {}
1168
+ },
1169
+ "put": {
1170
+ "operationId": "putSchemaCapability",
1171
+ "parameters": [
1172
+ {
1173
+ "name": "composite_id",
1174
+ "in": "path",
1175
+ "required": true
1176
+ }
1177
+ ],
1178
+ "requestBody": {
1179
+ "content": {
1180
+ "application/json": {}
1181
+ }
1182
+ },
1183
+ "responses": {}
1184
+ },
1185
+ "delete": {
1186
+ "operationId": "deleteSchemaCapability",
1187
+ "parameters": [
1188
+ {
1189
+ "name": "composite_id",
1190
+ "in": "path",
1191
+ "required": true
1192
+ }
1193
+ ],
1194
+ "responses": {}
1195
+ }
1196
+ },
1197
+ "/v1/entity/schemas/group": {
1198
+ "post": {
1199
+ "operationId": "createSchemaGroup",
1200
+ "requestBody": {
1201
+ "content": {
1202
+ "application/json": {}
1203
+ }
1204
+ },
1205
+ "responses": {}
1206
+ }
1207
+ },
1208
+ "/v1/entity/schemas/group/{composite_id}": {
1209
+ "get": {
1210
+ "operationId": "getSchemaGroup",
1211
+ "parameters": [
1212
+ {
1213
+ "name": "composite_id",
1214
+ "in": "path",
1215
+ "required": true
1216
+ }
1217
+ ],
1218
+ "responses": {}
1219
+ },
1220
+ "put": {
1221
+ "operationId": "putSchemaGroup",
1222
+ "parameters": [
1223
+ {
1224
+ "name": "composite_id",
1225
+ "in": "path",
1226
+ "required": true
1227
+ }
1228
+ ],
1229
+ "requestBody": {
1230
+ "content": {
1231
+ "application/json": {}
1232
+ }
1233
+ },
1234
+ "responses": {}
1235
+ },
1236
+ "delete": {
1237
+ "operationId": "deleteSchemaGroup",
1238
+ "parameters": [
1239
+ {
1240
+ "name": "composite_id",
1241
+ "in": "path",
1242
+ "required": true
1243
+ }
1244
+ ],
1245
+ "responses": {}
1246
+ }
1247
+ },
1248
+ "/v1/entity/schemas/headline": {
1249
+ "post": {
1250
+ "operationId": "createSchemaGroupHeadline",
1251
+ "requestBody": {
1252
+ "content": {
1253
+ "application/json": {}
1254
+ }
1255
+ },
1256
+ "responses": {}
1257
+ }
1258
+ },
1259
+ "/v1/entity/schemas/headline/{composite_id}": {
1260
+ "get": {
1261
+ "operationId": "getSchemaGroupHeadline",
1262
+ "parameters": [
1263
+ {
1264
+ "name": "composite_id",
1265
+ "in": "path",
1266
+ "required": true
1267
+ }
1268
+ ],
1269
+ "responses": {}
1270
+ },
1271
+ "put": {
1272
+ "operationId": "putSchemaGroupHeadline",
1273
+ "parameters": [
1274
+ {
1275
+ "name": "composite_id",
1276
+ "in": "path",
1277
+ "required": true
1278
+ }
1279
+ ],
1280
+ "requestBody": {
1281
+ "content": {
1282
+ "application/json": {}
1283
+ }
1284
+ },
1285
+ "responses": {}
1286
+ },
1287
+ "delete": {
1288
+ "operationId": "deleteSchemaGroupHeadline",
1289
+ "parameters": [
1290
+ {
1291
+ "name": "composite_id",
1292
+ "in": "path",
1293
+ "required": true
1294
+ }
1295
+ ],
1296
+ "responses": {}
1297
+ }
1298
+ }
1299
+ },
1300
+ "components": {
1301
+ "parameters": {
1302
+ "EntityIdPathParam": {
1303
+ "name": "id",
1304
+ "in": "path",
1305
+ "required": true
1306
+ },
1307
+ "EntitySlugPathParam": {
1308
+ "name": "slug",
1309
+ "in": "path",
1310
+ "required": true
1311
+ },
1312
+ "EntitySlugPathPriceParam": {
1313
+ "name": "slug",
1314
+ "in": "path",
1315
+ "required": true
1316
+ },
1317
+ "TaxonomySlugQueryParam": {
1318
+ "name": "taxonomySlug",
1319
+ "in": "query",
1320
+ "required": true
1321
+ },
1322
+ "TaxonomySlugPathParam": {
1323
+ "name": "taxonomySlug",
1324
+ "in": "path",
1325
+ "required": true
1326
+ },
1327
+ "TaxonomySlugQueryParamOptional": {
1328
+ "name": "taxonomySlug",
1329
+ "in": "query"
1330
+ },
1331
+ "TaxonomyClassificationSlugPathParam": {
1332
+ "name": "classificationSlug",
1333
+ "in": "path",
1334
+ "required": true
1335
+ },
1336
+ "SavedViewIdPathParam": {
1337
+ "name": "id",
1338
+ "in": "path",
1339
+ "required": true
1340
+ },
1341
+ "AsyncOperationQueryParam": {
1342
+ "name": "async",
1343
+ "in": "query",
1344
+ "required": false
1345
+ },
1346
+ "HydrateEntitiesQueryParam": {
1347
+ "name": "hydrate",
1348
+ "in": "query"
1349
+ },
1350
+ "ActivityIdQueryParam": {
1351
+ "name": "activity_id",
1352
+ "in": "query",
1353
+ "required": false
1354
+ },
1355
+ "ActivityIdPathParam": {
1356
+ "name": "id",
1357
+ "in": "path",
1358
+ "required": true
1359
+ },
1360
+ "FromPageQueryParam": {
1361
+ "name": "from",
1362
+ "in": "query"
1363
+ },
1364
+ "IncludeReverseDeprecatedQueryParam": {
1365
+ "name": "include_reverse",
1366
+ "in": "query",
1367
+ "deprecated": true
1368
+ },
1369
+ "IncludeReverseQueryParam": {
1370
+ "name": "include_reverse",
1371
+ "in": "query"
1372
+ },
1373
+ "IncludeSchemasQueryParam": {
1374
+ "name": "include_schemas",
1375
+ "in": "query",
1376
+ "required": false,
1377
+ "style": "form",
1378
+ "explode": false
1379
+ },
1380
+ "ExcludeSchemasQueryParam": {
1381
+ "name": "exclude_schemas",
1382
+ "in": "query",
1383
+ "required": false,
1384
+ "style": "form",
1385
+ "explode": false
1386
+ },
1387
+ "EntityRelationsModeQueryParam": {
1388
+ "name": "mode",
1389
+ "in": "query",
1390
+ "required": false
1391
+ },
1392
+ "DryRunQueryParam": {
1393
+ "name": "dry_run",
1394
+ "in": "query",
1395
+ "required": false
1396
+ },
1397
+ "FillActivityQueryParam": {
1398
+ "name": "fill_activity",
1399
+ "in": "query",
1400
+ "required": false
1401
+ },
1402
+ "ValidateEntityQueryParam": {
1403
+ "name": "validate",
1404
+ "in": "query"
1405
+ }
1406
+ },
1407
+ "responses": {
1408
+ "NotFoundError": {
1409
+ "content": {
1410
+ "application/json": {}
1411
+ }
1412
+ }
1413
+ }
1414
+ },
1415
+ "servers": [
1416
+ {
1417
+ "url": "https://entity.sls.epilot.io"
1418
+ }
1419
+ ]
1420
+ }