fmea-api-mcp-server 1.1.37 → 1.1.39
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/data/endpoint-lookup.json +1 -1
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/services/search/OramaSearchService.js +4 -0
- package/dist/synonyms.js +7 -2
- package/endpoints/v2/block-diagrams/core.json +42 -62
- package/endpoints/v2/condition-library/core.json +18 -0
- package/endpoints/v2/divisions/core.json +367 -1
- package/endpoints/v2/documents/core.json +3 -3
- package/endpoints/v2/failure-modes/core.json +19 -9
- package/endpoints/v2/fourm/core.json +4 -4
- package/endpoints/v2/high-items/core.json +1 -1
- package/endpoints/v2/notices/core.json +4 -4
- package/endpoints/v2/projects/core.json +51 -5
- package/endpoints/v2/recommendation-items/core.json +9 -0
- package/endpoints/v2/search/core.json +31 -4
- package/endpoints/v2/synonym-excel/core.json +123 -0
- package/endpoints/v2/synonyms/core.json +409 -0
- package/endpoints/v2/system/core.json +677 -0
- package/endpoints/v2/system-definition/core.json +9 -0
- package/endpoints/v2/templates/core.json +3 -3
- package/endpoints/v2/users/core.json +11 -2
- package/endpoints/v2/worksheet-templates/core.json +11 -2
- package/endpoints/v2/worksheets/core.json +3 -3
- package/endpoints/v2/worksheets/excel.json +1 -1
- package/endpoints/v2/worksheets/management.json +9 -0
- package/endpoints/v2/worksheets/templates.json +9 -0
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"method": "GET",
|
|
9
9
|
"operationId": "get",
|
|
10
10
|
"summary": "Get failure mode details",
|
|
11
|
-
"description": "Returns a failure mode by ID.
|
|
11
|
+
"description": "Returns a failure mode by ID.",
|
|
12
12
|
"tags": [
|
|
13
13
|
"Failure Mode"
|
|
14
14
|
],
|
|
@@ -39,14 +39,6 @@
|
|
|
39
39
|
"schema": {
|
|
40
40
|
"type": "string"
|
|
41
41
|
}
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"name": "q",
|
|
45
|
-
"in": "query",
|
|
46
|
-
"description": "Failure mode name keyword",
|
|
47
|
-
"schema": {
|
|
48
|
-
"type": "string"
|
|
49
|
-
}
|
|
50
42
|
}
|
|
51
43
|
],
|
|
52
44
|
"requestBody": null,
|
|
@@ -498,6 +490,15 @@
|
|
|
498
490
|
"type": "string"
|
|
499
491
|
}
|
|
500
492
|
},
|
|
493
|
+
{
|
|
494
|
+
"name": "useSynonym",
|
|
495
|
+
"in": "query",
|
|
496
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
497
|
+
"schema": {
|
|
498
|
+
"type": "boolean",
|
|
499
|
+
"default": true
|
|
500
|
+
}
|
|
501
|
+
},
|
|
501
502
|
{
|
|
502
503
|
"name": "failureModeSearch",
|
|
503
504
|
"in": "query",
|
|
@@ -667,6 +668,15 @@
|
|
|
667
668
|
"type": "string"
|
|
668
669
|
}
|
|
669
670
|
},
|
|
671
|
+
{
|
|
672
|
+
"name": "useSynonym",
|
|
673
|
+
"in": "query",
|
|
674
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
675
|
+
"schema": {
|
|
676
|
+
"type": "boolean",
|
|
677
|
+
"default": true
|
|
678
|
+
}
|
|
679
|
+
},
|
|
670
680
|
{
|
|
671
681
|
"name": "failureModeSearch",
|
|
672
682
|
"in": "query",
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/fourm",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "list_8",
|
|
10
10
|
"summary": "List 4M analysis items",
|
|
11
11
|
"description": "Retrieves all 4M (Man, Machine, Material, Environment) analysis items with optional filtering. Supports querying by project ID (projectId) and single or double tags (tag, secondTag) for targeted searches. Use this endpoint to browse, filter, or search for existing 4M analysis records within a project context. Returns a comprehensive list of analysis entries that can be further processed or displayed.",
|
|
12
12
|
"tags": [],
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
{
|
|
83
83
|
"path": "/api/v2/fourm",
|
|
84
84
|
"method": "POST",
|
|
85
|
-
"operationId": "
|
|
85
|
+
"operationId": "create_4",
|
|
86
86
|
"summary": "Create 4M analysis item",
|
|
87
87
|
"description": "Creates a new 4M (Man, Machine, Material, Environment) analysis item in the system. Accepts analysis data including categorization by the four M dimensions (Man/Personnel, Machine/Equipment, Material/Resources, Environment/Conditions). Use this endpoint to initiate a new 4M analysis, register factors for quality or risk assessment, or document production variables. Returns the complete created object with system-generated ID.",
|
|
88
88
|
"tags": [],
|
|
@@ -228,7 +228,7 @@
|
|
|
228
228
|
{
|
|
229
229
|
"path": "/api/v2/fourm/{id}",
|
|
230
230
|
"method": "PUT",
|
|
231
|
-
"operationId": "
|
|
231
|
+
"operationId": "update_3",
|
|
232
232
|
"summary": "Update 4M analysis item",
|
|
233
233
|
"description": "Modifies an existing 4M analysis item identified by its ID. Accepts partial or complete updates to the analysis data including changes to categorization, descriptions, or any of the four M dimensions (Man, Machine, Material, Environment). Use this endpoint to correct, enhance, or evolve analysis records over time. Returns the updated object reflecting all changes applied.",
|
|
234
234
|
"tags": [],
|
|
@@ -314,7 +314,7 @@
|
|
|
314
314
|
{
|
|
315
315
|
"path": "/api/v2/fourm/{id}",
|
|
316
316
|
"method": "DELETE",
|
|
317
|
-
"operationId": "
|
|
317
|
+
"operationId": "delete_3",
|
|
318
318
|
"summary": "Delete 4M analysis item",
|
|
319
319
|
"description": "Permanently removes a 4M analysis item from the system using its unique identifier. This operation is irreversible and will eliminate all associated data including the four M dimension classifications (Man, Machine, Material, Environment). Use with caution for removing obsolete or incorrect analysis records. Returns no content upon successful deletion (204 status).",
|
|
320
320
|
"tags": [],
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/projects/{projectId}/high-items",
|
|
8
8
|
"method": "PUT",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "update_8",
|
|
10
10
|
"summary": "Batch upsert and reorder high items by project",
|
|
11
11
|
"description": "Updates the project high-item list with batch upsert semantics. Existing items are matched by sequence or title, ranks are recalculated by input order, and omitted items are removed.",
|
|
12
12
|
"tags": [
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/notices/{id}",
|
|
8
8
|
"method": "DELETE",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "delete_4",
|
|
10
10
|
"summary": "Delete notice",
|
|
11
11
|
"description": "Deletes a notice by ID. Requires admin permission. Returns 404 if notice does not exist.",
|
|
12
12
|
"tags": [
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
{
|
|
38
38
|
"path": "/api/v2/notices",
|
|
39
39
|
"method": "GET",
|
|
40
|
-
"operationId": "
|
|
40
|
+
"operationId": "list_9",
|
|
41
41
|
"summary": "List notices",
|
|
42
42
|
"description": "Returns a paged list of notices. Supports optional visibility filter. Use page=0 to retrieve all notices without paging.",
|
|
43
43
|
"tags": [
|
|
@@ -286,7 +286,7 @@
|
|
|
286
286
|
{
|
|
287
287
|
"path": "/api/v2/notices",
|
|
288
288
|
"method": "POST",
|
|
289
|
-
"operationId": "
|
|
289
|
+
"operationId": "create_5",
|
|
290
290
|
"summary": "Create notice",
|
|
291
291
|
"description": "Creates a new notice. Requires admin permission. Title and content are required fields.",
|
|
292
292
|
"tags": [
|
|
@@ -362,7 +362,7 @@
|
|
|
362
362
|
{
|
|
363
363
|
"path": "/api/v2/notices/{id}",
|
|
364
364
|
"method": "PUT",
|
|
365
|
-
"operationId": "
|
|
365
|
+
"operationId": "update_4",
|
|
366
366
|
"summary": "Update notice",
|
|
367
367
|
"description": "Updates an existing notice by ID. Requires admin permission. Returns 404 if notice does not exist.",
|
|
368
368
|
"tags": [
|
|
@@ -6,9 +6,9 @@
|
|
|
6
6
|
{
|
|
7
7
|
"path": "/api/v2/projects",
|
|
8
8
|
"method": "GET",
|
|
9
|
-
"operationId": "
|
|
9
|
+
"operationId": "list_10",
|
|
10
10
|
"summary": "List project summaries",
|
|
11
|
-
"description": "Returns paged project summaries. scope: 'my' (default, user's projects), 'all' (admin, all active)
|
|
11
|
+
"description": "Returns paged project summaries. scope: 'my' (default, user's projects), 'division', 'all' (admin, all active). deleted=true returns admin-only trashed projects. Supports divisionId, search, fmeaType, status, sort, pagination.",
|
|
12
12
|
"tags": [
|
|
13
13
|
"Project"
|
|
14
14
|
],
|
|
@@ -16,15 +16,24 @@
|
|
|
16
16
|
{
|
|
17
17
|
"name": "scope",
|
|
18
18
|
"in": "query",
|
|
19
|
-
"description": "Scope: my (default),
|
|
19
|
+
"description": "Scope: my (default), division, all (admin only)",
|
|
20
20
|
"schema": {
|
|
21
21
|
"type": "string"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
|
+
{
|
|
25
|
+
"name": "deleted",
|
|
26
|
+
"in": "query",
|
|
27
|
+
"description": "Deleted-only view (admin only)",
|
|
28
|
+
"schema": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
"default": false
|
|
31
|
+
}
|
|
32
|
+
},
|
|
24
33
|
{
|
|
25
34
|
"name": "divisionId",
|
|
26
35
|
"in": "query",
|
|
27
|
-
"description": "Division ID filter (used with scope=all)",
|
|
36
|
+
"description": "Division ID filter (used with scope=division or scope=all)",
|
|
28
37
|
"schema": {
|
|
29
38
|
"type": "integer",
|
|
30
39
|
"format": "int32"
|
|
@@ -46,6 +55,15 @@
|
|
|
46
55
|
"type": "string"
|
|
47
56
|
}
|
|
48
57
|
},
|
|
58
|
+
{
|
|
59
|
+
"name": "useSynonym",
|
|
60
|
+
"in": "query",
|
|
61
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
62
|
+
"schema": {
|
|
63
|
+
"type": "boolean",
|
|
64
|
+
"default": true
|
|
65
|
+
}
|
|
66
|
+
},
|
|
49
67
|
{
|
|
50
68
|
"name": "fmeaType",
|
|
51
69
|
"in": "query",
|
|
@@ -388,6 +406,15 @@
|
|
|
388
406
|
"type": "string"
|
|
389
407
|
}
|
|
390
408
|
},
|
|
409
|
+
{
|
|
410
|
+
"name": "useSynonym",
|
|
411
|
+
"in": "query",
|
|
412
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
413
|
+
"schema": {
|
|
414
|
+
"type": "boolean",
|
|
415
|
+
"default": true
|
|
416
|
+
}
|
|
417
|
+
},
|
|
391
418
|
{
|
|
392
419
|
"name": "fmeaType",
|
|
393
420
|
"in": "query",
|
|
@@ -661,6 +688,15 @@
|
|
|
661
688
|
"schema": {
|
|
662
689
|
"type": "string"
|
|
663
690
|
}
|
|
691
|
+
},
|
|
692
|
+
{
|
|
693
|
+
"name": "useSynonym",
|
|
694
|
+
"in": "query",
|
|
695
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
696
|
+
"schema": {
|
|
697
|
+
"type": "boolean",
|
|
698
|
+
"default": true
|
|
699
|
+
}
|
|
664
700
|
}
|
|
665
701
|
],
|
|
666
702
|
"responses": {
|
|
@@ -1053,7 +1089,7 @@
|
|
|
1053
1089
|
{
|
|
1054
1090
|
"path": "/api/v2/projects/{projectId}/high-items",
|
|
1055
1091
|
"method": "GET",
|
|
1056
|
-
"operationId": "
|
|
1092
|
+
"operationId": "list_15",
|
|
1057
1093
|
"summary": "List high items by project",
|
|
1058
1094
|
"description": "Returns high items in the target project ordered by rank. Supports optional keyword search on high-item titles and is used by system-definition screens.",
|
|
1059
1095
|
"tags": [
|
|
@@ -1071,9 +1107,19 @@
|
|
|
1071
1107
|
{
|
|
1072
1108
|
"name": "q",
|
|
1073
1109
|
"in": "query",
|
|
1110
|
+
"description": "Unified keyword for high-item titles",
|
|
1074
1111
|
"schema": {
|
|
1075
1112
|
"type": "string"
|
|
1076
1113
|
}
|
|
1114
|
+
},
|
|
1115
|
+
{
|
|
1116
|
+
"name": "useSynonym",
|
|
1117
|
+
"in": "query",
|
|
1118
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
1119
|
+
"schema": {
|
|
1120
|
+
"type": "boolean",
|
|
1121
|
+
"default": true
|
|
1122
|
+
}
|
|
1077
1123
|
}
|
|
1078
1124
|
],
|
|
1079
1125
|
"responses": {
|
|
@@ -37,6 +37,15 @@
|
|
|
37
37
|
"type": "string"
|
|
38
38
|
}
|
|
39
39
|
},
|
|
40
|
+
{
|
|
41
|
+
"name": "useSynonym",
|
|
42
|
+
"in": "query",
|
|
43
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
44
|
+
"schema": {
|
|
45
|
+
"type": "boolean",
|
|
46
|
+
"default": true
|
|
47
|
+
}
|
|
48
|
+
},
|
|
40
49
|
{
|
|
41
50
|
"name": "scope",
|
|
42
51
|
"in": "query",
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
"method": "GET",
|
|
9
9
|
"operationId": "searchFailureModes",
|
|
10
10
|
"summary": "Search failure modes globally",
|
|
11
|
-
"description": "Searches failure modes across all projects in the system. Supports keyword search (q
|
|
11
|
+
"description": "Searches failure modes across all projects in the system. Supports keyword search (q, optional, comma-separated with synonym expansion), project-level filters (projectId, projectName, fmeaType, status), and sorting (sort=name,asc or sort=rpn,desc). Returns paged results with project summary information and S/O/D cause data.",
|
|
12
12
|
"tags": [
|
|
13
13
|
"Search"
|
|
14
14
|
],
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
{
|
|
17
17
|
"name": "q",
|
|
18
18
|
"in": "query",
|
|
19
|
-
"description": "Search keyword for failure mode names (
|
|
19
|
+
"description": "Search keyword for failure mode names (optional, max 100 characters, comma-separated OR search with synonym expansion)",
|
|
20
20
|
"schema": {
|
|
21
21
|
"type": "string"
|
|
22
22
|
}
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
{
|
|
73
73
|
"name": "page",
|
|
74
74
|
"in": "query",
|
|
75
|
-
"description": "Page number (0 = all
|
|
75
|
+
"description": "Page number (default: 1, 0 = all only when q is provided)",
|
|
76
76
|
"schema": {
|
|
77
77
|
"type": "integer",
|
|
78
78
|
"default": 1,
|
|
@@ -82,13 +82,22 @@
|
|
|
82
82
|
{
|
|
83
83
|
"name": "size",
|
|
84
84
|
"in": "query",
|
|
85
|
-
"description": "Page size (default: 50)",
|
|
85
|
+
"description": "Page size (default: 50, max: 1000)",
|
|
86
86
|
"schema": {
|
|
87
87
|
"type": "integer",
|
|
88
88
|
"default": 50,
|
|
89
89
|
"format": "int32"
|
|
90
90
|
}
|
|
91
91
|
},
|
|
92
|
+
{
|
|
93
|
+
"name": "useSynonym",
|
|
94
|
+
"in": "query",
|
|
95
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
96
|
+
"schema": {
|
|
97
|
+
"type": "boolean",
|
|
98
|
+
"default": true
|
|
99
|
+
}
|
|
100
|
+
},
|
|
92
101
|
{
|
|
93
102
|
"name": "projectId",
|
|
94
103
|
"in": "query",
|
|
@@ -388,6 +397,15 @@
|
|
|
388
397
|
"format": "int32"
|
|
389
398
|
}
|
|
390
399
|
},
|
|
400
|
+
{
|
|
401
|
+
"name": "useSynonym",
|
|
402
|
+
"in": "query",
|
|
403
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
404
|
+
"schema": {
|
|
405
|
+
"type": "boolean",
|
|
406
|
+
"default": true
|
|
407
|
+
}
|
|
408
|
+
},
|
|
391
409
|
{
|
|
392
410
|
"name": "sort",
|
|
393
411
|
"in": "query",
|
|
@@ -682,6 +700,15 @@
|
|
|
682
700
|
"type": "string"
|
|
683
701
|
}
|
|
684
702
|
},
|
|
703
|
+
{
|
|
704
|
+
"name": "useSynonym",
|
|
705
|
+
"in": "query",
|
|
706
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
707
|
+
"schema": {
|
|
708
|
+
"type": "boolean",
|
|
709
|
+
"default": true
|
|
710
|
+
}
|
|
711
|
+
},
|
|
685
712
|
{
|
|
686
713
|
"name": "aiId",
|
|
687
714
|
"in": "query",
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
{
|
|
2
|
+
"category": "Synonym Excel",
|
|
3
|
+
"version": "v2",
|
|
4
|
+
"description": "",
|
|
5
|
+
"endpoints": [
|
|
6
|
+
{
|
|
7
|
+
"path": "/api/v2/synonym-excel/export",
|
|
8
|
+
"method": "GET",
|
|
9
|
+
"operationId": "export",
|
|
10
|
+
"summary": "Export synonyms to Excel",
|
|
11
|
+
"description": "Exports synonym groups to an XLSX file and returns a download URI. Optional q filter narrows the exported groups before generating the workbook.",
|
|
12
|
+
"tags": [
|
|
13
|
+
"SynonymExcel"
|
|
14
|
+
],
|
|
15
|
+
"parameters": [
|
|
16
|
+
{
|
|
17
|
+
"name": "q",
|
|
18
|
+
"in": "query",
|
|
19
|
+
"description": "Optional synonym keyword filter for exported rows",
|
|
20
|
+
"schema": {
|
|
21
|
+
"type": "string"
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"name": "useSynonym",
|
|
26
|
+
"in": "query",
|
|
27
|
+
"description": "Whether to expand q with synonym dictionary terms (default: true)",
|
|
28
|
+
"schema": {
|
|
29
|
+
"type": "boolean",
|
|
30
|
+
"default": true
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"requestBody": null,
|
|
35
|
+
"responses": {
|
|
36
|
+
"default": {
|
|
37
|
+
"description": "default response",
|
|
38
|
+
"content": {
|
|
39
|
+
"application/json": {
|
|
40
|
+
"schema": {
|
|
41
|
+
"type": "object",
|
|
42
|
+
"properties": {
|
|
43
|
+
"fileName": {
|
|
44
|
+
"type": "string"
|
|
45
|
+
},
|
|
46
|
+
"downloadUri": {
|
|
47
|
+
"type": "string"
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
{
|
|
57
|
+
"path": "/api/v2/synonym-excel/{uuid}",
|
|
58
|
+
"method": "POST",
|
|
59
|
+
"operationId": "importExcel",
|
|
60
|
+
"summary": "Import synonyms from Excel",
|
|
61
|
+
"description": "Imports synonym groups from a previously uploaded Excel file referenced by uuid. Supports row and column range selection and optional merge into existing groups by first term.",
|
|
62
|
+
"tags": [
|
|
63
|
+
"SynonymExcel"
|
|
64
|
+
],
|
|
65
|
+
"parameters": [
|
|
66
|
+
{
|
|
67
|
+
"name": "uuid",
|
|
68
|
+
"in": "path",
|
|
69
|
+
"description": "Uploaded file UUID",
|
|
70
|
+
"required": true,
|
|
71
|
+
"schema": {
|
|
72
|
+
"type": "string"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
{
|
|
76
|
+
"name": "rowStart",
|
|
77
|
+
"in": "query",
|
|
78
|
+
"description": "Data start row (1-based, default: 1)",
|
|
79
|
+
"schema": {
|
|
80
|
+
"type": "integer",
|
|
81
|
+
"format": "int32"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"name": "columnStart",
|
|
86
|
+
"in": "query",
|
|
87
|
+
"description": "Start column (1-based, default: 1)",
|
|
88
|
+
"schema": {
|
|
89
|
+
"type": "integer",
|
|
90
|
+
"format": "int32"
|
|
91
|
+
}
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"name": "columnEnd",
|
|
95
|
+
"in": "query",
|
|
96
|
+
"description": "End column (1-based, required)",
|
|
97
|
+
"schema": {
|
|
98
|
+
"type": "integer",
|
|
99
|
+
"format": "int32"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "merge",
|
|
104
|
+
"in": "query",
|
|
105
|
+
"description": "Merge into existing groups when first term matches (default: false)",
|
|
106
|
+
"schema": {
|
|
107
|
+
"type": "boolean"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"requestBody": null,
|
|
112
|
+
"responses": {
|
|
113
|
+
"default": {
|
|
114
|
+
"description": "default response",
|
|
115
|
+
"content": {
|
|
116
|
+
"application/json": {}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"x-dependency-warning": "REQUIRES PRIOR FILE UPLOAD via [POST /api/v2/files]. The {uuid} parameter is the file identifier returned by the upload endpoint."
|
|
121
|
+
}
|
|
122
|
+
]
|
|
123
|
+
}
|