@epilot/entity-client 4.23.0 → 4.25.0-alpha.0

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,1069 @@
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
+ }
18
+ },
19
+ "/v1/entity/schemas/{slug}": {
20
+ "get": {
21
+ "operationId": "getSchema",
22
+ "parameters": [
23
+ {
24
+ "$ref": "#/components/parameters/EntitySlugPathParam"
25
+ },
26
+ {
27
+ "in": "query",
28
+ "name": "id"
29
+ }
30
+ ]
31
+ },
32
+ "put": {
33
+ "operationId": "putSchema",
34
+ "parameters": [
35
+ {
36
+ "$ref": "#/components/parameters/EntitySlugPathParam"
37
+ },
38
+ {
39
+ "in": "query",
40
+ "name": "draft"
41
+ }
42
+ ],
43
+ "requestBody": {
44
+ "content": {
45
+ "application/json": {}
46
+ }
47
+ }
48
+ },
49
+ "delete": {
50
+ "operationId": "deleteSchema",
51
+ "parameters": [
52
+ {
53
+ "$ref": "#/components/parameters/EntitySlugPathParam"
54
+ }
55
+ ]
56
+ }
57
+ },
58
+ "/v1/entity/schemas/{slug}/versions": {
59
+ "get": {
60
+ "operationId": "getSchemaVersions",
61
+ "parameters": [
62
+ {
63
+ "$ref": "#/components/parameters/EntitySlugPathParam"
64
+ },
65
+ {
66
+ "in": "query",
67
+ "name": "versions_from"
68
+ },
69
+ {
70
+ "in": "query",
71
+ "name": "versions_size"
72
+ },
73
+ {
74
+ "in": "query",
75
+ "name": "drafts_from"
76
+ },
77
+ {
78
+ "in": "query",
79
+ "name": "drafts_size"
80
+ },
81
+ {
82
+ "in": "query",
83
+ "name": "fields",
84
+ "required": false,
85
+ "style": "form",
86
+ "explode": false
87
+ }
88
+ ]
89
+ }
90
+ },
91
+ "/v1/entity/schemas/blueprints": {
92
+ "get": {
93
+ "operationId": "listSchemaBlueprints"
94
+ }
95
+ },
96
+ "/v1/entity/schemas/{slug}/taxonomy/{taxonomySlug}": {
97
+ "get": {
98
+ "operationId": "listTaxonomyClassificationsForSchema",
99
+ "parameters": [
100
+ {
101
+ "$ref": "#/components/parameters/EntitySlugPathParam"
102
+ },
103
+ {
104
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
105
+ },
106
+ {
107
+ "in": "query",
108
+ "name": "query"
109
+ },
110
+ {
111
+ "in": "query",
112
+ "name": "size"
113
+ }
114
+ ]
115
+ }
116
+ },
117
+ "/v1/entity:search": {
118
+ "post": {
119
+ "operationId": "searchEntities",
120
+ "requestBody": {
121
+ "content": {
122
+ "application/json": {}
123
+ }
124
+ }
125
+ }
126
+ },
127
+ "/v1/entity:list": {
128
+ "post": {
129
+ "operationId": "listEntities",
130
+ "requestBody": {
131
+ "content": {
132
+ "application/json": {}
133
+ }
134
+ }
135
+ }
136
+ },
137
+ "/v1/entity/{slug}": {
138
+ "post": {
139
+ "operationId": "createEntity",
140
+ "parameters": [
141
+ {
142
+ "$ref": "#/components/parameters/EntitySlugPathParam"
143
+ },
144
+ {
145
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
146
+ },
147
+ {
148
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
149
+ }
150
+ ],
151
+ "requestBody": {
152
+ "content": {
153
+ "application/json": {}
154
+ }
155
+ }
156
+ }
157
+ },
158
+ "/v1/entity/{slug}:validate": {
159
+ "post": {
160
+ "operationId": "validateEntity",
161
+ "parameters": [
162
+ {
163
+ "$ref": "#/components/parameters/EntitySlugPathPriceParam"
164
+ }
165
+ ],
166
+ "requestBody": {
167
+ "content": {
168
+ "application/json": {}
169
+ }
170
+ }
171
+ }
172
+ },
173
+ "/v1/entity/{slug}:upsert": {
174
+ "patch": {
175
+ "operationId": "upsertEntity",
176
+ "parameters": [
177
+ {
178
+ "$ref": "#/components/parameters/EntitySlugPathParam"
179
+ },
180
+ {
181
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
182
+ },
183
+ {
184
+ "$ref": "#/components/parameters/DryRunQueryParam"
185
+ },
186
+ {
187
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
188
+ }
189
+ ],
190
+ "requestBody": {
191
+ "content": {
192
+ "application/json": {}
193
+ }
194
+ }
195
+ }
196
+ },
197
+ "/v2/entity/{slug}/{id}": {
198
+ "get": {
199
+ "operationId": "getEntityV2",
200
+ "parameters": [
201
+ {
202
+ "$ref": "#/components/parameters/EntityIdPathParam"
203
+ },
204
+ {
205
+ "$ref": "#/components/parameters/EntitySlugPathParam"
206
+ },
207
+ {
208
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
209
+ },
210
+ {
211
+ "in": "query",
212
+ "name": "fields",
213
+ "style": "form",
214
+ "explode": false
215
+ }
216
+ ]
217
+ }
218
+ },
219
+ "/v1/entity/{slug}/{id}": {
220
+ "get": {
221
+ "operationId": "getEntity",
222
+ "parameters": [
223
+ {
224
+ "$ref": "#/components/parameters/EntityIdPathParam"
225
+ },
226
+ {
227
+ "$ref": "#/components/parameters/EntitySlugPathParam"
228
+ },
229
+ {
230
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
231
+ }
232
+ ]
233
+ },
234
+ "put": {
235
+ "operationId": "updateEntity",
236
+ "parameters": [
237
+ {
238
+ "$ref": "#/components/parameters/EntitySlugPathParam"
239
+ },
240
+ {
241
+ "$ref": "#/components/parameters/EntityIdPathParam"
242
+ },
243
+ {
244
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
245
+ },
246
+ {
247
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
248
+ }
249
+ ],
250
+ "requestBody": {
251
+ "content": {
252
+ "application/json": {}
253
+ }
254
+ }
255
+ },
256
+ "patch": {
257
+ "operationId": "patchEntity",
258
+ "parameters": [
259
+ {
260
+ "$ref": "#/components/parameters/EntitySlugPathParam"
261
+ },
262
+ {
263
+ "$ref": "#/components/parameters/EntityIdPathParam"
264
+ },
265
+ {
266
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
267
+ },
268
+ {
269
+ "$ref": "#/components/parameters/DryRunQueryParam"
270
+ },
271
+ {
272
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
273
+ }
274
+ ],
275
+ "requestBody": {
276
+ "content": {
277
+ "application/json": {}
278
+ },
279
+ "required": true
280
+ }
281
+ },
282
+ "delete": {
283
+ "operationId": "deleteEntity",
284
+ "parameters": [
285
+ {
286
+ "$ref": "#/components/parameters/EntitySlugPathParam"
287
+ },
288
+ {
289
+ "$ref": "#/components/parameters/EntityIdPathParam"
290
+ },
291
+ {
292
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
293
+ }
294
+ ]
295
+ }
296
+ },
297
+ "/v1/entity:autocomplete": {
298
+ "get": {
299
+ "operationId": "autocomplete",
300
+ "parameters": [
301
+ {
302
+ "name": "input",
303
+ "in": "query"
304
+ },
305
+ {
306
+ "name": "attribute",
307
+ "in": "query",
308
+ "required": true
309
+ },
310
+ {
311
+ "name": "slug",
312
+ "in": "query"
313
+ },
314
+ {
315
+ "name": "size",
316
+ "in": "query"
317
+ }
318
+ ]
319
+ }
320
+ },
321
+ "/v1/entity/activity": {
322
+ "post": {
323
+ "operationId": "createActivity",
324
+ "parameters": [
325
+ {
326
+ "in": "query",
327
+ "name": "entities",
328
+ "style": "form",
329
+ "explode": false
330
+ }
331
+ ],
332
+ "requestBody": {
333
+ "content": {
334
+ "application/json": {}
335
+ }
336
+ }
337
+ }
338
+ },
339
+ "/v1/entity/activity/{id}": {
340
+ "get": {
341
+ "operationId": "getActivity",
342
+ "parameters": [
343
+ {
344
+ "$ref": "#/components/parameters/ActivityIdPathParam"
345
+ },
346
+ {
347
+ "in": "query",
348
+ "name": "operations_size"
349
+ },
350
+ {
351
+ "in": "query",
352
+ "name": "operations_from"
353
+ }
354
+ ]
355
+ }
356
+ },
357
+ "/v1/entity/activity/{id}:attach": {
358
+ "post": {
359
+ "operationId": "attachActivity",
360
+ "parameters": [
361
+ {
362
+ "$ref": "#/components/parameters/ActivityIdPathParam"
363
+ },
364
+ {
365
+ "in": "query",
366
+ "name": "entities",
367
+ "style": "form",
368
+ "explode": false
369
+ }
370
+ ]
371
+ }
372
+ },
373
+ "/v1/entity/{slug}/{id}/activity": {
374
+ "get": {
375
+ "operationId": "getEntityActivityFeed",
376
+ "parameters": [
377
+ {
378
+ "$ref": "#/components/parameters/EntitySlugPathParam"
379
+ },
380
+ {
381
+ "$ref": "#/components/parameters/EntityIdPathParam"
382
+ },
383
+ {
384
+ "in": "query",
385
+ "name": "after"
386
+ },
387
+ {
388
+ "in": "query",
389
+ "name": "before"
390
+ },
391
+ {
392
+ "$ref": "#/components/parameters/FromPageQueryParam"
393
+ },
394
+ {
395
+ "in": "query",
396
+ "name": "size"
397
+ },
398
+ {
399
+ "in": "query",
400
+ "name": "type"
401
+ },
402
+ {
403
+ "in": "query",
404
+ "name": "include_relations"
405
+ }
406
+ ]
407
+ }
408
+ },
409
+ "/v1/entity/{slug}/{id}/relations": {
410
+ "get": {
411
+ "operationId": "getRelations",
412
+ "parameters": [
413
+ {
414
+ "$ref": "#/components/parameters/EntitySlugPathParam"
415
+ },
416
+ {
417
+ "$ref": "#/components/parameters/EntityIdPathParam"
418
+ },
419
+ {
420
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
421
+ },
422
+ {
423
+ "$ref": "#/components/parameters/IncludeReverseQueryParam"
424
+ },
425
+ {
426
+ "$ref": "#/components/parameters/FromPageQueryParam"
427
+ },
428
+ {
429
+ "in": "query",
430
+ "name": "size",
431
+ "required": false
432
+ },
433
+ {
434
+ "$ref": "#/components/parameters/IncludeSchemasQueryParam"
435
+ },
436
+ {
437
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
438
+ }
439
+ ]
440
+ },
441
+ "post": {
442
+ "operationId": "addRelations",
443
+ "parameters": [
444
+ {
445
+ "$ref": "#/components/parameters/EntitySlugPathParam"
446
+ },
447
+ {
448
+ "$ref": "#/components/parameters/EntityIdPathParam"
449
+ },
450
+ {
451
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
452
+ },
453
+ {
454
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
455
+ }
456
+ ],
457
+ "requestBody": {
458
+ "content": {
459
+ "application/json": {}
460
+ }
461
+ }
462
+ }
463
+ },
464
+ "/v2/entity/{slug}/{id}/relations": {
465
+ "get": {
466
+ "operationId": "getRelationsV2",
467
+ "parameters": [
468
+ {
469
+ "$ref": "#/components/parameters/EntitySlugPathParam"
470
+ },
471
+ {
472
+ "$ref": "#/components/parameters/EntityIdPathParam"
473
+ },
474
+ {
475
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
476
+ },
477
+ {
478
+ "in": "query",
479
+ "name": "query"
480
+ },
481
+ {
482
+ "$ref": "#/components/parameters/IncludeReverseQueryParam"
483
+ },
484
+ {
485
+ "$ref": "#/components/parameters/FromPageQueryParam"
486
+ },
487
+ {
488
+ "in": "query",
489
+ "name": "size"
490
+ },
491
+ {
492
+ "in": "query",
493
+ "name": "fields"
494
+ }
495
+ ]
496
+ }
497
+ },
498
+ "/v3/entity/{slug}/{id}/relations": {
499
+ "get": {
500
+ "operationId": "getRelationsV3",
501
+ "parameters": [
502
+ {
503
+ "$ref": "#/components/parameters/EntitySlugPathParam"
504
+ },
505
+ {
506
+ "$ref": "#/components/parameters/EntityIdPathParam"
507
+ },
508
+ {
509
+ "$ref": "#/components/parameters/HydrateEntitiesQueryParam"
510
+ },
511
+ {
512
+ "$ref": "#/components/parameters/IncludeReverseDeprecatedQueryParam"
513
+ },
514
+ {
515
+ "$ref": "#/components/parameters/FromPageQueryParam"
516
+ },
517
+ {
518
+ "in": "query",
519
+ "name": "size",
520
+ "required": false
521
+ },
522
+ {
523
+ "$ref": "#/components/parameters/IncludeSchemasQueryParam"
524
+ },
525
+ {
526
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
527
+ },
528
+ {
529
+ "$ref": "#/components/parameters/EntityRelationsModeQueryParam"
530
+ }
531
+ ]
532
+ }
533
+ },
534
+ "/v2/entity/{slug}/{id}/relations/count": {
535
+ "get": {
536
+ "operationId": "getRelatedEntitiesCount",
537
+ "parameters": [
538
+ {
539
+ "$ref": "#/components/parameters/EntitySlugPathParam"
540
+ },
541
+ {
542
+ "$ref": "#/components/parameters/EntityIdPathParam"
543
+ },
544
+ {
545
+ "$ref": "#/components/parameters/ExcludeSchemasQueryParam"
546
+ }
547
+ ]
548
+ }
549
+ },
550
+ "/v1/entity/{slug}/{id}/relations/{attribute}/{entity_id}": {
551
+ "put": {
552
+ "operationId": "updateRelation",
553
+ "parameters": [
554
+ {
555
+ "$ref": "#/components/parameters/EntitySlugPathParam"
556
+ },
557
+ {
558
+ "$ref": "#/components/parameters/EntityIdPathParam"
559
+ },
560
+ {
561
+ "in": "path",
562
+ "name": "attribute",
563
+ "required": true
564
+ },
565
+ {
566
+ "in": "path",
567
+ "name": "entity_id",
568
+ "required": true
569
+ },
570
+ {
571
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
572
+ },
573
+ {
574
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
575
+ }
576
+ ],
577
+ "requestBody": {
578
+ "content": {
579
+ "application/json": {}
580
+ }
581
+ }
582
+ },
583
+ "delete": {
584
+ "operationId": "deleteRelation",
585
+ "parameters": [
586
+ {
587
+ "$ref": "#/components/parameters/EntitySlugPathParam"
588
+ },
589
+ {
590
+ "$ref": "#/components/parameters/EntityIdPathParam"
591
+ },
592
+ {
593
+ "in": "path",
594
+ "name": "attribute",
595
+ "required": true
596
+ },
597
+ {
598
+ "in": "path",
599
+ "name": "entity_id",
600
+ "required": true
601
+ },
602
+ {
603
+ "$ref": "#/components/parameters/AsyncOperationQueryParam"
604
+ },
605
+ {
606
+ "$ref": "#/components/parameters/ActivityIdQueryParam"
607
+ }
608
+ ]
609
+ }
610
+ },
611
+ "/v1/entity:export": {
612
+ "post": {
613
+ "operationId": "exportEntities",
614
+ "parameters": [
615
+ {
616
+ "in": "query",
617
+ "name": "job_id"
618
+ },
619
+ {
620
+ "in": "query",
621
+ "name": "is_template"
622
+ },
623
+ {
624
+ "in": "query",
625
+ "name": "language"
626
+ }
627
+ ],
628
+ "requestBody": {
629
+ "content": {
630
+ "application/json": {}
631
+ }
632
+ }
633
+ }
634
+ },
635
+ "/v1/entity:import": {
636
+ "post": {
637
+ "operationId": "importEntities",
638
+ "parameters": [
639
+ {
640
+ "in": "query",
641
+ "name": "job_id"
642
+ }
643
+ ],
644
+ "requestBody": {
645
+ "content": {
646
+ "application/json": {}
647
+ }
648
+ }
649
+ }
650
+ },
651
+ "/v1/entity/views": {
652
+ "get": {
653
+ "operationId": "listSavedViews",
654
+ "parameters": [
655
+ {
656
+ "in": "query",
657
+ "name": "slug",
658
+ "required": false
659
+ },
660
+ {
661
+ "in": "query",
662
+ "name": "sort",
663
+ "required": false
664
+ },
665
+ {
666
+ "in": "query",
667
+ "name": "from",
668
+ "required": false
669
+ },
670
+ {
671
+ "in": "query",
672
+ "name": "size",
673
+ "required": false
674
+ },
675
+ {
676
+ "in": "query",
677
+ "name": "fields",
678
+ "required": false
679
+ }
680
+ ]
681
+ }
682
+ },
683
+ "/v1/entity/view": {
684
+ "post": {
685
+ "operationId": "createSavedView",
686
+ "requestBody": {
687
+ "content": {
688
+ "application/json": {}
689
+ }
690
+ }
691
+ }
692
+ },
693
+ "/v1/entity/view/{id}": {
694
+ "get": {
695
+ "operationId": "getSavedView",
696
+ "parameters": [
697
+ {
698
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
699
+ }
700
+ ]
701
+ },
702
+ "put": {
703
+ "operationId": "updateSavedView",
704
+ "parameters": [
705
+ {
706
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
707
+ }
708
+ ],
709
+ "requestBody": {
710
+ "content": {
711
+ "application/json": {}
712
+ }
713
+ }
714
+ },
715
+ "delete": {
716
+ "operationId": "deleteSavedView",
717
+ "parameters": [
718
+ {
719
+ "$ref": "#/components/parameters/SavedViewIdPathParam"
720
+ }
721
+ ]
722
+ }
723
+ },
724
+ "/v1/entity/views/favorites": {
725
+ "get": {
726
+ "operationId": "listFavoriteViewsForUser"
727
+ }
728
+ },
729
+ "/v1/entity/listTaxonomies": {
730
+ "get": {
731
+ "deprecated": true,
732
+ "operationId": "listTaxonomies",
733
+ "parameters": [
734
+ {
735
+ "in": "query",
736
+ "name": "include_disabled"
737
+ }
738
+ ]
739
+ }
740
+ },
741
+ "/v1/entity/taxonomies": {
742
+ "get": {
743
+ "operationId": "listTaxonomies",
744
+ "parameters": [
745
+ {
746
+ "in": "query",
747
+ "name": "include_disabled"
748
+ }
749
+ ]
750
+ },
751
+ "post": {
752
+ "operationId": "createTaxonomy",
753
+ "requestBody": {
754
+ "content": {
755
+ "application/json": {}
756
+ }
757
+ }
758
+ }
759
+ },
760
+ "/v1/entity/taxonomies/{taxonomySlug}": {
761
+ "get": {
762
+ "operationId": "getTaxonomy",
763
+ "parameters": [
764
+ {
765
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
766
+ }
767
+ ]
768
+ },
769
+ "put": {
770
+ "operationId": "updateTaxonomy",
771
+ "parameters": [
772
+ {
773
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
774
+ }
775
+ ],
776
+ "requestBody": {
777
+ "content": {
778
+ "application/json": {}
779
+ }
780
+ }
781
+ },
782
+ "delete": {
783
+ "operationId": "deleteTaxonomy",
784
+ "parameters": [
785
+ {
786
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
787
+ },
788
+ {
789
+ "in": "query",
790
+ "name": "permanent"
791
+ }
792
+ ]
793
+ }
794
+ },
795
+ "/v1/entity/taxonomies/{taxonomySlug}:autocomplete": {
796
+ "get": {
797
+ "operationId": "taxonomyAutocomplete",
798
+ "parameters": [
799
+ {
800
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
801
+ },
802
+ {
803
+ "in": "query",
804
+ "name": "query"
805
+ },
806
+ {
807
+ "in": "query",
808
+ "name": "size"
809
+ }
810
+ ]
811
+ }
812
+ },
813
+ "/v1/entity/taxonomies/classifications:search": {
814
+ "post": {
815
+ "operationId": "taxonomiesClassificationsSearch",
816
+ "parameters": [
817
+ {
818
+ "$ref": "#/components/parameters/TaxonomySlugQueryParamOptional"
819
+ },
820
+ {
821
+ "in": "query",
822
+ "name": "query"
823
+ }
824
+ ],
825
+ "requestBody": {
826
+ "content": {
827
+ "application/json": {}
828
+ }
829
+ }
830
+ }
831
+ },
832
+ "/v1/entity/taxonomies/{taxonomySlug}/classifications": {
833
+ "post": {
834
+ "operationId": "updateClassificationsForTaxonomy",
835
+ "parameters": [
836
+ {
837
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
838
+ }
839
+ ],
840
+ "requestBody": {
841
+ "content": {
842
+ "application/json": {}
843
+ }
844
+ }
845
+ }
846
+ },
847
+ "/v2/entity/taxonomies/{taxonomySlug}/classifications": {
848
+ "post": {
849
+ "operationId": "createTaxonomyClassification",
850
+ "parameters": [
851
+ {
852
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
853
+ }
854
+ ],
855
+ "requestBody": {
856
+ "content": {
857
+ "application/json": {}
858
+ }
859
+ }
860
+ }
861
+ },
862
+ "/v2/entity/taxonomies/{taxonomySlug}/classifications/{classificationSlug}": {
863
+ "put": {
864
+ "operationId": "updateTaxonomyClassification",
865
+ "parameters": [
866
+ {
867
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
868
+ },
869
+ {
870
+ "$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
871
+ }
872
+ ],
873
+ "requestBody": {
874
+ "content": {
875
+ "application/json": {}
876
+ }
877
+ }
878
+ },
879
+ "delete": {
880
+ "operationId": "deleteTaxonomyClassification",
881
+ "parameters": [
882
+ {
883
+ "$ref": "#/components/parameters/TaxonomySlugPathParam"
884
+ },
885
+ {
886
+ "$ref": "#/components/parameters/TaxonomyClassificationSlugPathParam"
887
+ },
888
+ {
889
+ "in": "query",
890
+ "name": "permanent"
891
+ }
892
+ ]
893
+ }
894
+ },
895
+ "/v1/entity/schemas/attributes/{composite_id}": {
896
+ "get": {
897
+ "operationId": "getSchemaAttribute",
898
+ "parameters": [
899
+ {
900
+ "name": "composite_id",
901
+ "in": "path",
902
+ "required": true
903
+ }
904
+ ]
905
+ },
906
+ "put": {
907
+ "operationId": "putSchemaAttribute",
908
+ "parameters": [
909
+ {
910
+ "name": "composite_id",
911
+ "in": "path",
912
+ "required": true
913
+ }
914
+ ],
915
+ "requestBody": {
916
+ "content": {
917
+ "application/json": {}
918
+ }
919
+ }
920
+ },
921
+ "delete": {
922
+ "operationId": "deleteSchemaAttribute",
923
+ "parameters": [
924
+ {
925
+ "name": "composite_id",
926
+ "in": "path",
927
+ "required": true
928
+ }
929
+ ]
930
+ }
931
+ },
932
+ "/v1/entity/schemas/capabilities/{composite_id}": {
933
+ "get": {
934
+ "operationId": "getSchemaCapability",
935
+ "parameters": [
936
+ {
937
+ "name": "composite_id",
938
+ "in": "path",
939
+ "required": true
940
+ }
941
+ ]
942
+ },
943
+ "put": {
944
+ "operationId": "putSchemaCapability",
945
+ "parameters": [
946
+ {
947
+ "name": "composite_id",
948
+ "in": "path",
949
+ "required": true
950
+ }
951
+ ],
952
+ "requestBody": {
953
+ "content": {
954
+ "application/json": {}
955
+ }
956
+ }
957
+ },
958
+ "delete": {
959
+ "operationId": "deleteSchemaCapability",
960
+ "parameters": [
961
+ {
962
+ "name": "composite_id",
963
+ "in": "path",
964
+ "required": true
965
+ }
966
+ ]
967
+ }
968
+ }
969
+ },
970
+ "components": {
971
+ "parameters": {
972
+ "EntityIdPathParam": {
973
+ "name": "id",
974
+ "in": "path",
975
+ "required": true
976
+ },
977
+ "EntitySlugPathParam": {
978
+ "name": "slug",
979
+ "in": "path",
980
+ "required": true
981
+ },
982
+ "EntitySlugPathPriceParam": {
983
+ "name": "slug",
984
+ "in": "path",
985
+ "required": true
986
+ },
987
+ "TaxonomySlugPathParam": {
988
+ "name": "taxonomySlug",
989
+ "in": "path",
990
+ "required": true
991
+ },
992
+ "TaxonomySlugQueryParamOptional": {
993
+ "name": "taxonomySlug",
994
+ "in": "query"
995
+ },
996
+ "TaxonomyClassificationSlugPathParam": {
997
+ "name": "classificationSlug",
998
+ "in": "path",
999
+ "required": true
1000
+ },
1001
+ "SavedViewIdPathParam": {
1002
+ "name": "id",
1003
+ "in": "path",
1004
+ "required": true
1005
+ },
1006
+ "AsyncOperationQueryParam": {
1007
+ "name": "async",
1008
+ "in": "query",
1009
+ "required": false
1010
+ },
1011
+ "HydrateEntitiesQueryParam": {
1012
+ "name": "hydrate",
1013
+ "in": "query"
1014
+ },
1015
+ "ActivityIdQueryParam": {
1016
+ "name": "activity_id",
1017
+ "in": "query",
1018
+ "required": false
1019
+ },
1020
+ "ActivityIdPathParam": {
1021
+ "name": "id",
1022
+ "in": "path",
1023
+ "required": true
1024
+ },
1025
+ "FromPageQueryParam": {
1026
+ "name": "from",
1027
+ "in": "query"
1028
+ },
1029
+ "IncludeReverseDeprecatedQueryParam": {
1030
+ "name": "include_reverse",
1031
+ "in": "query",
1032
+ "deprecated": true
1033
+ },
1034
+ "IncludeReverseQueryParam": {
1035
+ "name": "include_reverse",
1036
+ "in": "query"
1037
+ },
1038
+ "IncludeSchemasQueryParam": {
1039
+ "name": "include_schemas",
1040
+ "in": "query",
1041
+ "required": false,
1042
+ "style": "form",
1043
+ "explode": false
1044
+ },
1045
+ "ExcludeSchemasQueryParam": {
1046
+ "name": "exclude_schemas",
1047
+ "in": "query",
1048
+ "required": false,
1049
+ "style": "form",
1050
+ "explode": false
1051
+ },
1052
+ "EntityRelationsModeQueryParam": {
1053
+ "name": "mode",
1054
+ "in": "query",
1055
+ "required": false
1056
+ },
1057
+ "DryRunQueryParam": {
1058
+ "name": "dry_run",
1059
+ "in": "query",
1060
+ "required": false
1061
+ }
1062
+ }
1063
+ },
1064
+ "servers": [
1065
+ {
1066
+ "url": "https://entity.sls.epilot.io"
1067
+ }
1068
+ ]
1069
+ }