fmea-api-mcp-server 1.1.13 → 1.1.15
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 -0
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/intents.js +1 -1
- package/dist/services/search/OramaSearchService.js +98 -109
- package/dist/services/search/schema.js +4 -11
- package/dist/synonyms.js +7 -3
- package/dist/utils/ScoreCalculator.js +4 -1
- package/endpoints/v1/block-diagrams/core.json +390 -3
- package/endpoints/v1/divisions/core.json +74 -3
- package/endpoints/v1/failure-modes/core.json +46 -1
- package/endpoints/v1/knowledge-base/core.json +77 -2
- package/endpoints/v1/projects/recommendations.json +72 -1
- package/endpoints/v1/synonyms/core.json +57 -3
- package/endpoints/v1/terms/core.json +90 -3
- package/endpoints/v1/users/admin.json +89 -1
- package/endpoints/v1/users/core.json +81 -1
- package/endpoints/v2/block-diagrams/core.json +168 -2
- package/endpoints/v2/divisions/core.json +121 -1
- package/endpoints/v2/documents/core.json +213 -7
- package/endpoints/v2/excel/core.json +22 -0
- package/endpoints/v2/failure-modes/core.json +84 -0
- package/endpoints/v2/fourm/core.json +1 -1
- package/endpoints/v2/projects/core.json +698 -7
- package/endpoints/v2/system/core.json +21 -3
- package/endpoints/v2/templates/core.json +17 -2
- package/endpoints/v2/users/core.json +310 -2
- package/endpoints/v2/worksheets/core.json +148 -3
- package/endpoints/v2/worksheets/excel.json +86 -2
- package/endpoints/v2/worksheets/management.json +81 -2
- package/package.json +1 -1
|
@@ -49,7 +49,78 @@
|
|
|
49
49
|
"default": {
|
|
50
50
|
"description": "default response",
|
|
51
51
|
"content": {
|
|
52
|
-
"application/json": {
|
|
52
|
+
"application/json": {
|
|
53
|
+
"schema": {
|
|
54
|
+
"type": "object",
|
|
55
|
+
"properties": {
|
|
56
|
+
"columnHeaders": {
|
|
57
|
+
"type": "array",
|
|
58
|
+
"items": {
|
|
59
|
+
"type": "object",
|
|
60
|
+
"properties": {
|
|
61
|
+
"id": {
|
|
62
|
+
"type": "integer"
|
|
63
|
+
},
|
|
64
|
+
"key": {
|
|
65
|
+
"type": "string"
|
|
66
|
+
},
|
|
67
|
+
"title": {
|
|
68
|
+
"type": "string"
|
|
69
|
+
},
|
|
70
|
+
"type": {
|
|
71
|
+
"type": "string"
|
|
72
|
+
},
|
|
73
|
+
"readOnly": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
"width": {
|
|
77
|
+
"type": "integer"
|
|
78
|
+
},
|
|
79
|
+
"valign": {
|
|
80
|
+
"type": "integer"
|
|
81
|
+
},
|
|
82
|
+
"halign": {
|
|
83
|
+
"type": "integer"
|
|
84
|
+
},
|
|
85
|
+
"children": {
|
|
86
|
+
"type": "array",
|
|
87
|
+
"items": {
|
|
88
|
+
"type": "object",
|
|
89
|
+
"description": "(circular: ColumnHeader)"
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"rows": {
|
|
96
|
+
"type": "array",
|
|
97
|
+
"items": {
|
|
98
|
+
"type": "object",
|
|
99
|
+
"properties": {
|
|
100
|
+
"reportNo": {
|
|
101
|
+
"type": "string"
|
|
102
|
+
},
|
|
103
|
+
"fmmId": {
|
|
104
|
+
"type": "string"
|
|
105
|
+
},
|
|
106
|
+
"wsId": {
|
|
107
|
+
"type": "integer"
|
|
108
|
+
},
|
|
109
|
+
"status": {
|
|
110
|
+
"type": "string",
|
|
111
|
+
"enum": [
|
|
112
|
+
"UNKNOWN",
|
|
113
|
+
"COMPLETED",
|
|
114
|
+
"IN_PROGRESS",
|
|
115
|
+
"DELAY"
|
|
116
|
+
]
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
}
|
|
53
124
|
}
|
|
54
125
|
}
|
|
55
126
|
}
|
|
@@ -25,7 +25,25 @@
|
|
|
25
25
|
"default": {
|
|
26
26
|
"description": "default response",
|
|
27
27
|
"content": {
|
|
28
|
-
"application/json": {
|
|
28
|
+
"application/json": {
|
|
29
|
+
"schema": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "object",
|
|
33
|
+
"properties": {
|
|
34
|
+
"id": {
|
|
35
|
+
"type": "integer"
|
|
36
|
+
},
|
|
37
|
+
"serial": {
|
|
38
|
+
"type": "integer"
|
|
39
|
+
},
|
|
40
|
+
"value": {
|
|
41
|
+
"type": "string"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
}
|
|
29
47
|
}
|
|
30
48
|
}
|
|
31
49
|
}
|
|
@@ -64,7 +82,25 @@
|
|
|
64
82
|
"default": {
|
|
65
83
|
"description": "default response",
|
|
66
84
|
"content": {
|
|
67
|
-
"application/json": {
|
|
85
|
+
"application/json": {
|
|
86
|
+
"schema": {
|
|
87
|
+
"type": "array",
|
|
88
|
+
"items": {
|
|
89
|
+
"type": "object",
|
|
90
|
+
"properties": {
|
|
91
|
+
"id": {
|
|
92
|
+
"type": "integer"
|
|
93
|
+
},
|
|
94
|
+
"serial": {
|
|
95
|
+
"type": "integer"
|
|
96
|
+
},
|
|
97
|
+
"value": {
|
|
98
|
+
"type": "string"
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
}
|
|
68
104
|
}
|
|
69
105
|
}
|
|
70
106
|
}
|
|
@@ -133,7 +169,25 @@
|
|
|
133
169
|
"default": {
|
|
134
170
|
"description": "default response",
|
|
135
171
|
"content": {
|
|
136
|
-
"application/json": {
|
|
172
|
+
"application/json": {
|
|
173
|
+
"schema": {
|
|
174
|
+
"type": "array",
|
|
175
|
+
"items": {
|
|
176
|
+
"type": "object",
|
|
177
|
+
"properties": {
|
|
178
|
+
"id": {
|
|
179
|
+
"type": "integer"
|
|
180
|
+
},
|
|
181
|
+
"serial": {
|
|
182
|
+
"type": "integer"
|
|
183
|
+
},
|
|
184
|
+
"value": {
|
|
185
|
+
"type": "string"
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
137
191
|
}
|
|
138
192
|
}
|
|
139
193
|
}
|
|
@@ -33,7 +33,37 @@
|
|
|
33
33
|
"default": {
|
|
34
34
|
"description": "default response",
|
|
35
35
|
"content": {
|
|
36
|
-
"application/json": {
|
|
36
|
+
"application/json": {
|
|
37
|
+
"schema": {
|
|
38
|
+
"type": "array",
|
|
39
|
+
"items": {
|
|
40
|
+
"type": "object",
|
|
41
|
+
"properties": {
|
|
42
|
+
"id": {
|
|
43
|
+
"type": "string"
|
|
44
|
+
},
|
|
45
|
+
"parentId": {
|
|
46
|
+
"type": "string"
|
|
47
|
+
},
|
|
48
|
+
"title": {
|
|
49
|
+
"type": "string"
|
|
50
|
+
},
|
|
51
|
+
"typeCode": {
|
|
52
|
+
"type": "integer"
|
|
53
|
+
},
|
|
54
|
+
"serial": {
|
|
55
|
+
"type": "integer"
|
|
56
|
+
},
|
|
57
|
+
"depth": {
|
|
58
|
+
"type": "integer"
|
|
59
|
+
},
|
|
60
|
+
"order": {
|
|
61
|
+
"type": "integer"
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
}
|
|
37
67
|
}
|
|
38
68
|
}
|
|
39
69
|
}
|
|
@@ -76,7 +106,34 @@
|
|
|
76
106
|
"default": {
|
|
77
107
|
"description": "default response",
|
|
78
108
|
"content": {
|
|
79
|
-
"application/json": {
|
|
109
|
+
"application/json": {
|
|
110
|
+
"schema": {
|
|
111
|
+
"type": "object",
|
|
112
|
+
"properties": {
|
|
113
|
+
"id": {
|
|
114
|
+
"type": "string"
|
|
115
|
+
},
|
|
116
|
+
"parentId": {
|
|
117
|
+
"type": "string"
|
|
118
|
+
},
|
|
119
|
+
"title": {
|
|
120
|
+
"type": "string"
|
|
121
|
+
},
|
|
122
|
+
"typeCode": {
|
|
123
|
+
"type": "integer"
|
|
124
|
+
},
|
|
125
|
+
"serial": {
|
|
126
|
+
"type": "integer"
|
|
127
|
+
},
|
|
128
|
+
"depth": {
|
|
129
|
+
"type": "integer"
|
|
130
|
+
},
|
|
131
|
+
"order": {
|
|
132
|
+
"type": "integer"
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
80
137
|
}
|
|
81
138
|
}
|
|
82
139
|
}
|
|
@@ -181,7 +238,37 @@
|
|
|
181
238
|
"default": {
|
|
182
239
|
"description": "default response",
|
|
183
240
|
"content": {
|
|
184
|
-
"application/json": {
|
|
241
|
+
"application/json": {
|
|
242
|
+
"schema": {
|
|
243
|
+
"type": "array",
|
|
244
|
+
"items": {
|
|
245
|
+
"type": "object",
|
|
246
|
+
"properties": {
|
|
247
|
+
"id": {
|
|
248
|
+
"type": "string"
|
|
249
|
+
},
|
|
250
|
+
"parentId": {
|
|
251
|
+
"type": "string"
|
|
252
|
+
},
|
|
253
|
+
"title": {
|
|
254
|
+
"type": "string"
|
|
255
|
+
},
|
|
256
|
+
"typeCode": {
|
|
257
|
+
"type": "integer"
|
|
258
|
+
},
|
|
259
|
+
"serial": {
|
|
260
|
+
"type": "integer"
|
|
261
|
+
},
|
|
262
|
+
"depth": {
|
|
263
|
+
"type": "integer"
|
|
264
|
+
},
|
|
265
|
+
"order": {
|
|
266
|
+
"type": "integer"
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
}
|
|
185
272
|
}
|
|
186
273
|
}
|
|
187
274
|
}
|
|
@@ -37,7 +37,95 @@
|
|
|
37
37
|
"method": "GET",
|
|
38
38
|
"operationId": "findById",
|
|
39
39
|
"summary": "Get User Details (Admin)",
|
|
40
|
-
"description": "Retrieves comprehensive details for any user by ID. Returns full profile, role, and status information. Use this for admin auditing, user lookup, or support troubleshooting."
|
|
40
|
+
"description": "Retrieves comprehensive details for any user by ID. Returns full profile, role, and status information. Use this for admin auditing, user lookup, or support troubleshooting.",
|
|
41
|
+
"responses": {
|
|
42
|
+
"default": {
|
|
43
|
+
"description": "default response",
|
|
44
|
+
"content": {
|
|
45
|
+
"application/json": {
|
|
46
|
+
"schema": {
|
|
47
|
+
"type": "object",
|
|
48
|
+
"properties": {
|
|
49
|
+
"id": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"name": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
},
|
|
55
|
+
"englishName": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
"email": {
|
|
59
|
+
"type": "string"
|
|
60
|
+
},
|
|
61
|
+
"department": {
|
|
62
|
+
"type": "string"
|
|
63
|
+
},
|
|
64
|
+
"division": {
|
|
65
|
+
"type": "object",
|
|
66
|
+
"properties": {
|
|
67
|
+
"id": {
|
|
68
|
+
"type": "integer"
|
|
69
|
+
},
|
|
70
|
+
"no": {
|
|
71
|
+
"type": "integer"
|
|
72
|
+
},
|
|
73
|
+
"name": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
"code": {
|
|
77
|
+
"type": "string"
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"userLevel": {
|
|
82
|
+
"type": "string",
|
|
83
|
+
"enum": [
|
|
84
|
+
"ADMIN",
|
|
85
|
+
"NORMAL",
|
|
86
|
+
"READER"
|
|
87
|
+
]
|
|
88
|
+
},
|
|
89
|
+
"creationDate": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"format": "date-time"
|
|
92
|
+
},
|
|
93
|
+
"lastPasswordChangeDate": {
|
|
94
|
+
"type": "string",
|
|
95
|
+
"format": "date-time"
|
|
96
|
+
},
|
|
97
|
+
"useAccessibleDivisions": {
|
|
98
|
+
"type": "integer"
|
|
99
|
+
},
|
|
100
|
+
"accessibleDivisions": {
|
|
101
|
+
"type": "array",
|
|
102
|
+
"items": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"properties": {
|
|
105
|
+
"id": {
|
|
106
|
+
"type": "integer"
|
|
107
|
+
},
|
|
108
|
+
"no": {
|
|
109
|
+
"type": "integer"
|
|
110
|
+
},
|
|
111
|
+
"name": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"code": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
"encryptedPassword": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
}
|
|
128
|
+
}
|
|
41
129
|
},
|
|
42
130
|
{
|
|
43
131
|
"path": "/api/v1/admin/users",
|
|
@@ -18,7 +18,87 @@
|
|
|
18
18
|
"default": {
|
|
19
19
|
"description": "default response",
|
|
20
20
|
"content": {
|
|
21
|
-
"application/json": {
|
|
21
|
+
"application/json": {
|
|
22
|
+
"schema": {
|
|
23
|
+
"type": "object",
|
|
24
|
+
"properties": {
|
|
25
|
+
"id": {
|
|
26
|
+
"type": "string"
|
|
27
|
+
},
|
|
28
|
+
"name": {
|
|
29
|
+
"type": "string"
|
|
30
|
+
},
|
|
31
|
+
"englishName": {
|
|
32
|
+
"type": "string"
|
|
33
|
+
},
|
|
34
|
+
"email": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"department": {
|
|
38
|
+
"type": "string"
|
|
39
|
+
},
|
|
40
|
+
"division": {
|
|
41
|
+
"type": "object",
|
|
42
|
+
"properties": {
|
|
43
|
+
"id": {
|
|
44
|
+
"type": "integer"
|
|
45
|
+
},
|
|
46
|
+
"no": {
|
|
47
|
+
"type": "integer"
|
|
48
|
+
},
|
|
49
|
+
"name": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"code": {
|
|
53
|
+
"type": "string"
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"userLevel": {
|
|
58
|
+
"type": "string",
|
|
59
|
+
"enum": [
|
|
60
|
+
"ADMIN",
|
|
61
|
+
"NORMAL",
|
|
62
|
+
"READER"
|
|
63
|
+
]
|
|
64
|
+
},
|
|
65
|
+
"creationDate": {
|
|
66
|
+
"type": "string",
|
|
67
|
+
"format": "date-time"
|
|
68
|
+
},
|
|
69
|
+
"lastPasswordChangeDate": {
|
|
70
|
+
"type": "string",
|
|
71
|
+
"format": "date-time"
|
|
72
|
+
},
|
|
73
|
+
"useAccessibleDivisions": {
|
|
74
|
+
"type": "integer"
|
|
75
|
+
},
|
|
76
|
+
"accessibleDivisions": {
|
|
77
|
+
"type": "array",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "object",
|
|
80
|
+
"properties": {
|
|
81
|
+
"id": {
|
|
82
|
+
"type": "integer"
|
|
83
|
+
},
|
|
84
|
+
"no": {
|
|
85
|
+
"type": "integer"
|
|
86
|
+
},
|
|
87
|
+
"name": {
|
|
88
|
+
"type": "string"
|
|
89
|
+
},
|
|
90
|
+
"code": {
|
|
91
|
+
"type": "string"
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
"encryptedPassword": {
|
|
97
|
+
"type": "string"
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
}
|
|
22
102
|
}
|
|
23
103
|
}
|
|
24
104
|
}
|
|
@@ -25,7 +25,43 @@
|
|
|
25
25
|
"default": {
|
|
26
26
|
"description": "default response",
|
|
27
27
|
"content": {
|
|
28
|
-
"application/json": {
|
|
28
|
+
"application/json": {
|
|
29
|
+
"schema": {
|
|
30
|
+
"type": "array",
|
|
31
|
+
"items": {
|
|
32
|
+
"type": "object",
|
|
33
|
+
"properties": {
|
|
34
|
+
"id": {
|
|
35
|
+
"type": "string"
|
|
36
|
+
},
|
|
37
|
+
"type": {
|
|
38
|
+
"type": "string",
|
|
39
|
+
"enum": [
|
|
40
|
+
"FUNCTION",
|
|
41
|
+
"STRUCTURE",
|
|
42
|
+
"FUNCTION_STRUCTURE",
|
|
43
|
+
"STRUCTURE_FUNCTION",
|
|
44
|
+
"PROCESS",
|
|
45
|
+
"SUPER_SYSTEM",
|
|
46
|
+
"FUNCTION_ANALYSIS"
|
|
47
|
+
]
|
|
48
|
+
},
|
|
49
|
+
"alias": {
|
|
50
|
+
"type": "string"
|
|
51
|
+
},
|
|
52
|
+
"order": {
|
|
53
|
+
"type": "integer"
|
|
54
|
+
},
|
|
55
|
+
"description": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
},
|
|
58
|
+
"numberFormat": {
|
|
59
|
+
"type": "string"
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
}
|
|
29
65
|
}
|
|
30
66
|
}
|
|
31
67
|
}
|
|
@@ -60,7 +96,55 @@
|
|
|
60
96
|
"default": {
|
|
61
97
|
"description": "default response",
|
|
62
98
|
"content": {
|
|
63
|
-
"application/json": {
|
|
99
|
+
"application/json": {
|
|
100
|
+
"schema": {
|
|
101
|
+
"type": "array",
|
|
102
|
+
"items": {
|
|
103
|
+
"type": "object",
|
|
104
|
+
"properties": {
|
|
105
|
+
"id": {
|
|
106
|
+
"type": "string"
|
|
107
|
+
},
|
|
108
|
+
"parentId": {
|
|
109
|
+
"type": "string"
|
|
110
|
+
},
|
|
111
|
+
"referencedId": {
|
|
112
|
+
"type": "string"
|
|
113
|
+
},
|
|
114
|
+
"function": {
|
|
115
|
+
"type": "string"
|
|
116
|
+
},
|
|
117
|
+
"item": {
|
|
118
|
+
"type": "string"
|
|
119
|
+
},
|
|
120
|
+
"requirement": {
|
|
121
|
+
"type": "string"
|
|
122
|
+
},
|
|
123
|
+
"type": {
|
|
124
|
+
"type": "string",
|
|
125
|
+
"enum": [
|
|
126
|
+
"SUB_FUNCTION",
|
|
127
|
+
"NEW_CHANGE_ASSEMBLY",
|
|
128
|
+
"NEW_CHANGE_PART",
|
|
129
|
+
"TARGET"
|
|
130
|
+
]
|
|
131
|
+
},
|
|
132
|
+
"order": {
|
|
133
|
+
"type": "integer"
|
|
134
|
+
},
|
|
135
|
+
"processNumber": {
|
|
136
|
+
"type": "string"
|
|
137
|
+
},
|
|
138
|
+
"processFlowChartName": {
|
|
139
|
+
"type": "string"
|
|
140
|
+
},
|
|
141
|
+
"processFlowChartSymbol": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
}
|
|
64
148
|
}
|
|
65
149
|
}
|
|
66
150
|
}
|
|
@@ -332,6 +416,49 @@
|
|
|
332
416
|
}
|
|
333
417
|
}
|
|
334
418
|
},
|
|
419
|
+
{
|
|
420
|
+
"path": "/api/v2/projects/{projectId}/block-diagrams/{blockDiagramId}/failure-modes/{failureModeId}",
|
|
421
|
+
"method": "DELETE",
|
|
422
|
+
"operationId": "deleteFailureMode_1",
|
|
423
|
+
"summary": "Delete Failure Mode from Block Diagram (v2)",
|
|
424
|
+
"description": "Deletes a predefined failure mode from a specific block diagram within a project. This destructive operation permanently removes the failure mode and any associated FMM diagram structural data from the component. Use this endpoint to clean up incorrect entries, remove obsolete failure definitions, or restructure the block diagram's failure analysis. Since this action is irreversible, it should be called only after user confirmation. It is essential for maintaining accurate and up-to-date Failure Mode and Effects Analysis (FMEA) records.",
|
|
425
|
+
"tags": [],
|
|
426
|
+
"parameters": [
|
|
427
|
+
{
|
|
428
|
+
"name": "projectId",
|
|
429
|
+
"in": "path",
|
|
430
|
+
"required": true,
|
|
431
|
+
"schema": {
|
|
432
|
+
"type": "string"
|
|
433
|
+
}
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "blockDiagramId",
|
|
437
|
+
"in": "path",
|
|
438
|
+
"required": true,
|
|
439
|
+
"schema": {
|
|
440
|
+
"type": "string"
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
{
|
|
444
|
+
"name": "failureModeId",
|
|
445
|
+
"in": "path",
|
|
446
|
+
"required": true,
|
|
447
|
+
"schema": {
|
|
448
|
+
"type": "string"
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
],
|
|
452
|
+
"requestBody": null,
|
|
453
|
+
"responses": {
|
|
454
|
+
"default": {
|
|
455
|
+
"description": "default response",
|
|
456
|
+
"content": {
|
|
457
|
+
"*/*": {}
|
|
458
|
+
}
|
|
459
|
+
}
|
|
460
|
+
}
|
|
461
|
+
},
|
|
335
462
|
{
|
|
336
463
|
"path": "/api/v2/template/block-diagrams/{blockDiagramType}/sheet-headers",
|
|
337
464
|
"method": "GET",
|
|
@@ -367,6 +494,45 @@
|
|
|
367
494
|
}
|
|
368
495
|
}
|
|
369
496
|
}
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
"path": "/api/v2/projects/{projectId}/block-diagrams/{blockDiagramId}/failure-modes",
|
|
500
|
+
"method": "POST",
|
|
501
|
+
"summary": "Create Failure Modes from Block Diagram",
|
|
502
|
+
"description": "Batch generates and creates multiple failure modes simultaneously, specifically linking them to a defined block diagram and its underlying components. Use this powerful bulk operation to quickly populate an FMEA worksheet, translate block diagram vulnerabilities into formal failure modes, and accelerate risk assessment initialization. (Generate Failure Modes / Batch Create Failures / Link Flaws to Diagram / Bulk Add).",
|
|
503
|
+
"tags": [],
|
|
504
|
+
"operationId": "create_2",
|
|
505
|
+
"parameters": [
|
|
506
|
+
{
|
|
507
|
+
"name": "projectId",
|
|
508
|
+
"in": "path",
|
|
509
|
+
"required": true,
|
|
510
|
+
"schema": {
|
|
511
|
+
"type": "string"
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"name": "blockDiagramId",
|
|
516
|
+
"in": "path",
|
|
517
|
+
"required": true,
|
|
518
|
+
"schema": {
|
|
519
|
+
"type": "string"
|
|
520
|
+
}
|
|
521
|
+
}
|
|
522
|
+
],
|
|
523
|
+
"requestBody": {
|
|
524
|
+
"content": {
|
|
525
|
+
"application/json": {}
|
|
526
|
+
}
|
|
527
|
+
},
|
|
528
|
+
"responses": {
|
|
529
|
+
"default": {
|
|
530
|
+
"description": "default response",
|
|
531
|
+
"content": {
|
|
532
|
+
"application/json": {}
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
}
|
|
370
536
|
}
|
|
371
537
|
]
|
|
372
538
|
}
|