@epilot/entity-client 4.9.1 → 4.10.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.
- package/dist/client.d.ts +0 -1
- package/dist/client.js +7 -12
- package/dist/definition.js +1 -1
- package/dist/openapi.d.ts +285 -1749
- package/dist/openapi.json +314 -1454
- package/package.json +1 -1
package/dist/openapi.json
CHANGED
|
@@ -25,14 +25,6 @@
|
|
|
25
25
|
{
|
|
26
26
|
"name": "Export",
|
|
27
27
|
"description": "Export and Import entities via files"
|
|
28
|
-
},
|
|
29
|
-
{
|
|
30
|
-
"name": "Saved Views",
|
|
31
|
-
"description": "Saved Views for Entities"
|
|
32
|
-
},
|
|
33
|
-
{
|
|
34
|
-
"name": "Taxonomy",
|
|
35
|
-
"description": "Entity classification with Taxonomies"
|
|
36
28
|
}
|
|
37
29
|
],
|
|
38
30
|
"security": [
|
|
@@ -48,12 +40,12 @@
|
|
|
48
40
|
"get": {
|
|
49
41
|
"operationId": "listSchemas",
|
|
50
42
|
"summary": "listSchemas",
|
|
51
|
-
"description": "Get the latest
|
|
43
|
+
"description": "Get the latest version of local schema",
|
|
52
44
|
"parameters": [
|
|
53
45
|
{
|
|
54
46
|
"in": "query",
|
|
55
47
|
"name": "unpublished",
|
|
56
|
-
"description": "
|
|
48
|
+
"description": "Includes the unpublished version of unpublished schema",
|
|
57
49
|
"schema": {
|
|
58
50
|
"type": "boolean",
|
|
59
51
|
"default": false
|
|
@@ -85,11 +77,41 @@
|
|
|
85
77
|
}
|
|
86
78
|
}
|
|
87
79
|
},
|
|
88
|
-
"/v1/entity/schemas/
|
|
80
|
+
"/v1/entity/schemas/blueprints": {
|
|
89
81
|
"get": {
|
|
90
|
-
"operationId": "
|
|
91
|
-
"summary": "
|
|
92
|
-
"description": "
|
|
82
|
+
"operationId": "listSchemaBlueprints",
|
|
83
|
+
"summary": "listSchemaBlueprints",
|
|
84
|
+
"description": "List canonical versions of all available schemas",
|
|
85
|
+
"tags": [
|
|
86
|
+
"Schemas"
|
|
87
|
+
],
|
|
88
|
+
"responses": {
|
|
89
|
+
"200": {
|
|
90
|
+
"description": "Success",
|
|
91
|
+
"content": {
|
|
92
|
+
"application/json": {
|
|
93
|
+
"schema": {
|
|
94
|
+
"type": "object",
|
|
95
|
+
"properties": {
|
|
96
|
+
"results": {
|
|
97
|
+
"type": "array",
|
|
98
|
+
"items": {
|
|
99
|
+
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
},
|
|
110
|
+
"/v1/entity/schemas/{slug}/versions": {
|
|
111
|
+
"get": {
|
|
112
|
+
"operationId": "getSchemaVersions",
|
|
113
|
+
"summary": "getSchemaVersions",
|
|
114
|
+
"description": "Get all versions of this schema ordered by the latest versions including drafts.",
|
|
93
115
|
"tags": [
|
|
94
116
|
"Schemas"
|
|
95
117
|
],
|
|
@@ -101,13 +123,6 @@
|
|
|
101
123
|
"schema": {
|
|
102
124
|
"$ref": "#/components/schemas/EntitySlug"
|
|
103
125
|
}
|
|
104
|
-
},
|
|
105
|
-
{
|
|
106
|
-
"in": "query",
|
|
107
|
-
"name": "id",
|
|
108
|
-
"schema": {
|
|
109
|
-
"$ref": "#/components/schemas/SchemaId"
|
|
110
|
-
}
|
|
111
126
|
}
|
|
112
127
|
],
|
|
113
128
|
"responses": {
|
|
@@ -116,17 +131,33 @@
|
|
|
116
131
|
"content": {
|
|
117
132
|
"application/json": {
|
|
118
133
|
"schema": {
|
|
119
|
-
"
|
|
134
|
+
"type": "object",
|
|
135
|
+
"properties": {
|
|
136
|
+
"versions": {
|
|
137
|
+
"type": "array",
|
|
138
|
+
"items": {
|
|
139
|
+
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
140
|
+
}
|
|
141
|
+
},
|
|
142
|
+
"drafts": {
|
|
143
|
+
"type": "array",
|
|
144
|
+
"items": {
|
|
145
|
+
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
120
149
|
}
|
|
121
150
|
}
|
|
122
151
|
}
|
|
123
152
|
}
|
|
124
153
|
}
|
|
125
|
-
}
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"/v1/entity/schemas/{slug}": {
|
|
157
|
+
"get": {
|
|
158
|
+
"operationId": "getSchema",
|
|
159
|
+
"summary": "getSchema",
|
|
160
|
+
"description": "By default gets the latest version of the Schema and to get the specific version of schema pass the id.",
|
|
130
161
|
"tags": [
|
|
131
162
|
"Schemas"
|
|
132
163
|
],
|
|
@@ -141,22 +172,12 @@
|
|
|
141
172
|
},
|
|
142
173
|
{
|
|
143
174
|
"in": "query",
|
|
144
|
-
"name": "
|
|
175
|
+
"name": "id",
|
|
145
176
|
"schema": {
|
|
146
|
-
"
|
|
147
|
-
"type": "boolean"
|
|
177
|
+
"$ref": "#/components/schemas/SchemaId"
|
|
148
178
|
}
|
|
149
179
|
}
|
|
150
180
|
],
|
|
151
|
-
"requestBody": {
|
|
152
|
-
"content": {
|
|
153
|
-
"application/json": {
|
|
154
|
-
"schema": {
|
|
155
|
-
"$ref": "#/components/schemas/EntitySchema"
|
|
156
|
-
}
|
|
157
|
-
}
|
|
158
|
-
}
|
|
159
|
-
},
|
|
160
181
|
"responses": {
|
|
161
182
|
"200": {
|
|
162
183
|
"description": "Success",
|
|
@@ -170,10 +191,10 @@
|
|
|
170
191
|
}
|
|
171
192
|
}
|
|
172
193
|
},
|
|
173
|
-
"
|
|
174
|
-
"operationId": "
|
|
175
|
-
"summary": "
|
|
176
|
-
"description": "
|
|
194
|
+
"put": {
|
|
195
|
+
"operationId": "createNewSchemaVersion",
|
|
196
|
+
"summary": "createNewSchemaVersion",
|
|
197
|
+
"description": "Create new version of the schema and default draft is false.",
|
|
177
198
|
"tags": [
|
|
178
199
|
"Schemas"
|
|
179
200
|
],
|
|
@@ -185,96 +206,42 @@
|
|
|
185
206
|
"schema": {
|
|
186
207
|
"$ref": "#/components/schemas/EntitySlug"
|
|
187
208
|
}
|
|
188
|
-
}
|
|
189
|
-
],
|
|
190
|
-
"responses": {
|
|
191
|
-
"204": {
|
|
192
|
-
"description": "Success"
|
|
193
|
-
}
|
|
194
|
-
}
|
|
195
|
-
}
|
|
196
|
-
},
|
|
197
|
-
"/v1/entity/schemas/{slug}/versions": {
|
|
198
|
-
"get": {
|
|
199
|
-
"operationId": "getSchemaVersions",
|
|
200
|
-
"summary": "getSchemaVersions",
|
|
201
|
-
"description": "Get all versions of this schema ordered by the latest versions including drafts.",
|
|
202
|
-
"tags": [
|
|
203
|
-
"Schemas"
|
|
204
|
-
],
|
|
205
|
-
"parameters": [
|
|
209
|
+
},
|
|
206
210
|
{
|
|
207
|
-
"in": "
|
|
208
|
-
"name": "
|
|
209
|
-
"required": true,
|
|
211
|
+
"in": "query",
|
|
212
|
+
"name": "draft",
|
|
210
213
|
"schema": {
|
|
211
|
-
"
|
|
214
|
+
"default": false,
|
|
215
|
+
"type": "boolean"
|
|
212
216
|
}
|
|
213
217
|
}
|
|
214
218
|
],
|
|
215
|
-
"
|
|
216
|
-
"
|
|
217
|
-
"
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
"schema": {
|
|
221
|
-
"type": "object",
|
|
222
|
-
"properties": {
|
|
223
|
-
"versions": {
|
|
224
|
-
"type": "array",
|
|
225
|
-
"items": {
|
|
226
|
-
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
"drafts": {
|
|
230
|
-
"type": "array",
|
|
231
|
-
"items": {
|
|
232
|
-
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
}
|
|
219
|
+
"requestBody": {
|
|
220
|
+
"content": {
|
|
221
|
+
"application/json": {
|
|
222
|
+
"schema": {
|
|
223
|
+
"$ref": "#/components/schemas/EntitySchema"
|
|
237
224
|
}
|
|
238
225
|
}
|
|
239
226
|
}
|
|
240
|
-
}
|
|
241
|
-
}
|
|
242
|
-
},
|
|
243
|
-
"/v1/entity/schemas/blueprints": {
|
|
244
|
-
"get": {
|
|
245
|
-
"operationId": "listSchemaBlueprints",
|
|
246
|
-
"summary": "listSchemaBlueprints",
|
|
247
|
-
"description": "List canonical versions of all available schemas",
|
|
248
|
-
"tags": [
|
|
249
|
-
"Schemas"
|
|
250
|
-
],
|
|
227
|
+
},
|
|
251
228
|
"responses": {
|
|
252
229
|
"200": {
|
|
253
230
|
"description": "Success",
|
|
254
231
|
"content": {
|
|
255
232
|
"application/json": {
|
|
256
233
|
"schema": {
|
|
257
|
-
"
|
|
258
|
-
"properties": {
|
|
259
|
-
"results": {
|
|
260
|
-
"type": "array",
|
|
261
|
-
"items": {
|
|
262
|
-
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
263
|
-
}
|
|
264
|
-
}
|
|
265
|
-
}
|
|
234
|
+
"$ref": "#/components/schemas/EntitySchemaItem"
|
|
266
235
|
}
|
|
267
236
|
}
|
|
268
237
|
}
|
|
269
238
|
}
|
|
270
239
|
}
|
|
271
|
-
}
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
"
|
|
276
|
-
"summary": "listTaxonomyClassificationsForSchema",
|
|
277
|
-
"description": "List taxonomy classifications for a given schema",
|
|
240
|
+
},
|
|
241
|
+
"delete": {
|
|
242
|
+
"operationId": "deleteSchemaById",
|
|
243
|
+
"summary": "deleteSchemaById",
|
|
244
|
+
"description": "Delete schema by Id",
|
|
278
245
|
"tags": [
|
|
279
246
|
"Schemas"
|
|
280
247
|
],
|
|
@@ -287,47 +254,18 @@
|
|
|
287
254
|
"$ref": "#/components/schemas/EntitySlug"
|
|
288
255
|
}
|
|
289
256
|
},
|
|
290
|
-
{
|
|
291
|
-
"in": "path",
|
|
292
|
-
"name": "taxonomySlug",
|
|
293
|
-
"required": true,
|
|
294
|
-
"schema": {
|
|
295
|
-
"$ref": "#/components/schemas/TaxonomySlug"
|
|
296
|
-
}
|
|
297
|
-
},
|
|
298
|
-
{
|
|
299
|
-
"in": "query",
|
|
300
|
-
"name": "query",
|
|
301
|
-
"schema": {
|
|
302
|
-
"type": "string"
|
|
303
|
-
}
|
|
304
|
-
},
|
|
305
257
|
{
|
|
306
258
|
"in": "query",
|
|
307
|
-
"name": "
|
|
259
|
+
"name": "id",
|
|
260
|
+
"required": true,
|
|
308
261
|
"schema": {
|
|
309
|
-
"
|
|
262
|
+
"$ref": "#/components/schemas/SchemaId"
|
|
310
263
|
}
|
|
311
264
|
}
|
|
312
265
|
],
|
|
313
266
|
"responses": {
|
|
314
|
-
"
|
|
315
|
-
"description": "
|
|
316
|
-
"content": {
|
|
317
|
-
"application/json": {
|
|
318
|
-
"schema": {
|
|
319
|
-
"type": "object",
|
|
320
|
-
"properties": {
|
|
321
|
-
"results": {
|
|
322
|
-
"type": "array",
|
|
323
|
-
"items": {
|
|
324
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
325
|
-
}
|
|
326
|
-
}
|
|
327
|
-
}
|
|
328
|
-
}
|
|
329
|
-
}
|
|
330
|
-
}
|
|
267
|
+
"204": {
|
|
268
|
+
"description": "Success"
|
|
331
269
|
}
|
|
332
270
|
}
|
|
333
271
|
}
|
|
@@ -394,16 +332,6 @@
|
|
|
394
332
|
"schema": {
|
|
395
333
|
"$ref": "#/components/schemas/ActivityId"
|
|
396
334
|
}
|
|
397
|
-
},
|
|
398
|
-
{
|
|
399
|
-
"in": "query",
|
|
400
|
-
"name": "async",
|
|
401
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
402
|
-
"required": false,
|
|
403
|
-
"schema": {
|
|
404
|
-
"type": "boolean",
|
|
405
|
-
"default": false
|
|
406
|
-
}
|
|
407
335
|
}
|
|
408
336
|
],
|
|
409
337
|
"requestBody": {
|
|
@@ -500,16 +428,6 @@
|
|
|
500
428
|
"type": "boolean",
|
|
501
429
|
"default": false
|
|
502
430
|
}
|
|
503
|
-
},
|
|
504
|
-
{
|
|
505
|
-
"in": "query",
|
|
506
|
-
"name": "async",
|
|
507
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
508
|
-
"required": false,
|
|
509
|
-
"schema": {
|
|
510
|
-
"type": "boolean",
|
|
511
|
-
"default": false
|
|
512
|
-
}
|
|
513
431
|
}
|
|
514
432
|
],
|
|
515
433
|
"requestBody": {
|
|
@@ -662,16 +580,6 @@
|
|
|
662
580
|
"schema": {
|
|
663
581
|
"$ref": "#/components/schemas/ActivityId"
|
|
664
582
|
}
|
|
665
|
-
},
|
|
666
|
-
{
|
|
667
|
-
"in": "query",
|
|
668
|
-
"name": "async",
|
|
669
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
670
|
-
"required": false,
|
|
671
|
-
"schema": {
|
|
672
|
-
"type": "boolean",
|
|
673
|
-
"default": false
|
|
674
|
-
}
|
|
675
583
|
}
|
|
676
584
|
],
|
|
677
585
|
"requestBody": {
|
|
@@ -697,10 +605,10 @@
|
|
|
697
605
|
}
|
|
698
606
|
}
|
|
699
607
|
},
|
|
700
|
-
"
|
|
701
|
-
"operationId": "
|
|
702
|
-
"summary": "
|
|
703
|
-
"description": "
|
|
608
|
+
"delete": {
|
|
609
|
+
"operationId": "deleteEntity",
|
|
610
|
+
"summary": "deleteEntity",
|
|
611
|
+
"description": "Deletes an Entity\n\n## Activity\n\nIf no `activity_id` query parameter is provided, implicitly creates Activity of type `EntityDeleted`\n",
|
|
704
612
|
"tags": [
|
|
705
613
|
"Entities"
|
|
706
614
|
],
|
|
@@ -708,90 +616,7 @@
|
|
|
708
616
|
{
|
|
709
617
|
"in": "path",
|
|
710
618
|
"name": "slug",
|
|
711
|
-
"description": "Entity
|
|
712
|
-
"required": true,
|
|
713
|
-
"schema": {
|
|
714
|
-
"$ref": "#/components/schemas/EntitySlug"
|
|
715
|
-
}
|
|
716
|
-
},
|
|
717
|
-
{
|
|
718
|
-
"in": "path",
|
|
719
|
-
"name": "id",
|
|
720
|
-
"description": "Entity Id",
|
|
721
|
-
"required": true,
|
|
722
|
-
"schema": {
|
|
723
|
-
"$ref": "#/components/schemas/EntityId"
|
|
724
|
-
}
|
|
725
|
-
},
|
|
726
|
-
{
|
|
727
|
-
"in": "query",
|
|
728
|
-
"name": "activity_id",
|
|
729
|
-
"description": "Activity to include in event feed",
|
|
730
|
-
"required": false,
|
|
731
|
-
"schema": {
|
|
732
|
-
"$ref": "#/components/schemas/ActivityId"
|
|
733
|
-
}
|
|
734
|
-
},
|
|
735
|
-
{
|
|
736
|
-
"in": "query",
|
|
737
|
-
"name": "dry_run",
|
|
738
|
-
"description": "Dry Run mode = returns the patch result but doesn't perform the patch.",
|
|
739
|
-
"required": false,
|
|
740
|
-
"schema": {
|
|
741
|
-
"type": "boolean",
|
|
742
|
-
"default": false
|
|
743
|
-
}
|
|
744
|
-
},
|
|
745
|
-
{
|
|
746
|
-
"in": "query",
|
|
747
|
-
"name": "async",
|
|
748
|
-
"description": "Don't wait for the patch entity to become available in Search API. Useful for large migrations",
|
|
749
|
-
"required": false,
|
|
750
|
-
"schema": {
|
|
751
|
-
"type": "boolean",
|
|
752
|
-
"default": false
|
|
753
|
-
}
|
|
754
|
-
}
|
|
755
|
-
],
|
|
756
|
-
"requestBody": {
|
|
757
|
-
"content": {
|
|
758
|
-
"application/json": {
|
|
759
|
-
"schema": {
|
|
760
|
-
"$ref": "#/components/schemas/Entity"
|
|
761
|
-
},
|
|
762
|
-
"example": {},
|
|
763
|
-
"required": true
|
|
764
|
-
}
|
|
765
|
-
}
|
|
766
|
-
},
|
|
767
|
-
"responses": {
|
|
768
|
-
"200": {
|
|
769
|
-
"description": "Entity was updated",
|
|
770
|
-
"content": {
|
|
771
|
-
"application/json": {
|
|
772
|
-
"schema": {
|
|
773
|
-
"$ref": "#/components/schemas/EntityItem"
|
|
774
|
-
}
|
|
775
|
-
}
|
|
776
|
-
}
|
|
777
|
-
},
|
|
778
|
-
"409": {
|
|
779
|
-
"description": "Conflict: newer version exists"
|
|
780
|
-
}
|
|
781
|
-
}
|
|
782
|
-
},
|
|
783
|
-
"delete": {
|
|
784
|
-
"operationId": "deleteEntity",
|
|
785
|
-
"summary": "deleteEntity",
|
|
786
|
-
"description": "Deletes an Entity\n\n## Activity\n\nIf no `activity_id` query parameter is provided, implicitly creates Activity of type `EntityDeleted`\n",
|
|
787
|
-
"tags": [
|
|
788
|
-
"Entities"
|
|
789
|
-
],
|
|
790
|
-
"parameters": [
|
|
791
|
-
{
|
|
792
|
-
"in": "path",
|
|
793
|
-
"name": "slug",
|
|
794
|
-
"description": "Entity Type",
|
|
619
|
+
"description": "Entity Type",
|
|
795
620
|
"required": true,
|
|
796
621
|
"schema": {
|
|
797
622
|
"$ref": "#/components/schemas/EntitySlug"
|
|
@@ -972,27 +797,6 @@
|
|
|
972
797
|
"schema": {
|
|
973
798
|
"$ref": "#/components/schemas/ActivityId"
|
|
974
799
|
}
|
|
975
|
-
},
|
|
976
|
-
{
|
|
977
|
-
"in": "query",
|
|
978
|
-
"name": "operations_size",
|
|
979
|
-
"description": "Maximum number of operations to include in response (default: 10)\n",
|
|
980
|
-
"schema": {
|
|
981
|
-
"type": "integer",
|
|
982
|
-
"minimum": 0,
|
|
983
|
-
"maximum": 1000,
|
|
984
|
-
"default": 25
|
|
985
|
-
}
|
|
986
|
-
},
|
|
987
|
-
{
|
|
988
|
-
"in": "query",
|
|
989
|
-
"name": "operations_from",
|
|
990
|
-
"description": "Pagination offset for operations\n",
|
|
991
|
-
"schema": {
|
|
992
|
-
"type": "integer",
|
|
993
|
-
"minimum": 0,
|
|
994
|
-
"default": 0
|
|
995
|
-
}
|
|
996
800
|
}
|
|
997
801
|
],
|
|
998
802
|
"responses": {
|
|
@@ -1160,7 +964,7 @@
|
|
|
1160
964
|
"get": {
|
|
1161
965
|
"operationId": "getRelations",
|
|
1162
966
|
"summary": "getRelations",
|
|
1163
|
-
"description": "
|
|
967
|
+
"description": "It loads 1st level relations for the mentioned entity. You can control whether entire related entity is loaded or not via hydrate param.",
|
|
1164
968
|
"tags": [
|
|
1165
969
|
"Relations"
|
|
1166
970
|
],
|
|
@@ -1191,15 +995,6 @@
|
|
|
1191
995
|
"default": false,
|
|
1192
996
|
"type": "boolean"
|
|
1193
997
|
}
|
|
1194
|
-
},
|
|
1195
|
-
{
|
|
1196
|
-
"in": "query",
|
|
1197
|
-
"name": "include_reverse",
|
|
1198
|
-
"description": "When true, includes reverse relations in response (other entities pointing to this entity)",
|
|
1199
|
-
"schema": {
|
|
1200
|
-
"default": false,
|
|
1201
|
-
"type": "boolean"
|
|
1202
|
-
}
|
|
1203
998
|
}
|
|
1204
999
|
],
|
|
1205
1000
|
"responses": {
|
|
@@ -1253,7 +1048,7 @@
|
|
|
1253
1048
|
"post": {
|
|
1254
1049
|
"operationId": "addRelations",
|
|
1255
1050
|
"summary": "addRelations",
|
|
1256
|
-
"description": "
|
|
1051
|
+
"description": "It relates one or more entities to some parent entity, by providing meaning for relations via attribute field.",
|
|
1257
1052
|
"tags": [
|
|
1258
1053
|
"Relations"
|
|
1259
1054
|
],
|
|
@@ -1275,16 +1070,6 @@
|
|
|
1275
1070
|
"schema": {
|
|
1276
1071
|
"$ref": "#/components/schemas/EntityId"
|
|
1277
1072
|
}
|
|
1278
|
-
},
|
|
1279
|
-
{
|
|
1280
|
-
"in": "query",
|
|
1281
|
-
"name": "async",
|
|
1282
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
1283
|
-
"required": false,
|
|
1284
|
-
"schema": {
|
|
1285
|
-
"type": "boolean",
|
|
1286
|
-
"default": false
|
|
1287
|
-
}
|
|
1288
1073
|
}
|
|
1289
1074
|
],
|
|
1290
1075
|
"requestBody": {
|
|
@@ -1330,115 +1115,11 @@
|
|
|
1330
1115
|
}
|
|
1331
1116
|
}
|
|
1332
1117
|
},
|
|
1333
|
-
"/v2/entity/{slug}/{id}/relations": {
|
|
1334
|
-
"get": {
|
|
1335
|
-
"operationId": "getRelationsV2",
|
|
1336
|
-
"summary": "getRelationsV2",
|
|
1337
|
-
"description": "Returns 1st level direct relations for an entity with pagination.\n\nYou can control whether to return the full entity or just the relation item with the `?hydrate` query param.\n\nReverse relations i.e. entities referring to this entity are included with the `?include_reverse` query param.\n",
|
|
1338
|
-
"tags": [
|
|
1339
|
-
"Relations"
|
|
1340
|
-
],
|
|
1341
|
-
"parameters": [
|
|
1342
|
-
{
|
|
1343
|
-
"in": "path",
|
|
1344
|
-
"name": "slug",
|
|
1345
|
-
"description": "Entity Type",
|
|
1346
|
-
"required": true,
|
|
1347
|
-
"schema": {
|
|
1348
|
-
"$ref": "#/components/schemas/EntitySlug"
|
|
1349
|
-
}
|
|
1350
|
-
},
|
|
1351
|
-
{
|
|
1352
|
-
"in": "path",
|
|
1353
|
-
"name": "id",
|
|
1354
|
-
"description": "Entity id",
|
|
1355
|
-
"required": true,
|
|
1356
|
-
"schema": {
|
|
1357
|
-
"$ref": "#/components/schemas/EntityId"
|
|
1358
|
-
}
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
"in": "query",
|
|
1362
|
-
"name": "hydrate",
|
|
1363
|
-
"description": "When true, expand relation items with full blown entities.",
|
|
1364
|
-
"schema": {
|
|
1365
|
-
"default": false,
|
|
1366
|
-
"type": "boolean"
|
|
1367
|
-
}
|
|
1368
|
-
},
|
|
1369
|
-
{
|
|
1370
|
-
"in": "query",
|
|
1371
|
-
"name": "query",
|
|
1372
|
-
"description": "Input to filter search results",
|
|
1373
|
-
"schema": {
|
|
1374
|
-
"type": "string"
|
|
1375
|
-
}
|
|
1376
|
-
},
|
|
1377
|
-
{
|
|
1378
|
-
"in": "query",
|
|
1379
|
-
"name": "include_reverse",
|
|
1380
|
-
"description": "When true, includes reverse relations in response (other entities pointing to this entity)",
|
|
1381
|
-
"schema": {
|
|
1382
|
-
"default": false,
|
|
1383
|
-
"type": "boolean"
|
|
1384
|
-
}
|
|
1385
|
-
},
|
|
1386
|
-
{
|
|
1387
|
-
"in": "query",
|
|
1388
|
-
"name": "from",
|
|
1389
|
-
"description": "Starting page number",
|
|
1390
|
-
"schema": {
|
|
1391
|
-
"type": "integer",
|
|
1392
|
-
"minimum": 0,
|
|
1393
|
-
"default": 0
|
|
1394
|
-
}
|
|
1395
|
-
},
|
|
1396
|
-
{
|
|
1397
|
-
"in": "query",
|
|
1398
|
-
"name": "size",
|
|
1399
|
-
"description": "Number of results to return per page",
|
|
1400
|
-
"schema": {
|
|
1401
|
-
"type": "integer",
|
|
1402
|
-
"minimum": 1,
|
|
1403
|
-
"default": 50
|
|
1404
|
-
}
|
|
1405
|
-
},
|
|
1406
|
-
{
|
|
1407
|
-
"in": "query",
|
|
1408
|
-
"name": "fields",
|
|
1409
|
-
"description": "List of entity fields to include in results",
|
|
1410
|
-
"schema": {
|
|
1411
|
-
"type": "array",
|
|
1412
|
-
"items": {
|
|
1413
|
-
"type": "string"
|
|
1414
|
-
},
|
|
1415
|
-
"example": [
|
|
1416
|
-
"_id",
|
|
1417
|
-
"_schema",
|
|
1418
|
-
"_title"
|
|
1419
|
-
]
|
|
1420
|
-
}
|
|
1421
|
-
}
|
|
1422
|
-
],
|
|
1423
|
-
"responses": {
|
|
1424
|
-
"200": {
|
|
1425
|
-
"description": "Success",
|
|
1426
|
-
"content": {
|
|
1427
|
-
"application/json": {
|
|
1428
|
-
"schema": {
|
|
1429
|
-
"$ref": "#/components/schemas/GetRelationsRespWithPagination"
|
|
1430
|
-
}
|
|
1431
|
-
}
|
|
1432
|
-
}
|
|
1433
|
-
}
|
|
1434
|
-
}
|
|
1435
|
-
}
|
|
1436
|
-
},
|
|
1437
1118
|
"/v1/entity/{slug}/{id}/relations/{attribute}/{entity_id}": {
|
|
1438
1119
|
"put": {
|
|
1439
1120
|
"operationId": "updateRelation",
|
|
1440
1121
|
"summary": "updateRelation",
|
|
1441
|
-
"description": "
|
|
1122
|
+
"description": "It updates a relation between two entities.",
|
|
1442
1123
|
"tags": [
|
|
1443
1124
|
"Relations"
|
|
1444
1125
|
],
|
|
@@ -1478,16 +1159,6 @@
|
|
|
1478
1159
|
"schema": {
|
|
1479
1160
|
"type": "string"
|
|
1480
1161
|
}
|
|
1481
|
-
},
|
|
1482
|
-
{
|
|
1483
|
-
"in": "query",
|
|
1484
|
-
"name": "async",
|
|
1485
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
1486
|
-
"required": false,
|
|
1487
|
-
"schema": {
|
|
1488
|
-
"type": "boolean",
|
|
1489
|
-
"default": false
|
|
1490
|
-
}
|
|
1491
1162
|
}
|
|
1492
1163
|
],
|
|
1493
1164
|
"requestBody": {
|
|
@@ -1507,570 +1178,107 @@
|
|
|
1507
1178
|
"example": {
|
|
1508
1179
|
"_tags": [
|
|
1509
1180
|
"billing",
|
|
1510
|
-
"prepaid"
|
|
1511
|
-
]
|
|
1512
|
-
}
|
|
1513
|
-
}
|
|
1514
|
-
}
|
|
1515
|
-
},
|
|
1516
|
-
"responses": {
|
|
1517
|
-
"200": {
|
|
1518
|
-
"description": "Success",
|
|
1519
|
-
"content": {
|
|
1520
|
-
"application/json": {
|
|
1521
|
-
"schema": {
|
|
1522
|
-
"$ref": "#/components/schemas/RelationItem"
|
|
1523
|
-
}
|
|
1524
|
-
}
|
|
1525
|
-
}
|
|
1526
|
-
}
|
|
1527
|
-
}
|
|
1528
|
-
},
|
|
1529
|
-
"delete": {
|
|
1530
|
-
"operationId": "deleteRelation",
|
|
1531
|
-
"summary": "deleteRelation",
|
|
1532
|
-
"description": "Removes relation between two entities",
|
|
1533
|
-
"tags": [
|
|
1534
|
-
"Relations"
|
|
1535
|
-
],
|
|
1536
|
-
"parameters": [
|
|
1537
|
-
{
|
|
1538
|
-
"in": "path",
|
|
1539
|
-
"name": "slug",
|
|
1540
|
-
"description": "Entity Type",
|
|
1541
|
-
"required": true,
|
|
1542
|
-
"schema": {
|
|
1543
|
-
"$ref": "#/components/schemas/EntitySlug"
|
|
1544
|
-
}
|
|
1545
|
-
},
|
|
1546
|
-
{
|
|
1547
|
-
"in": "path",
|
|
1548
|
-
"name": "id",
|
|
1549
|
-
"description": "Entity id",
|
|
1550
|
-
"required": true,
|
|
1551
|
-
"schema": {
|
|
1552
|
-
"$ref": "#/components/schemas/EntityId"
|
|
1553
|
-
}
|
|
1554
|
-
},
|
|
1555
|
-
{
|
|
1556
|
-
"in": "path",
|
|
1557
|
-
"name": "attribute",
|
|
1558
|
-
"description": "The attribute that express meaning",
|
|
1559
|
-
"required": true,
|
|
1560
|
-
"schema": {
|
|
1561
|
-
"type": "string"
|
|
1562
|
-
}
|
|
1563
|
-
},
|
|
1564
|
-
{
|
|
1565
|
-
"in": "path",
|
|
1566
|
-
"name": "entity_id",
|
|
1567
|
-
"description": "The attribute that express meaning",
|
|
1568
|
-
"required": true,
|
|
1569
|
-
"schema": {
|
|
1570
|
-
"type": "string"
|
|
1571
|
-
}
|
|
1572
|
-
},
|
|
1573
|
-
{
|
|
1574
|
-
"in": "query",
|
|
1575
|
-
"name": "async",
|
|
1576
|
-
"description": "Don't wait for updated entity to become available in Search API. Useful for large migrations",
|
|
1577
|
-
"required": false,
|
|
1578
|
-
"schema": {
|
|
1579
|
-
"type": "boolean",
|
|
1580
|
-
"default": false
|
|
1581
|
-
}
|
|
1582
|
-
}
|
|
1583
|
-
],
|
|
1584
|
-
"responses": {
|
|
1585
|
-
"204": {
|
|
1586
|
-
"description": "Relation deleted with success."
|
|
1587
|
-
}
|
|
1588
|
-
}
|
|
1589
|
-
}
|
|
1590
|
-
},
|
|
1591
|
-
"/v1/entity:export": {
|
|
1592
|
-
"post": {
|
|
1593
|
-
"operationId": "exportEntities",
|
|
1594
|
-
"summary": "exportEntities",
|
|
1595
|
-
"description": "create export file of entities",
|
|
1596
|
-
"tags": [
|
|
1597
|
-
"Export"
|
|
1598
|
-
],
|
|
1599
|
-
"parameters": [
|
|
1600
|
-
{
|
|
1601
|
-
"in": "query",
|
|
1602
|
-
"name": "job_id",
|
|
1603
|
-
"description": "Export Job Id to get the result",
|
|
1604
|
-
"schema": {
|
|
1605
|
-
"$ref": "#/components/schemas/ExportJobId"
|
|
1606
|
-
}
|
|
1607
|
-
},
|
|
1608
|
-
{
|
|
1609
|
-
"in": "query",
|
|
1610
|
-
"name": "is_template",
|
|
1611
|
-
"description": "Pass 'true' to generate import template",
|
|
1612
|
-
"schema": {
|
|
1613
|
-
"$ref": "#/components/schemas/IsTemplate"
|
|
1614
|
-
}
|
|
1615
|
-
},
|
|
1616
|
-
{
|
|
1617
|
-
"in": "query",
|
|
1618
|
-
"name": "language",
|
|
1619
|
-
"description": "Export headers translation language",
|
|
1620
|
-
"schema": {
|
|
1621
|
-
"$ref": "#/components/schemas/Language"
|
|
1622
|
-
}
|
|
1623
|
-
}
|
|
1624
|
-
],
|
|
1625
|
-
"requestBody": {
|
|
1626
|
-
"content": {
|
|
1627
|
-
"application/json": {
|
|
1628
|
-
"schema": {
|
|
1629
|
-
"$ref": "#/components/schemas/EntitySearchParams"
|
|
1630
|
-
}
|
|
1631
|
-
}
|
|
1632
|
-
}
|
|
1633
|
-
},
|
|
1634
|
-
"responses": {
|
|
1635
|
-
"201": {
|
|
1636
|
-
"description": "created export url and download url"
|
|
1637
|
-
}
|
|
1638
|
-
}
|
|
1639
|
-
}
|
|
1640
|
-
},
|
|
1641
|
-
"/v1/entity:import": {
|
|
1642
|
-
"post": {
|
|
1643
|
-
"operationId": "importEntities",
|
|
1644
|
-
"summary": "importEntities",
|
|
1645
|
-
"description": "import entity data from",
|
|
1646
|
-
"tags": [
|
|
1647
|
-
"Export"
|
|
1648
|
-
],
|
|
1649
|
-
"parameters": [
|
|
1650
|
-
{
|
|
1651
|
-
"in": "query",
|
|
1652
|
-
"name": "job_id",
|
|
1653
|
-
"description": "Import Job Id to get the result",
|
|
1654
|
-
"schema": {
|
|
1655
|
-
"$ref": "#/components/schemas/ExportJobId"
|
|
1656
|
-
}
|
|
1657
|
-
}
|
|
1658
|
-
],
|
|
1659
|
-
"requestBody": {
|
|
1660
|
-
"content": {
|
|
1661
|
-
"application/json": {
|
|
1662
|
-
"schema": {
|
|
1663
|
-
"$ref": "#/components/schemas/EntityImportParams"
|
|
1664
|
-
}
|
|
1665
|
-
}
|
|
1666
|
-
}
|
|
1667
|
-
},
|
|
1668
|
-
"responses": {
|
|
1669
|
-
"201": {
|
|
1670
|
-
"description": "created import url and download url"
|
|
1671
|
-
}
|
|
1672
|
-
}
|
|
1673
|
-
}
|
|
1674
|
-
},
|
|
1675
|
-
"/v1/entity/views": {
|
|
1676
|
-
"get": {
|
|
1677
|
-
"operationId": "listSavedViews",
|
|
1678
|
-
"summary": "listSavedViews",
|
|
1679
|
-
"description": "Get the Saved Views based on the schema",
|
|
1680
|
-
"tags": [
|
|
1681
|
-
"Saved Views"
|
|
1682
|
-
],
|
|
1683
|
-
"responses": {
|
|
1684
|
-
"200": {
|
|
1685
|
-
"description": "Success",
|
|
1686
|
-
"content": {
|
|
1687
|
-
"application/json": {
|
|
1688
|
-
"schema": {
|
|
1689
|
-
"type": "object",
|
|
1690
|
-
"properties": {
|
|
1691
|
-
"results": {
|
|
1692
|
-
"type": "array",
|
|
1693
|
-
"items": {
|
|
1694
|
-
"$ref": "#/components/schemas/SavedViewItem"
|
|
1695
|
-
}
|
|
1696
|
-
}
|
|
1697
|
-
}
|
|
1698
|
-
}
|
|
1699
|
-
}
|
|
1700
|
-
}
|
|
1701
|
-
}
|
|
1702
|
-
}
|
|
1703
|
-
}
|
|
1704
|
-
},
|
|
1705
|
-
"/v1/entity/view": {
|
|
1706
|
-
"post": {
|
|
1707
|
-
"operationId": "createSavedView",
|
|
1708
|
-
"summary": "createSavedView",
|
|
1709
|
-
"description": "Creates a new saved view",
|
|
1710
|
-
"tags": [
|
|
1711
|
-
"Saved Views"
|
|
1712
|
-
],
|
|
1713
|
-
"requestBody": {
|
|
1714
|
-
"content": {
|
|
1715
|
-
"application/json": {
|
|
1716
|
-
"schema": {
|
|
1717
|
-
"$ref": "#/components/schemas/SavedView"
|
|
1718
|
-
}
|
|
1719
|
-
}
|
|
1720
|
-
}
|
|
1721
|
-
},
|
|
1722
|
-
"responses": {
|
|
1723
|
-
"201": {
|
|
1724
|
-
"description": "Success",
|
|
1725
|
-
"content": {
|
|
1726
|
-
"application/json": {
|
|
1727
|
-
"schema": {
|
|
1728
|
-
"$ref": "#/components/schemas/SavedViewItem"
|
|
1729
|
-
}
|
|
1730
|
-
}
|
|
1731
|
-
}
|
|
1732
|
-
}
|
|
1733
|
-
}
|
|
1734
|
-
}
|
|
1735
|
-
},
|
|
1736
|
-
"/v1/entity/view/{id}": {
|
|
1737
|
-
"get": {
|
|
1738
|
-
"operationId": "getSavedView",
|
|
1739
|
-
"summary": "getSavedView",
|
|
1740
|
-
"description": "Gets Saved View configuration by id.",
|
|
1741
|
-
"tags": [
|
|
1742
|
-
"Saved Views"
|
|
1743
|
-
],
|
|
1744
|
-
"parameters": [
|
|
1745
|
-
{
|
|
1746
|
-
"in": "path",
|
|
1747
|
-
"name": "id",
|
|
1748
|
-
"description": "View id",
|
|
1749
|
-
"required": true,
|
|
1750
|
-
"schema": {
|
|
1751
|
-
"$ref": "#/components/schemas/SavedViewId"
|
|
1752
|
-
}
|
|
1753
|
-
}
|
|
1754
|
-
],
|
|
1755
|
-
"responses": {
|
|
1756
|
-
"200": {
|
|
1757
|
-
"description": "Success",
|
|
1758
|
-
"content": {
|
|
1759
|
-
"application/json": {
|
|
1760
|
-
"schema": {
|
|
1761
|
-
"type": "object",
|
|
1762
|
-
"properties": {
|
|
1763
|
-
"view": {
|
|
1764
|
-
"$ref": "#/components/schemas/SavedViewItem"
|
|
1765
|
-
}
|
|
1766
|
-
}
|
|
1767
|
-
}
|
|
1768
|
-
}
|
|
1769
|
-
}
|
|
1770
|
-
}
|
|
1771
|
-
}
|
|
1772
|
-
},
|
|
1773
|
-
"put": {
|
|
1774
|
-
"operationId": "updateSavedView",
|
|
1775
|
-
"summary": "updateSavedView",
|
|
1776
|
-
"description": "Updates a saved view",
|
|
1777
|
-
"tags": [
|
|
1778
|
-
"Saved Views"
|
|
1779
|
-
],
|
|
1780
|
-
"parameters": [
|
|
1781
|
-
{
|
|
1782
|
-
"in": "path",
|
|
1783
|
-
"name": "id",
|
|
1784
|
-
"description": "View id",
|
|
1785
|
-
"required": true,
|
|
1786
|
-
"schema": {
|
|
1787
|
-
"$ref": "#/components/schemas/SavedViewId"
|
|
1788
|
-
}
|
|
1789
|
-
}
|
|
1790
|
-
],
|
|
1791
|
-
"requestBody": {
|
|
1792
|
-
"content": {
|
|
1793
|
-
"application/json": {
|
|
1794
|
-
"schema": {
|
|
1795
|
-
"$ref": "#/components/schemas/SavedView"
|
|
1796
|
-
}
|
|
1797
|
-
}
|
|
1798
|
-
}
|
|
1799
|
-
},
|
|
1800
|
-
"responses": {
|
|
1801
|
-
"200": {
|
|
1802
|
-
"description": "Success",
|
|
1803
|
-
"content": {
|
|
1804
|
-
"application/json": {
|
|
1805
|
-
"schema": {
|
|
1806
|
-
"$ref": "#/components/schemas/SavedViewItem"
|
|
1807
|
-
}
|
|
1808
|
-
}
|
|
1809
|
-
}
|
|
1810
|
-
}
|
|
1811
|
-
}
|
|
1812
|
-
},
|
|
1813
|
-
"delete": {
|
|
1814
|
-
"operationId": "deleteSavedView",
|
|
1815
|
-
"summary": "deleteSavedView",
|
|
1816
|
-
"description": "Deletes a saved view",
|
|
1817
|
-
"parameters": [
|
|
1818
|
-
{
|
|
1819
|
-
"in": "path",
|
|
1820
|
-
"name": "id",
|
|
1821
|
-
"description": "View id",
|
|
1822
|
-
"required": true,
|
|
1823
|
-
"schema": {
|
|
1824
|
-
"$ref": "#/components/schemas/SavedViewId"
|
|
1825
|
-
}
|
|
1826
|
-
}
|
|
1827
|
-
],
|
|
1828
|
-
"tags": [
|
|
1829
|
-
"Saved Views"
|
|
1830
|
-
],
|
|
1831
|
-
"responses": {
|
|
1832
|
-
"200": {
|
|
1833
|
-
"description": "List of all available saved views"
|
|
1834
|
-
}
|
|
1835
|
-
}
|
|
1836
|
-
}
|
|
1837
|
-
},
|
|
1838
|
-
"/v1/entity/listTaxonomies": {
|
|
1839
|
-
"get": {
|
|
1840
|
-
"operationId": "listTaxonomies",
|
|
1841
|
-
"summary": "listTaxonomies",
|
|
1842
|
-
"description": "List taxonomies in an organisation",
|
|
1843
|
-
"tags": [
|
|
1844
|
-
"Taxonomy"
|
|
1845
|
-
],
|
|
1846
|
-
"responses": {
|
|
1847
|
-
"200": {
|
|
1848
|
-
"description": "Returns list of taxonomies in an organisation",
|
|
1849
|
-
"content": {
|
|
1850
|
-
"application/json": {
|
|
1851
|
-
"schema": {
|
|
1852
|
-
"type": "object",
|
|
1853
|
-
"properties": {
|
|
1854
|
-
"results": {
|
|
1855
|
-
"type": "array",
|
|
1856
|
-
"items": {
|
|
1857
|
-
"$ref": "#/components/schemas/Taxonomy"
|
|
1858
|
-
}
|
|
1859
|
-
}
|
|
1860
|
-
}
|
|
1861
|
-
}
|
|
1862
|
-
}
|
|
1863
|
-
}
|
|
1864
|
-
}
|
|
1865
|
-
}
|
|
1866
|
-
}
|
|
1867
|
-
},
|
|
1868
|
-
"/v1/entity/taxonomies/{taxonomySlug}": {
|
|
1869
|
-
"get": {
|
|
1870
|
-
"operationId": "getTaxonomy",
|
|
1871
|
-
"summary": "getTaxonomy",
|
|
1872
|
-
"description": "Get taxonomy by slug",
|
|
1873
|
-
"tags": [
|
|
1874
|
-
"Taxonomy"
|
|
1875
|
-
],
|
|
1876
|
-
"parameters": [
|
|
1877
|
-
{
|
|
1878
|
-
"in": "path",
|
|
1879
|
-
"name": "taxonomySlug",
|
|
1880
|
-
"description": "Taxonomy slug to return taxonomy for",
|
|
1881
|
-
"schema": {
|
|
1882
|
-
"$ref": "#/components/schemas/TaxonomySlug"
|
|
1883
|
-
},
|
|
1884
|
-
"required": true
|
|
1885
|
-
}
|
|
1886
|
-
],
|
|
1887
|
-
"responses": {
|
|
1888
|
-
"200": {
|
|
1889
|
-
"description": "Taxonomy",
|
|
1890
|
-
"content": {
|
|
1891
|
-
"application/json": {
|
|
1892
|
-
"schema": {
|
|
1893
|
-
"$ref": "#/components/schemas/Taxonomy"
|
|
1894
|
-
}
|
|
1895
|
-
}
|
|
1896
|
-
}
|
|
1897
|
-
}
|
|
1898
|
-
}
|
|
1899
|
-
}
|
|
1900
|
-
},
|
|
1901
|
-
"/v1/entity/taxonomies/{taxonomySlug}:autocomplete": {
|
|
1902
|
-
"get": {
|
|
1903
|
-
"operationId": "taxonomyAutocomplete",
|
|
1904
|
-
"summary": "taxonomyAutocomplete",
|
|
1905
|
-
"description": "Taxonomies autocomplete",
|
|
1906
|
-
"tags": [
|
|
1907
|
-
"Taxonomy"
|
|
1908
|
-
],
|
|
1909
|
-
"parameters": [
|
|
1910
|
-
{
|
|
1911
|
-
"in": "path",
|
|
1912
|
-
"name": "taxonomySlug",
|
|
1913
|
-
"description": "Limit results to slug",
|
|
1914
|
-
"schema": {
|
|
1915
|
-
"type": "string"
|
|
1916
|
-
},
|
|
1917
|
-
"required": true
|
|
1918
|
-
},
|
|
1919
|
-
{
|
|
1920
|
-
"in": "query",
|
|
1921
|
-
"name": "query",
|
|
1922
|
-
"description": "Input to autocomplete",
|
|
1923
|
-
"schema": {
|
|
1924
|
-
"type": "string"
|
|
1925
|
-
}
|
|
1926
|
-
},
|
|
1927
|
-
{
|
|
1928
|
-
"in": "query",
|
|
1929
|
-
"name": "size",
|
|
1930
|
-
"description": "Minimum number of results to return",
|
|
1931
|
-
"schema": {
|
|
1932
|
-
"type": "number"
|
|
1933
|
-
}
|
|
1934
|
-
}
|
|
1935
|
-
],
|
|
1936
|
-
"responses": {
|
|
1937
|
-
"200": {
|
|
1938
|
-
"description": "Taxonomy classifications",
|
|
1939
|
-
"content": {
|
|
1940
|
-
"application/json": {
|
|
1941
|
-
"schema": {
|
|
1942
|
-
"type": "object",
|
|
1943
|
-
"properties": {
|
|
1944
|
-
"results": {
|
|
1945
|
-
"type": "array",
|
|
1946
|
-
"items": {
|
|
1947
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
1948
|
-
}
|
|
1949
|
-
}
|
|
1950
|
-
}
|
|
1951
|
-
}
|
|
1952
|
-
}
|
|
1953
|
-
}
|
|
1954
|
-
}
|
|
1955
|
-
}
|
|
1956
|
-
}
|
|
1957
|
-
},
|
|
1958
|
-
"/v1/entity/taxonomies/classifications:search": {
|
|
1959
|
-
"post": {
|
|
1960
|
-
"operationId": "taxonomiesClassificationsSearch",
|
|
1961
|
-
"summary": "taxonomiesClassificationsSearch",
|
|
1962
|
-
"description": "List taxonomy classifications in an organisation based on taxonomy slug",
|
|
1963
|
-
"tags": [
|
|
1964
|
-
"Taxonomy"
|
|
1965
|
-
],
|
|
1966
|
-
"parameters": [
|
|
1967
|
-
{
|
|
1968
|
-
"in": "query",
|
|
1969
|
-
"name": "taxonomySlug",
|
|
1970
|
-
"description": "Taxonomy slug",
|
|
1971
|
-
"schema": {
|
|
1972
|
-
"type": "string"
|
|
1973
|
-
},
|
|
1974
|
-
"required": true
|
|
1975
|
-
}
|
|
1976
|
-
],
|
|
1977
|
-
"requestBody": {
|
|
1978
|
-
"content": {
|
|
1979
|
-
"application/json": {
|
|
1980
|
-
"schema": {
|
|
1981
|
-
"type": "object",
|
|
1982
|
-
"properties": {
|
|
1983
|
-
"classificationIds": {
|
|
1984
|
-
"type": "array",
|
|
1985
|
-
"items": {
|
|
1986
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
1987
|
-
}
|
|
1988
|
-
}
|
|
1989
|
-
}
|
|
1181
|
+
"prepaid"
|
|
1182
|
+
]
|
|
1990
1183
|
}
|
|
1991
1184
|
}
|
|
1992
1185
|
}
|
|
1993
1186
|
},
|
|
1994
1187
|
"responses": {
|
|
1995
1188
|
"200": {
|
|
1996
|
-
"description": "
|
|
1189
|
+
"description": "Success",
|
|
1997
1190
|
"content": {
|
|
1998
1191
|
"application/json": {
|
|
1999
1192
|
"schema": {
|
|
2000
|
-
"
|
|
2001
|
-
"properties": {
|
|
2002
|
-
"results": {
|
|
2003
|
-
"type": "array",
|
|
2004
|
-
"items": {
|
|
2005
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
2006
|
-
}
|
|
2007
|
-
}
|
|
2008
|
-
}
|
|
1193
|
+
"$ref": "#/components/schemas/RelationItem"
|
|
2009
1194
|
}
|
|
2010
1195
|
}
|
|
2011
1196
|
}
|
|
2012
1197
|
}
|
|
2013
1198
|
}
|
|
1199
|
+
},
|
|
1200
|
+
"delete": {
|
|
1201
|
+
"operationId": "deleteRelation",
|
|
1202
|
+
"summary": "deleteRelation",
|
|
1203
|
+
"description": "It deletes a relation between one entity and the other.",
|
|
1204
|
+
"tags": [
|
|
1205
|
+
"Relations"
|
|
1206
|
+
],
|
|
1207
|
+
"parameters": [
|
|
1208
|
+
{
|
|
1209
|
+
"in": "path",
|
|
1210
|
+
"name": "slug",
|
|
1211
|
+
"description": "Entity Type",
|
|
1212
|
+
"required": true,
|
|
1213
|
+
"schema": {
|
|
1214
|
+
"$ref": "#/components/schemas/EntitySlug"
|
|
1215
|
+
}
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"in": "path",
|
|
1219
|
+
"name": "id",
|
|
1220
|
+
"description": "Entity id",
|
|
1221
|
+
"required": true,
|
|
1222
|
+
"schema": {
|
|
1223
|
+
"$ref": "#/components/schemas/EntityId"
|
|
1224
|
+
}
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"in": "path",
|
|
1228
|
+
"name": "attribute",
|
|
1229
|
+
"description": "The attribute that express meaning",
|
|
1230
|
+
"required": true,
|
|
1231
|
+
"schema": {
|
|
1232
|
+
"type": "string"
|
|
1233
|
+
}
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"in": "path",
|
|
1237
|
+
"name": "entity_id",
|
|
1238
|
+
"description": "The attribute that express meaning",
|
|
1239
|
+
"required": true,
|
|
1240
|
+
"schema": {
|
|
1241
|
+
"type": "string"
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
],
|
|
1245
|
+
"responses": {
|
|
1246
|
+
"204": {
|
|
1247
|
+
"description": "Relation deleted with success."
|
|
1248
|
+
}
|
|
1249
|
+
}
|
|
2014
1250
|
}
|
|
2015
1251
|
},
|
|
2016
|
-
"/v1/entity
|
|
1252
|
+
"/v1/entity:export": {
|
|
2017
1253
|
"post": {
|
|
2018
|
-
"operationId": "
|
|
2019
|
-
"summary": "
|
|
2020
|
-
"description": "
|
|
1254
|
+
"operationId": "exportEntities",
|
|
1255
|
+
"summary": "exportEntities",
|
|
1256
|
+
"description": "create export file of entities",
|
|
2021
1257
|
"tags": [
|
|
2022
|
-
"
|
|
1258
|
+
"Export"
|
|
2023
1259
|
],
|
|
2024
1260
|
"parameters": [
|
|
2025
1261
|
{
|
|
2026
|
-
"in": "
|
|
2027
|
-
"name": "
|
|
2028
|
-
"description": "
|
|
1262
|
+
"in": "query",
|
|
1263
|
+
"name": "job_id",
|
|
1264
|
+
"description": "Export Job Id to get the result",
|
|
2029
1265
|
"schema": {
|
|
2030
|
-
"
|
|
2031
|
-
}
|
|
2032
|
-
"required": true
|
|
1266
|
+
"$ref": "#/components/schemas/ExportJobId"
|
|
1267
|
+
}
|
|
2033
1268
|
}
|
|
2034
1269
|
],
|
|
2035
1270
|
"requestBody": {
|
|
2036
1271
|
"content": {
|
|
2037
1272
|
"application/json": {
|
|
2038
1273
|
"schema": {
|
|
2039
|
-
"$ref": "#/components/schemas/
|
|
1274
|
+
"$ref": "#/components/schemas/EntitySearchParams"
|
|
2040
1275
|
}
|
|
2041
1276
|
}
|
|
2042
1277
|
}
|
|
2043
1278
|
},
|
|
2044
1279
|
"responses": {
|
|
2045
|
-
"
|
|
2046
|
-
"description": "
|
|
2047
|
-
"content": {
|
|
2048
|
-
"application/json": {
|
|
2049
|
-
"schema": {
|
|
2050
|
-
"type": "object",
|
|
2051
|
-
"properties": {
|
|
2052
|
-
"created": {
|
|
2053
|
-
"type": "array",
|
|
2054
|
-
"items": {
|
|
2055
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
2056
|
-
}
|
|
2057
|
-
},
|
|
2058
|
-
"updated": {
|
|
2059
|
-
"type": "array",
|
|
2060
|
-
"items": {
|
|
2061
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
2062
|
-
}
|
|
2063
|
-
},
|
|
2064
|
-
"deleted": {
|
|
2065
|
-
"type": "object",
|
|
2066
|
-
"items": {
|
|
2067
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
2068
|
-
}
|
|
2069
|
-
}
|
|
2070
|
-
}
|
|
2071
|
-
}
|
|
2072
|
-
}
|
|
2073
|
-
}
|
|
1280
|
+
"201": {
|
|
1281
|
+
"description": "created export url and download url"
|
|
2074
1282
|
}
|
|
2075
1283
|
}
|
|
2076
1284
|
}
|
|
@@ -2096,14 +1304,6 @@
|
|
|
2096
1304
|
"description": "Export Job Id to get the result",
|
|
2097
1305
|
"type": "string"
|
|
2098
1306
|
},
|
|
2099
|
-
"Language": {
|
|
2100
|
-
"description": "Export headers translation Language",
|
|
2101
|
-
"type": "string"
|
|
2102
|
-
},
|
|
2103
|
-
"IsTemplate": {
|
|
2104
|
-
"description": "Pass 'true' to generate import template",
|
|
2105
|
-
"type": "boolean"
|
|
2106
|
-
},
|
|
2107
1307
|
"SchemaId": {
|
|
2108
1308
|
"description": "Generated uuid for schema",
|
|
2109
1309
|
"type": "string",
|
|
@@ -2133,7 +1333,7 @@
|
|
|
2133
1333
|
"type": "array",
|
|
2134
1334
|
"items": {
|
|
2135
1335
|
"type": "string",
|
|
2136
|
-
"example": "
|
|
1336
|
+
"example": "ecommerce_preview"
|
|
2137
1337
|
}
|
|
2138
1338
|
},
|
|
2139
1339
|
"name": {
|
|
@@ -2166,56 +1366,16 @@
|
|
|
2166
1366
|
"type": "object",
|
|
2167
1367
|
"properties": {
|
|
2168
1368
|
"table_view": {
|
|
2169
|
-
"
|
|
2170
|
-
{
|
|
2171
|
-
"$ref": "#/components/schemas/EntityDefaultTable"
|
|
2172
|
-
},
|
|
2173
|
-
{
|
|
2174
|
-
"$ref": "#/components/schemas/RedirectEntityView"
|
|
2175
|
-
},
|
|
2176
|
-
{
|
|
2177
|
-
"$ref": "#/components/schemas/EntityViewDisabled"
|
|
2178
|
-
}
|
|
2179
|
-
]
|
|
1369
|
+
"$ref": "#/components/schemas/EntityViewConfig"
|
|
2180
1370
|
},
|
|
2181
1371
|
"create_view": {
|
|
2182
|
-
"
|
|
2183
|
-
{
|
|
2184
|
-
"$ref": "#/components/schemas/EntityDefaultCreate"
|
|
2185
|
-
},
|
|
2186
|
-
{
|
|
2187
|
-
"$ref": "#/components/schemas/RedirectEntityView"
|
|
2188
|
-
},
|
|
2189
|
-
{
|
|
2190
|
-
"$ref": "#/components/schemas/EntityViewDisabled"
|
|
2191
|
-
}
|
|
2192
|
-
]
|
|
1372
|
+
"$ref": "#/components/schemas/EntityViewConfig"
|
|
2193
1373
|
},
|
|
2194
1374
|
"edit_view": {
|
|
2195
|
-
"
|
|
2196
|
-
{
|
|
2197
|
-
"$ref": "#/components/schemas/EntityDefaultEdit"
|
|
2198
|
-
},
|
|
2199
|
-
{
|
|
2200
|
-
"$ref": "#/components/schemas/RedirectEntityView"
|
|
2201
|
-
},
|
|
2202
|
-
{
|
|
2203
|
-
"$ref": "#/components/schemas/EntityViewDisabled"
|
|
2204
|
-
}
|
|
2205
|
-
]
|
|
1375
|
+
"$ref": "#/components/schemas/EntityViewConfig"
|
|
2206
1376
|
},
|
|
2207
1377
|
"single_view": {
|
|
2208
|
-
"
|
|
2209
|
-
{
|
|
2210
|
-
"$ref": "#/components/schemas/EntityDefaultEdit"
|
|
2211
|
-
},
|
|
2212
|
-
{
|
|
2213
|
-
"$ref": "#/components/schemas/RedirectEntityView"
|
|
2214
|
-
},
|
|
2215
|
-
{
|
|
2216
|
-
"$ref": "#/components/schemas/EntityViewDisabled"
|
|
2217
|
-
}
|
|
2218
|
-
]
|
|
1378
|
+
"$ref": "#/components/schemas/EntityViewConfig"
|
|
2219
1379
|
},
|
|
2220
1380
|
"list_item": {
|
|
2221
1381
|
"type": "object",
|
|
@@ -2299,12 +1459,6 @@
|
|
|
2299
1459
|
"type": "string"
|
|
2300
1460
|
}
|
|
2301
1461
|
}
|
|
2302
|
-
},
|
|
2303
|
-
"_purpose": {
|
|
2304
|
-
"type": "array",
|
|
2305
|
-
"items": {
|
|
2306
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
2307
|
-
}
|
|
2308
1462
|
}
|
|
2309
1463
|
},
|
|
2310
1464
|
"required": [
|
|
@@ -2327,16 +1481,16 @@
|
|
|
2327
1481
|
},
|
|
2328
1482
|
"layout_settings": {
|
|
2329
1483
|
"type": "object",
|
|
2330
|
-
"description": "Custom grid definitions for the layout
|
|
2331
|
-
"additionalProperties":
|
|
2332
|
-
|
|
2333
|
-
"
|
|
2334
|
-
"
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
1484
|
+
"description": "Custom grid definitions for the layout",
|
|
1485
|
+
"additionalProperties": {
|
|
1486
|
+
"type": "object",
|
|
1487
|
+
"properties": {
|
|
1488
|
+
"grid_gap": {
|
|
1489
|
+
"type": "string"
|
|
1490
|
+
},
|
|
1491
|
+
"grid_template_columns": {
|
|
1492
|
+
"type": "string"
|
|
1493
|
+
}
|
|
2340
1494
|
}
|
|
2341
1495
|
}
|
|
2342
1496
|
},
|
|
@@ -2518,9 +1672,6 @@
|
|
|
2518
1672
|
},
|
|
2519
1673
|
{
|
|
2520
1674
|
"$ref": "#/components/schemas/InternalUserAttribute"
|
|
2521
|
-
},
|
|
2522
|
-
{
|
|
2523
|
-
"$ref": "#/components/schemas/PurposeAttribute"
|
|
2524
1675
|
}
|
|
2525
1676
|
]
|
|
2526
1677
|
},
|
|
@@ -2557,19 +1708,34 @@
|
|
|
2557
1708
|
"type": "boolean",
|
|
2558
1709
|
"default": false
|
|
2559
1710
|
},
|
|
2560
|
-
"default_value": {
|
|
1711
|
+
"default_value": {
|
|
1712
|
+
"oneOf": [
|
|
1713
|
+
{
|
|
1714
|
+
"type": "string"
|
|
1715
|
+
},
|
|
1716
|
+
{
|
|
1717
|
+
"type": "object",
|
|
1718
|
+
"additionalProperties": true
|
|
1719
|
+
},
|
|
1720
|
+
{
|
|
1721
|
+
"type": "integer"
|
|
1722
|
+
},
|
|
1723
|
+
{
|
|
1724
|
+
"type": "number"
|
|
1725
|
+
},
|
|
1726
|
+
{
|
|
1727
|
+
"type": "boolean"
|
|
1728
|
+
},
|
|
1729
|
+
{
|
|
1730
|
+
"type": "array"
|
|
1731
|
+
}
|
|
1732
|
+
]
|
|
1733
|
+
},
|
|
2561
1734
|
"group": {
|
|
2562
|
-
"description": "Which group the attribute should appear in. Accepts group ID or group name",
|
|
2563
1735
|
"type": "string"
|
|
2564
1736
|
},
|
|
2565
|
-
"order": {
|
|
2566
|
-
"description": "Attribute sort order (ascending) in group",
|
|
2567
|
-
"type": "integer",
|
|
2568
|
-
"example": 0
|
|
2569
|
-
},
|
|
2570
1737
|
"layout": {
|
|
2571
|
-
"type": "string"
|
|
2572
|
-
"example": "full_width"
|
|
1738
|
+
"type": "string"
|
|
2573
1739
|
},
|
|
2574
1740
|
"hide_label": {
|
|
2575
1741
|
"type": "boolean",
|
|
@@ -2583,12 +1749,6 @@
|
|
|
2583
1749
|
"type": "string",
|
|
2584
1750
|
"description": "Defines the conditional rendering expression for showing this field.\nWhen a valid expression is parsed, their evaluation defines the visibility of this attribute.\nNote: Empty or invalid expression have no effect on the field visibility.\n"
|
|
2585
1751
|
},
|
|
2586
|
-
"_purpose": {
|
|
2587
|
-
"type": "array",
|
|
2588
|
-
"items": {
|
|
2589
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
2590
|
-
}
|
|
2591
|
-
},
|
|
2592
1752
|
"constraints": {
|
|
2593
1753
|
"type": "object",
|
|
2594
1754
|
"description": "A set of constraints applicable to the attribute.\nThese constraints should and will be enforced by the attribute renderer.\n",
|
|
@@ -2766,6 +1926,10 @@
|
|
|
2766
1926
|
"type": "array",
|
|
2767
1927
|
"items": {
|
|
2768
1928
|
"anyOf": [
|
|
1929
|
+
{
|
|
1930
|
+
"type": "string",
|
|
1931
|
+
"nullable": true
|
|
1932
|
+
},
|
|
2769
1933
|
{
|
|
2770
1934
|
"type": "object",
|
|
2771
1935
|
"properties": {
|
|
@@ -2779,10 +1943,6 @@
|
|
|
2779
1943
|
"required": [
|
|
2780
1944
|
"value"
|
|
2781
1945
|
]
|
|
2782
|
-
},
|
|
2783
|
-
{
|
|
2784
|
-
"type": "string",
|
|
2785
|
-
"nullable": true
|
|
2786
1946
|
}
|
|
2787
1947
|
]
|
|
2788
1948
|
}
|
|
@@ -3075,20 +2235,13 @@
|
|
|
3075
2235
|
"has_one"
|
|
3076
2236
|
]
|
|
3077
2237
|
},
|
|
3078
|
-
"
|
|
3079
|
-
"
|
|
3080
|
-
"
|
|
3081
|
-
|
|
3082
|
-
|
|
3083
|
-
"example": "contact.account"
|
|
3084
|
-
},
|
|
3085
|
-
"example": {
|
|
3086
|
-
"contact": "account",
|
|
3087
|
-
"opportunity": "customer"
|
|
3088
|
-
}
|
|
2238
|
+
"delete_mode": {
|
|
2239
|
+
"type": "string",
|
|
2240
|
+
"enum": [
|
|
2241
|
+
"cascade"
|
|
2242
|
+
]
|
|
3089
2243
|
},
|
|
3090
2244
|
"relation_affinity_mode": {
|
|
3091
|
-
"description": "Weak relation attributes are kept when duplicating an entity. Strong relation attributes are discarded when duplicating an entity.",
|
|
3092
2245
|
"type": "string",
|
|
3093
2246
|
"enum": [
|
|
3094
2247
|
"weak",
|
|
@@ -3207,14 +2360,6 @@
|
|
|
3207
2360
|
"type": "boolean",
|
|
3208
2361
|
"default": true,
|
|
3209
2362
|
"description": "When enable_relation_tags is set to true the user will be able to set tags(labels) in each relation item."
|
|
3210
|
-
},
|
|
3211
|
-
"add_button_label": {
|
|
3212
|
-
"type": "string",
|
|
3213
|
-
"description": "Optional label for the add button. The translated value for add_button_lable is used, if found else the string is used as is."
|
|
3214
|
-
},
|
|
3215
|
-
"search_placeholder": {
|
|
3216
|
-
"type": "string",
|
|
3217
|
-
"description": "Optional placeholder text for the relation search input. The translated value for search_placeholder is used, if found else the string is used as is."
|
|
3218
2363
|
}
|
|
3219
2364
|
}
|
|
3220
2365
|
}
|
|
@@ -3344,28 +2489,6 @@
|
|
|
3344
2489
|
}
|
|
3345
2490
|
]
|
|
3346
2491
|
},
|
|
3347
|
-
"PurposeAttribute": {
|
|
3348
|
-
"allOf": [
|
|
3349
|
-
{
|
|
3350
|
-
"$ref": "#/components/schemas/BaseAttribute"
|
|
3351
|
-
},
|
|
3352
|
-
{
|
|
3353
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
3354
|
-
},
|
|
3355
|
-
{
|
|
3356
|
-
"type": "object",
|
|
3357
|
-
"description": "Entity Taxonomy",
|
|
3358
|
-
"properties": {
|
|
3359
|
-
"type": {
|
|
3360
|
-
"type": "string",
|
|
3361
|
-
"enum": [
|
|
3362
|
-
"purpose"
|
|
3363
|
-
]
|
|
3364
|
-
}
|
|
3365
|
-
}
|
|
3366
|
-
}
|
|
3367
|
-
]
|
|
3368
|
-
},
|
|
3369
2492
|
"RepeatableAttribute": {
|
|
3370
2493
|
"allOf": [
|
|
3371
2494
|
{
|
|
@@ -3382,7 +2505,6 @@
|
|
|
3382
2505
|
"type": "boolean"
|
|
3383
2506
|
},
|
|
3384
2507
|
"relation_affinity_mode": {
|
|
3385
|
-
"description": "Weak repeatable attributes are kept when duplicating an entity. Strong repeatable attributes are discarded when duplicating an entity.",
|
|
3386
2508
|
"type": "string",
|
|
3387
2509
|
"enum": [
|
|
3388
2510
|
"weak",
|
|
@@ -3553,6 +2675,41 @@
|
|
|
3553
2675
|
}
|
|
3554
2676
|
]
|
|
3555
2677
|
},
|
|
2678
|
+
"Attachment": {
|
|
2679
|
+
"type": "object",
|
|
2680
|
+
"deprecated": true,
|
|
2681
|
+
"properties": {
|
|
2682
|
+
"key": {
|
|
2683
|
+
"type": "string"
|
|
2684
|
+
},
|
|
2685
|
+
"mime": {
|
|
2686
|
+
"type": "string"
|
|
2687
|
+
},
|
|
2688
|
+
"name": {
|
|
2689
|
+
"type": "string"
|
|
2690
|
+
},
|
|
2691
|
+
"size": {
|
|
2692
|
+
"type": "number"
|
|
2693
|
+
},
|
|
2694
|
+
"image_url": {
|
|
2695
|
+
"type": "string"
|
|
2696
|
+
},
|
|
2697
|
+
"download_url": {
|
|
2698
|
+
"type": "string"
|
|
2699
|
+
},
|
|
2700
|
+
"alt_text": {
|
|
2701
|
+
"type": "string"
|
|
2702
|
+
}
|
|
2703
|
+
},
|
|
2704
|
+
"required": [
|
|
2705
|
+
"key",
|
|
2706
|
+
"mime",
|
|
2707
|
+
"name",
|
|
2708
|
+
"size",
|
|
2709
|
+
"image_url",
|
|
2710
|
+
"download_url"
|
|
2711
|
+
]
|
|
2712
|
+
},
|
|
3556
2713
|
"SummaryAttribute": {
|
|
3557
2714
|
"description": "Represents an expanded version of an attribute to be displayed in the list item summary.\nThis configuration can be used in the following way:\n```js\n{\n \"label\": \"Price components\"\n \"value\": \"{{item.prices.length}} price components\"\n \"show_as_tag\": true\n \"render_condition\": \"is_composite_price = \"true\"\"\n}\n```\nThe value field supports handlebar expressions from which you can pick any field from the entity state.\n",
|
|
3558
2715
|
"type": "object",
|
|
@@ -3616,12 +2773,6 @@
|
|
|
3616
2773
|
"$ref": "#/components/schemas/Attribute"
|
|
3617
2774
|
}
|
|
3618
2775
|
},
|
|
3619
|
-
"_purpose": {
|
|
3620
|
-
"type": "array",
|
|
3621
|
-
"items": {
|
|
3622
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
3623
|
-
}
|
|
3624
|
-
},
|
|
3625
2776
|
"ui_hooks": {
|
|
3626
2777
|
"type": "array",
|
|
3627
2778
|
"items": {
|
|
@@ -3715,9 +2866,31 @@
|
|
|
3715
2866
|
"type": "boolean",
|
|
3716
2867
|
"description": "Only show capability for legacy tenants (ivy)"
|
|
3717
2868
|
}
|
|
3718
|
-
},
|
|
3719
|
-
"required": [
|
|
3720
|
-
"name"
|
|
2869
|
+
},
|
|
2870
|
+
"required": [
|
|
2871
|
+
"name"
|
|
2872
|
+
]
|
|
2873
|
+
},
|
|
2874
|
+
"EntityViewConfig": {
|
|
2875
|
+
"anyOf": [
|
|
2876
|
+
{
|
|
2877
|
+
"$ref": "#/components/schemas/EntityDefaultCreate"
|
|
2878
|
+
},
|
|
2879
|
+
{
|
|
2880
|
+
"$ref": "#/components/schemas/EntityDefaultEdit"
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
"$ref": "#/components/schemas/EntityDefaultOverview"
|
|
2884
|
+
},
|
|
2885
|
+
{
|
|
2886
|
+
"$ref": "#/components/schemas/RedirectEntityView"
|
|
2887
|
+
},
|
|
2888
|
+
{
|
|
2889
|
+
"$ref": "#/components/schemas/EntityParcelView"
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"$ref": "#/components/schemas/EntityViewDisabled"
|
|
2893
|
+
}
|
|
3721
2894
|
]
|
|
3722
2895
|
},
|
|
3723
2896
|
"EntityViewDisabled": {
|
|
@@ -3731,7 +2904,7 @@
|
|
|
3731
2904
|
}
|
|
3732
2905
|
}
|
|
3733
2906
|
},
|
|
3734
|
-
"
|
|
2907
|
+
"EntityDefaultOverview": {
|
|
3735
2908
|
"type": "object",
|
|
3736
2909
|
"properties": {
|
|
3737
2910
|
"view_type": {
|
|
@@ -3789,7 +2962,7 @@
|
|
|
3789
2962
|
},
|
|
3790
2963
|
"uri": {
|
|
3791
2964
|
"type": "string",
|
|
3792
|
-
"format": "uri
|
|
2965
|
+
"format": "uri"
|
|
3793
2966
|
}
|
|
3794
2967
|
}
|
|
3795
2968
|
}
|
|
@@ -3804,45 +2977,9 @@
|
|
|
3804
2977
|
"type": "string"
|
|
3805
2978
|
}
|
|
3806
2979
|
},
|
|
3807
|
-
"navbar_actions": {
|
|
3808
|
-
"type": "array",
|
|
3809
|
-
"items": {
|
|
3810
|
-
"type": "object",
|
|
3811
|
-
"properties": {
|
|
3812
|
-
"type": {
|
|
3813
|
-
"type": "string"
|
|
3814
|
-
},
|
|
3815
|
-
"options": {
|
|
3816
|
-
"type": "array",
|
|
3817
|
-
"items": {
|
|
3818
|
-
"type": "object",
|
|
3819
|
-
"properties": {
|
|
3820
|
-
"label": {
|
|
3821
|
-
"type": "string"
|
|
3822
|
-
},
|
|
3823
|
-
"params": {
|
|
3824
|
-
"type": "object"
|
|
3825
|
-
}
|
|
3826
|
-
},
|
|
3827
|
-
"required": [
|
|
3828
|
-
"label"
|
|
3829
|
-
]
|
|
3830
|
-
}
|
|
3831
|
-
}
|
|
3832
|
-
},
|
|
3833
|
-
"required": [
|
|
3834
|
-
"type"
|
|
3835
|
-
]
|
|
3836
|
-
}
|
|
3837
|
-
},
|
|
3838
|
-
"enable_thumbnails": {
|
|
3839
|
-
"description": "Enable the thumbnail column",
|
|
3840
|
-
"type": "boolean",
|
|
3841
|
-
"default": false
|
|
3842
|
-
},
|
|
3843
2980
|
"classic_view": {
|
|
3844
2981
|
"type": "string",
|
|
3845
|
-
"format": "uri
|
|
2982
|
+
"format": "uri"
|
|
3846
2983
|
}
|
|
3847
2984
|
}
|
|
3848
2985
|
},
|
|
@@ -3921,34 +3058,39 @@
|
|
|
3921
3058
|
"route": "/app/pricing-hub/product/:entityId"
|
|
3922
3059
|
}
|
|
3923
3060
|
},
|
|
3061
|
+
"EntityParcelView": {
|
|
3062
|
+
"type": "object",
|
|
3063
|
+
"properties": {
|
|
3064
|
+
"view_type": {
|
|
3065
|
+
"type": "string",
|
|
3066
|
+
"enum": [
|
|
3067
|
+
"parcel"
|
|
3068
|
+
]
|
|
3069
|
+
},
|
|
3070
|
+
"import": {
|
|
3071
|
+
"type": "string",
|
|
3072
|
+
"example": "@epilot360/pricing-hub-app"
|
|
3073
|
+
}
|
|
3074
|
+
},
|
|
3075
|
+
"example": {
|
|
3076
|
+
"type": "redirect",
|
|
3077
|
+
"route": "/app/pricing-hub/product/:entityId"
|
|
3078
|
+
}
|
|
3079
|
+
},
|
|
3924
3080
|
"EntityId": {
|
|
3925
3081
|
"type": "string",
|
|
3926
3082
|
"format": "uuid"
|
|
3927
3083
|
},
|
|
3928
3084
|
"BaseEntity": {
|
|
3929
|
-
"allOf": [
|
|
3930
|
-
{
|
|
3931
|
-
"$ref": "#/components/schemas/Entity"
|
|
3932
|
-
},
|
|
3933
|
-
{
|
|
3934
|
-
"required": [
|
|
3935
|
-
"_id",
|
|
3936
|
-
"_title",
|
|
3937
|
-
"_org",
|
|
3938
|
-
"_schema",
|
|
3939
|
-
"_created_at",
|
|
3940
|
-
"_updated_at"
|
|
3941
|
-
]
|
|
3942
|
-
}
|
|
3943
|
-
]
|
|
3944
|
-
},
|
|
3945
|
-
"Entity": {
|
|
3946
3085
|
"type": "object",
|
|
3947
|
-
"additionalProperties": true,
|
|
3948
3086
|
"properties": {
|
|
3949
3087
|
"_id": {
|
|
3950
3088
|
"$ref": "#/components/schemas/EntityId"
|
|
3951
3089
|
},
|
|
3090
|
+
"_title": {
|
|
3091
|
+
"type": "string",
|
|
3092
|
+
"description": "Title of entity"
|
|
3093
|
+
},
|
|
3952
3094
|
"_org": {
|
|
3953
3095
|
"type": "string",
|
|
3954
3096
|
"description": "Organization Id the entity belongs to"
|
|
@@ -3956,29 +3098,29 @@
|
|
|
3956
3098
|
"_schema": {
|
|
3957
3099
|
"$ref": "#/components/schemas/EntitySlug"
|
|
3958
3100
|
},
|
|
3959
|
-
"_title": {
|
|
3960
|
-
"type": "string",
|
|
3961
|
-
"description": "Title of entity",
|
|
3962
|
-
"nullable": true
|
|
3963
|
-
},
|
|
3964
3101
|
"_tags": {
|
|
3965
3102
|
"type": "array",
|
|
3966
3103
|
"items": {
|
|
3967
3104
|
"type": "string"
|
|
3968
|
-
}
|
|
3969
|
-
"nullable": true
|
|
3105
|
+
}
|
|
3970
3106
|
},
|
|
3971
3107
|
"_created_at": {
|
|
3972
3108
|
"type": "string",
|
|
3973
|
-
"format": "date-time"
|
|
3974
|
-
"nullable": true
|
|
3109
|
+
"format": "date-time"
|
|
3975
3110
|
},
|
|
3976
3111
|
"_updated_at": {
|
|
3977
3112
|
"type": "string",
|
|
3978
|
-
"format": "date-time"
|
|
3979
|
-
"nullable": true
|
|
3113
|
+
"format": "date-time"
|
|
3980
3114
|
}
|
|
3981
3115
|
},
|
|
3116
|
+
"required": [
|
|
3117
|
+
"_id",
|
|
3118
|
+
"_title",
|
|
3119
|
+
"_org",
|
|
3120
|
+
"_schema",
|
|
3121
|
+
"_created_at",
|
|
3122
|
+
"_updated_at"
|
|
3123
|
+
],
|
|
3982
3124
|
"example": {
|
|
3983
3125
|
"_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
|
|
3984
3126
|
"_org": "123",
|
|
@@ -3991,6 +3133,11 @@
|
|
|
3991
3133
|
"_updated_at": "2021-02-09T12:41:43.662Z"
|
|
3992
3134
|
}
|
|
3993
3135
|
},
|
|
3136
|
+
"Entity": {
|
|
3137
|
+
"type": "object",
|
|
3138
|
+
"properties": {},
|
|
3139
|
+
"additionalProperties": true
|
|
3140
|
+
},
|
|
3994
3141
|
"HydratedEntity": {
|
|
3995
3142
|
"type": "object",
|
|
3996
3143
|
"description": "Entity with relation data resolved into the attribute values",
|
|
@@ -4082,18 +3229,6 @@
|
|
|
4082
3229
|
]
|
|
4083
3230
|
}
|
|
4084
3231
|
},
|
|
4085
|
-
"GetRelationsRespWithPagination": {
|
|
4086
|
-
"type": "object",
|
|
4087
|
-
"properties": {
|
|
4088
|
-
"hits": {
|
|
4089
|
-
"type": "number",
|
|
4090
|
-
"example": 1
|
|
4091
|
-
},
|
|
4092
|
-
"relations": {
|
|
4093
|
-
"$ref": "#/components/schemas/GetRelationsResp"
|
|
4094
|
-
}
|
|
4095
|
-
}
|
|
4096
|
-
},
|
|
4097
3232
|
"RelationEntity": {
|
|
4098
3233
|
"allOf": [
|
|
4099
3234
|
{
|
|
@@ -4123,10 +3258,6 @@
|
|
|
4123
3258
|
"items": {
|
|
4124
3259
|
"type": "string"
|
|
4125
3260
|
}
|
|
4126
|
-
},
|
|
4127
|
-
"reverse": {
|
|
4128
|
-
"description": "Whether this is a reverse relation",
|
|
4129
|
-
"type": "boolean"
|
|
4130
3261
|
}
|
|
4131
3262
|
},
|
|
4132
3263
|
"required": [
|
|
@@ -4153,9 +3284,8 @@
|
|
|
4153
3284
|
},
|
|
4154
3285
|
"size": {
|
|
4155
3286
|
"type": "integer",
|
|
4156
|
-
"minimum":
|
|
4157
|
-
"default": 10
|
|
4158
|
-
"description": "Max search size is 1000 with higher values defaulting to 1000"
|
|
3287
|
+
"minimum": 1,
|
|
3288
|
+
"default": 10
|
|
4159
3289
|
},
|
|
4160
3290
|
"hydrate": {
|
|
4161
3291
|
"type": "boolean",
|
|
@@ -4173,58 +3303,12 @@
|
|
|
4173
3303
|
"_title",
|
|
4174
3304
|
"first_name"
|
|
4175
3305
|
]
|
|
4176
|
-
},
|
|
4177
|
-
"include_scores": {
|
|
4178
|
-
"type": "boolean",
|
|
4179
|
-
"default": false,
|
|
4180
|
-
"description": "Adds a `_score` number field to results that can be used to rank by match score"
|
|
4181
|
-
},
|
|
4182
|
-
"aggs": {
|
|
4183
|
-
"type": "object",
|
|
4184
|
-
"description": "Aggregation supported by ElasticSearch allows summarizing data as metrics, statistics, or other analytics.",
|
|
4185
|
-
"example": {
|
|
4186
|
-
"contact-count-per-tag": {
|
|
4187
|
-
"terms": {
|
|
4188
|
-
"field": "_tags.keyword"
|
|
4189
|
-
}
|
|
4190
|
-
}
|
|
4191
|
-
}
|
|
4192
3306
|
}
|
|
4193
3307
|
},
|
|
4194
3308
|
"required": [
|
|
4195
3309
|
"q"
|
|
4196
3310
|
]
|
|
4197
3311
|
},
|
|
4198
|
-
"EntityImportParams": {
|
|
4199
|
-
"type": "object",
|
|
4200
|
-
"properties": {
|
|
4201
|
-
"S3Reference": {
|
|
4202
|
-
"type": "object",
|
|
4203
|
-
"properties": {
|
|
4204
|
-
"bucket": {
|
|
4205
|
-
"type": "string",
|
|
4206
|
-
"example": "epilot-files-prod"
|
|
4207
|
-
},
|
|
4208
|
-
"key": {
|
|
4209
|
-
"type": "string",
|
|
4210
|
-
"example": "123/4d689aeb-1497-4410-a9fe-b36ca9ac4389/document.pdf"
|
|
4211
|
-
}
|
|
4212
|
-
},
|
|
4213
|
-
"required": [
|
|
4214
|
-
"bucket",
|
|
4215
|
-
"key"
|
|
4216
|
-
]
|
|
4217
|
-
},
|
|
4218
|
-
"schema": {
|
|
4219
|
-
"type": "string",
|
|
4220
|
-
"example": "contact"
|
|
4221
|
-
}
|
|
4222
|
-
},
|
|
4223
|
-
"required": [
|
|
4224
|
-
"S3Reference",
|
|
4225
|
-
"schema"
|
|
4226
|
-
]
|
|
4227
|
-
},
|
|
4228
3312
|
"EntitySearchResults": {
|
|
4229
3313
|
"type": "object",
|
|
4230
3314
|
"properties": {
|
|
@@ -4237,25 +3321,6 @@
|
|
|
4237
3321
|
"items": {
|
|
4238
3322
|
"$ref": "#/components/schemas/EntityItem"
|
|
4239
3323
|
}
|
|
4240
|
-
},
|
|
4241
|
-
"aggregations": {
|
|
4242
|
-
"type": "object",
|
|
4243
|
-
"example": {
|
|
4244
|
-
"contact-count-per-tag": {
|
|
4245
|
-
"doc_count_error_upper_bound": 0,
|
|
4246
|
-
"sum_other_doc_count": 23,
|
|
4247
|
-
"buckets": [
|
|
4248
|
-
{
|
|
4249
|
-
"key": "automation",
|
|
4250
|
-
"doc_count": 108
|
|
4251
|
-
},
|
|
4252
|
-
{
|
|
4253
|
-
"key": "primary",
|
|
4254
|
-
"doc_count": 66
|
|
4255
|
-
}
|
|
4256
|
-
]
|
|
4257
|
-
}
|
|
4258
|
-
}
|
|
4259
3324
|
}
|
|
4260
3325
|
}
|
|
4261
3326
|
},
|
|
@@ -4488,11 +3553,6 @@
|
|
|
4488
3553
|
{
|
|
4489
3554
|
"type": "object",
|
|
4490
3555
|
"properties": {
|
|
4491
|
-
"operations_total": {
|
|
4492
|
-
"type": "integer",
|
|
4493
|
-
"description": "Count of total operations attached to this activity",
|
|
4494
|
-
"example": 1
|
|
4495
|
-
},
|
|
4496
3556
|
"operations": {
|
|
4497
3557
|
"type": "array",
|
|
4498
3558
|
"items": {
|
|
@@ -4507,203 +3567,6 @@
|
|
|
4507
3567
|
"description": "Reference to blueprint",
|
|
4508
3568
|
"type": "string",
|
|
4509
3569
|
"format": "uuid"
|
|
4510
|
-
},
|
|
4511
|
-
"SavedViewId": {
|
|
4512
|
-
"description": "Generated uuid for a saved view",
|
|
4513
|
-
"type": "string",
|
|
4514
|
-
"format": "uuid"
|
|
4515
|
-
},
|
|
4516
|
-
"SavedViewItem": {
|
|
4517
|
-
"allOf": [
|
|
4518
|
-
{
|
|
4519
|
-
"type": "object",
|
|
4520
|
-
"properties": {
|
|
4521
|
-
"id": {
|
|
4522
|
-
"$ref": "#/components/schemas/SavedViewId"
|
|
4523
|
-
},
|
|
4524
|
-
"created_at": {
|
|
4525
|
-
"type": "string"
|
|
4526
|
-
},
|
|
4527
|
-
"updated_at": {
|
|
4528
|
-
"type": "string"
|
|
4529
|
-
}
|
|
4530
|
-
}
|
|
4531
|
-
},
|
|
4532
|
-
{
|
|
4533
|
-
"$ref": "#/components/schemas/SavedView"
|
|
4534
|
-
}
|
|
4535
|
-
]
|
|
4536
|
-
},
|
|
4537
|
-
"SavedView": {
|
|
4538
|
-
"description": "A saved entity view",
|
|
4539
|
-
"type": "object",
|
|
4540
|
-
"properties": {
|
|
4541
|
-
"slug": {
|
|
4542
|
-
"type": "array",
|
|
4543
|
-
"description": "list of schemas a view can belong to",
|
|
4544
|
-
"items": {
|
|
4545
|
-
"$ref": "#/components/schemas/EntitySlug"
|
|
4546
|
-
}
|
|
4547
|
-
},
|
|
4548
|
-
"name": {
|
|
4549
|
-
"description": "User-friendly identifier for the saved view",
|
|
4550
|
-
"type": "string",
|
|
4551
|
-
"example": "View listing German"
|
|
4552
|
-
},
|
|
4553
|
-
"org": {
|
|
4554
|
-
"description": "Organisation ID a view belongs to",
|
|
4555
|
-
"type": "string",
|
|
4556
|
-
"example": "66"
|
|
4557
|
-
},
|
|
4558
|
-
"shared": {
|
|
4559
|
-
"description": "boolean property for if a view is shared with organisation",
|
|
4560
|
-
"type": "boolean",
|
|
4561
|
-
"example": true
|
|
4562
|
-
},
|
|
4563
|
-
"created_by": {
|
|
4564
|
-
"anyOf": [
|
|
4565
|
-
{
|
|
4566
|
-
"type": "object",
|
|
4567
|
-
"description": "A user that created the view",
|
|
4568
|
-
"properties": {
|
|
4569
|
-
"user_id": {
|
|
4570
|
-
"type": "string",
|
|
4571
|
-
"example": "10598"
|
|
4572
|
-
}
|
|
4573
|
-
}
|
|
4574
|
-
},
|
|
4575
|
-
{
|
|
4576
|
-
"type": "object",
|
|
4577
|
-
"description": "A system-created view",
|
|
4578
|
-
"properties": {
|
|
4579
|
-
"source": {
|
|
4580
|
-
"type": "string",
|
|
4581
|
-
"enum": [
|
|
4582
|
-
"SYSTEM",
|
|
4583
|
-
"BLUEPRINT"
|
|
4584
|
-
]
|
|
4585
|
-
}
|
|
4586
|
-
},
|
|
4587
|
-
"additionalProperties": true
|
|
4588
|
-
}
|
|
4589
|
-
]
|
|
4590
|
-
},
|
|
4591
|
-
"ui_config": {
|
|
4592
|
-
"type": "object",
|
|
4593
|
-
"additionalProperties": true,
|
|
4594
|
-
"example": {
|
|
4595
|
-
"filters": {
|
|
4596
|
-
"customer_name": "suresh test",
|
|
4597
|
-
"_tags": "360"
|
|
4598
|
-
},
|
|
4599
|
-
"table_layout": {
|
|
4600
|
-
"opportunity": {
|
|
4601
|
-
"page": 1,
|
|
4602
|
-
"sort": "_created_at:desc",
|
|
4603
|
-
"pageSize": 25,
|
|
4604
|
-
"columnSettings": []
|
|
4605
|
-
}
|
|
4606
|
-
}
|
|
4607
|
-
}
|
|
4608
|
-
}
|
|
4609
|
-
},
|
|
4610
|
-
"required": [
|
|
4611
|
-
"slug",
|
|
4612
|
-
"name",
|
|
4613
|
-
"created_by",
|
|
4614
|
-
"ui_config"
|
|
4615
|
-
]
|
|
4616
|
-
},
|
|
4617
|
-
"Taxonomy": {
|
|
4618
|
-
"type": "object",
|
|
4619
|
-
"properties": {
|
|
4620
|
-
"slug": {
|
|
4621
|
-
"$ref": "#/components/schemas/TaxonomySlug"
|
|
4622
|
-
},
|
|
4623
|
-
"name": {
|
|
4624
|
-
"type": "string",
|
|
4625
|
-
"description": "A human friendly name of a Taxonomy e.g. Purpose, Product Category, Folder, Tag",
|
|
4626
|
-
"example": "Purpose"
|
|
4627
|
-
},
|
|
4628
|
-
"plural": {
|
|
4629
|
-
"type": "string",
|
|
4630
|
-
"description": "Plural name of a Taxonomy e.g. Purposes, Product Categories, Folders, Tags",
|
|
4631
|
-
"example": "Purposes"
|
|
4632
|
-
},
|
|
4633
|
-
"created_at": {
|
|
4634
|
-
"type": "string",
|
|
4635
|
-
"format": "date-time"
|
|
4636
|
-
},
|
|
4637
|
-
"updated_at": {
|
|
4638
|
-
"type": "string",
|
|
4639
|
-
"format": "date-time"
|
|
4640
|
-
}
|
|
4641
|
-
},
|
|
4642
|
-
"required": [
|
|
4643
|
-
"slug",
|
|
4644
|
-
"name"
|
|
4645
|
-
]
|
|
4646
|
-
},
|
|
4647
|
-
"TaxonomyClassification": {
|
|
4648
|
-
"type": "object",
|
|
4649
|
-
"properties": {
|
|
4650
|
-
"id": {
|
|
4651
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
4652
|
-
},
|
|
4653
|
-
"name": {
|
|
4654
|
-
"type": "string",
|
|
4655
|
-
"example": "Wallbox PV"
|
|
4656
|
-
},
|
|
4657
|
-
"parents": {
|
|
4658
|
-
"type": "array",
|
|
4659
|
-
"items": {
|
|
4660
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
4661
|
-
}
|
|
4662
|
-
},
|
|
4663
|
-
"created_at": {
|
|
4664
|
-
"type": "string",
|
|
4665
|
-
"format": "date-time"
|
|
4666
|
-
},
|
|
4667
|
-
"updated_at": {
|
|
4668
|
-
"type": "string",
|
|
4669
|
-
"format": "date-time"
|
|
4670
|
-
}
|
|
4671
|
-
},
|
|
4672
|
-
"required": [
|
|
4673
|
-
"name"
|
|
4674
|
-
]
|
|
4675
|
-
},
|
|
4676
|
-
"ClassificationId": {
|
|
4677
|
-
"type": "string",
|
|
4678
|
-
"format": "uuid"
|
|
4679
|
-
},
|
|
4680
|
-
"TaxonomySlug": {
|
|
4681
|
-
"type": "string",
|
|
4682
|
-
"description": "URL-friendly name for taxonomy",
|
|
4683
|
-
"example": "purpose"
|
|
4684
|
-
},
|
|
4685
|
-
"ClassificationsUpdate": {
|
|
4686
|
-
"type": "object",
|
|
4687
|
-
"properties": {
|
|
4688
|
-
"create": {
|
|
4689
|
-
"type": "array",
|
|
4690
|
-
"items": {
|
|
4691
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
4692
|
-
}
|
|
4693
|
-
},
|
|
4694
|
-
"update": {
|
|
4695
|
-
"type": "array",
|
|
4696
|
-
"items": {
|
|
4697
|
-
"$ref": "#/components/schemas/TaxonomyClassification"
|
|
4698
|
-
}
|
|
4699
|
-
},
|
|
4700
|
-
"delete": {
|
|
4701
|
-
"type": "array",
|
|
4702
|
-
"items": {
|
|
4703
|
-
"$ref": "#/components/schemas/ClassificationId"
|
|
4704
|
-
}
|
|
4705
|
-
}
|
|
4706
|
-
}
|
|
4707
3570
|
}
|
|
4708
3571
|
},
|
|
4709
3572
|
"examples": {
|
|
@@ -5323,9 +4186,6 @@
|
|
|
5323
4186
|
}
|
|
5324
4187
|
},
|
|
5325
4188
|
"servers": [
|
|
5326
|
-
{
|
|
5327
|
-
"url": "https://entity.sls.epilot.io"
|
|
5328
|
-
},
|
|
5329
4189
|
{
|
|
5330
4190
|
"url": "https://entity.sls.epilot.io"
|
|
5331
4191
|
}
|