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.
@@ -25,7 +25,34 @@
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
+ "title": {
38
+ "type": "string"
39
+ },
40
+ "subTitle": {
41
+ "type": "string"
42
+ },
43
+ "serial": {
44
+ "type": "integer"
45
+ },
46
+ "description": {
47
+ "type": "string"
48
+ },
49
+ "topNodeId": {
50
+ "type": "string"
51
+ }
52
+ }
53
+ }
54
+ }
55
+ }
29
56
  }
30
57
  }
31
58
  }
@@ -81,7 +108,328 @@
81
108
  "default": {
82
109
  "description": "default response",
83
110
  "content": {
84
- "application/json": {}
111
+ "application/json": {
112
+ "schema": {
113
+ "type": "array",
114
+ "items": {
115
+ "type": "object",
116
+ "properties": {
117
+ "projectId": {
118
+ "type": "string"
119
+ },
120
+ "secondTag": {
121
+ "type": "string"
122
+ },
123
+ "tag": {
124
+ "type": "string"
125
+ },
126
+ "title": {
127
+ "type": "string"
128
+ },
129
+ "subTitle": {
130
+ "type": "string"
131
+ },
132
+ "serial": {
133
+ "type": "integer"
134
+ },
135
+ "project": {
136
+ "type": "object",
137
+ "properties": {
138
+ "id": {
139
+ "type": "string"
140
+ },
141
+ "title": {
142
+ "type": "string"
143
+ },
144
+ "type": {
145
+ "type": "string"
146
+ },
147
+ "isMaster": {
148
+ "type": "string"
149
+ },
150
+ "isReferenced": {
151
+ "type": "string"
152
+ },
153
+ "isActive": {
154
+ "type": "string"
155
+ },
156
+ "projectClass": {
157
+ "type": "string"
158
+ },
159
+ "systemFunction": {
160
+ "type": "string"
161
+ },
162
+ "systemRequirement": {
163
+ "type": "string"
164
+ },
165
+ "item": {
166
+ "type": "string"
167
+ },
168
+ "model": {
169
+ "type": "string"
170
+ },
171
+ "startDate": {
172
+ "type": "string",
173
+ "format": "date"
174
+ },
175
+ "dueDate": {
176
+ "type": "string",
177
+ "format": "date"
178
+ },
179
+ "completedDate": {
180
+ "type": "string",
181
+ "format": "date"
182
+ },
183
+ "updateUntil": {
184
+ "type": "string",
185
+ "format": "date"
186
+ },
187
+ "evaluationCriteria": {
188
+ "type": "string"
189
+ },
190
+ "description": {
191
+ "type": "string"
192
+ },
193
+ "needsApproval": {
194
+ "type": "string"
195
+ },
196
+ "score": {
197
+ "type": "integer"
198
+ },
199
+ "status": {
200
+ "type": "string"
201
+ },
202
+ "syncProject": {
203
+ "type": "string"
204
+ },
205
+ "division": {
206
+ "type": "object",
207
+ "properties": {
208
+ "id": {
209
+ "type": "integer"
210
+ },
211
+ "no": {
212
+ "type": "integer"
213
+ },
214
+ "name": {
215
+ "type": "string"
216
+ },
217
+ "code": {
218
+ "type": "string"
219
+ }
220
+ }
221
+ },
222
+ "worksheetTemplate": {
223
+ "type": "object",
224
+ "properties": {
225
+ "id": {
226
+ "type": "integer"
227
+ },
228
+ "title": {
229
+ "type": "string"
230
+ },
231
+ "fmeaType": {
232
+ "type": "string"
233
+ },
234
+ "baseId": {
235
+ "type": "integer"
236
+ },
237
+ "baseTitle": {
238
+ "type": "string"
239
+ },
240
+ "order": {
241
+ "type": "integer"
242
+ },
243
+ "selected": {
244
+ "type": "integer"
245
+ },
246
+ "active": {
247
+ "type": "integer"
248
+ }
249
+ }
250
+ },
251
+ "leader": {
252
+ "type": "object",
253
+ "properties": {
254
+ "id": {
255
+ "type": "string"
256
+ },
257
+ "name": {
258
+ "type": "string"
259
+ },
260
+ "email": {
261
+ "type": "string"
262
+ },
263
+ "department": {
264
+ "type": "string"
265
+ },
266
+ "division": {
267
+ "type": "object",
268
+ "properties": {
269
+ "id": {
270
+ "type": "integer"
271
+ },
272
+ "no": {
273
+ "type": "integer"
274
+ },
275
+ "name": {
276
+ "type": "string"
277
+ },
278
+ "code": {
279
+ "type": "string"
280
+ }
281
+ }
282
+ }
283
+ }
284
+ },
285
+ "completionReviewer": {
286
+ "type": "object",
287
+ "properties": {
288
+ "id": {
289
+ "type": "string"
290
+ },
291
+ "name": {
292
+ "type": "string"
293
+ },
294
+ "email": {
295
+ "type": "string"
296
+ },
297
+ "department": {
298
+ "type": "string"
299
+ },
300
+ "division": {
301
+ "type": "object",
302
+ "properties": {
303
+ "id": {
304
+ "type": "integer"
305
+ },
306
+ "no": {
307
+ "type": "integer"
308
+ },
309
+ "name": {
310
+ "type": "string"
311
+ },
312
+ "code": {
313
+ "type": "string"
314
+ }
315
+ }
316
+ }
317
+ }
318
+ },
319
+ "approver": {
320
+ "type": "object",
321
+ "properties": {
322
+ "id": {
323
+ "type": "string"
324
+ },
325
+ "name": {
326
+ "type": "string"
327
+ },
328
+ "email": {
329
+ "type": "string"
330
+ },
331
+ "department": {
332
+ "type": "string"
333
+ },
334
+ "division": {
335
+ "type": "object",
336
+ "properties": {
337
+ "id": {
338
+ "type": "integer"
339
+ },
340
+ "no": {
341
+ "type": "integer"
342
+ },
343
+ "name": {
344
+ "type": "string"
345
+ },
346
+ "code": {
347
+ "type": "string"
348
+ }
349
+ }
350
+ }
351
+ }
352
+ },
353
+ "members": {
354
+ "type": "array",
355
+ "items": {
356
+ "type": "object",
357
+ "properties": {
358
+ "id": {
359
+ "type": "string"
360
+ },
361
+ "name": {
362
+ "type": "string"
363
+ },
364
+ "email": {
365
+ "type": "string"
366
+ },
367
+ "department": {
368
+ "type": "string"
369
+ },
370
+ "division": {
371
+ "type": "object",
372
+ "properties": {
373
+ "id": {
374
+ "type": "integer"
375
+ },
376
+ "no": {
377
+ "type": "integer"
378
+ },
379
+ "name": {
380
+ "type": "string"
381
+ },
382
+ "code": {
383
+ "type": "string"
384
+ }
385
+ }
386
+ }
387
+ }
388
+ }
389
+ },
390
+ "reviewers": {
391
+ "type": "array",
392
+ "items": {
393
+ "type": "object",
394
+ "properties": {
395
+ "id": {
396
+ "type": "string"
397
+ },
398
+ "name": {
399
+ "type": "string"
400
+ },
401
+ "email": {
402
+ "type": "string"
403
+ },
404
+ "department": {
405
+ "type": "string"
406
+ },
407
+ "division": {
408
+ "type": "object",
409
+ "properties": {
410
+ "id": {
411
+ "type": "integer"
412
+ },
413
+ "no": {
414
+ "type": "integer"
415
+ },
416
+ "name": {
417
+ "type": "string"
418
+ },
419
+ "code": {
420
+ "type": "string"
421
+ }
422
+ }
423
+ }
424
+ }
425
+ }
426
+ }
427
+ }
428
+ }
429
+ }
430
+ }
431
+ }
432
+ }
85
433
  }
86
434
  }
87
435
  }
@@ -116,7 +464,46 @@
116
464
  "default": {
117
465
  "description": "default response",
118
466
  "content": {
119
- "application/json": {}
467
+ "application/json": {
468
+ "schema": {
469
+ "type": "object",
470
+ "properties": {
471
+ "id": {
472
+ "type": "string"
473
+ },
474
+ "parentId": {
475
+ "type": "string"
476
+ },
477
+ "originalId": {
478
+ "type": "string"
479
+ },
480
+ "name": {
481
+ "type": "string"
482
+ },
483
+ "function": {
484
+ "type": "string"
485
+ },
486
+ "requirement": {
487
+ "type": "string"
488
+ },
489
+ "depth": {
490
+ "type": "integer"
491
+ },
492
+ "blockNodeType": {
493
+ "type": "string",
494
+ "enum": [
495
+ "SUB_FUNCTION",
496
+ "NEW_CHANGE_ASSEMBLY",
497
+ "NEW_CHANGE_PART",
498
+ "TARGET"
499
+ ]
500
+ },
501
+ "sequence": {
502
+ "type": "integer"
503
+ }
504
+ }
505
+ }
506
+ }
120
507
  }
121
508
  }
122
509
  }
@@ -36,7 +36,28 @@
36
36
  "default": {
37
37
  "description": "default response",
38
38
  "content": {
39
- "application/json": {}
39
+ "application/json": {
40
+ "schema": {
41
+ "type": "array",
42
+ "items": {
43
+ "type": "object",
44
+ "properties": {
45
+ "id": {
46
+ "type": "integer"
47
+ },
48
+ "no": {
49
+ "type": "integer"
50
+ },
51
+ "name": {
52
+ "type": "string"
53
+ },
54
+ "code": {
55
+ "type": "string"
56
+ }
57
+ }
58
+ }
59
+ }
60
+ }
40
61
  }
41
62
  }
42
63
  }
@@ -92,7 +113,36 @@
92
113
  "default": {
93
114
  "description": "default response",
94
115
  "content": {
95
- "application/json": {}
116
+ "application/json": {
117
+ "schema": {
118
+ "type": "object",
119
+ "properties": {
120
+ "id": {
121
+ "type": "integer"
122
+ },
123
+ "authorizedDivisions": {
124
+ "type": "array",
125
+ "items": {
126
+ "type": "object",
127
+ "properties": {
128
+ "id": {
129
+ "type": "integer"
130
+ },
131
+ "no": {
132
+ "type": "integer"
133
+ },
134
+ "name": {
135
+ "type": "string"
136
+ },
137
+ "code": {
138
+ "type": "string"
139
+ }
140
+ }
141
+ }
142
+ }
143
+ }
144
+ }
145
+ }
96
146
  }
97
147
  }
98
148
  }
@@ -109,7 +159,28 @@
109
159
  "default": {
110
160
  "description": "default response",
111
161
  "content": {
112
- "application/json": {}
162
+ "application/json": {
163
+ "schema": {
164
+ "type": "array",
165
+ "items": {
166
+ "type": "object",
167
+ "properties": {
168
+ "id": {
169
+ "type": "integer"
170
+ },
171
+ "no": {
172
+ "type": "integer"
173
+ },
174
+ "name": {
175
+ "type": "string"
176
+ },
177
+ "code": {
178
+ "type": "string"
179
+ }
180
+ }
181
+ }
182
+ }
183
+ }
113
184
  }
114
185
  }
115
186
  }
@@ -41,7 +41,52 @@
41
41
  "default": {
42
42
  "description": "default response",
43
43
  "content": {
44
- "application/json": {}
44
+ "application/json": {
45
+ "schema": {
46
+ "type": "array",
47
+ "items": {
48
+ "type": "object",
49
+ "properties": {
50
+ "projectId": {
51
+ "type": "string"
52
+ },
53
+ "id": {
54
+ "type": "string"
55
+ },
56
+ "name": {
57
+ "type": "string"
58
+ },
59
+ "nodeKind": {
60
+ "type": "string"
61
+ },
62
+ "nodeId": {
63
+ "type": "string"
64
+ },
65
+ "originalNodeId": {
66
+ "type": "string"
67
+ },
68
+ "blockType": {
69
+ "type": "string"
70
+ },
71
+ "worksheetId": {
72
+ "type": "integer"
73
+ },
74
+ "referTag": {
75
+ "type": "string"
76
+ },
77
+ "rank": {
78
+ "type": "string"
79
+ },
80
+ "complete": {
81
+ "type": "string"
82
+ },
83
+ "transferFmmObject": {
84
+ "type": "integer"
85
+ }
86
+ }
87
+ }
88
+ }
89
+ }
45
90
  }
46
91
  }
47
92
  }
@@ -206,7 +206,43 @@
206
206
  "default": {
207
207
  "description": "default response",
208
208
  "content": {
209
- "application/json": {}
209
+ "application/json": {
210
+ "schema": {
211
+ "type": "object",
212
+ "properties": {
213
+ "id": {
214
+ "type": "integer",
215
+ "format": "int64"
216
+ },
217
+ "categoryId": {
218
+ "type": "integer",
219
+ "format": "int64"
220
+ },
221
+ "item": {
222
+ "type": "string"
223
+ },
224
+ "function": {
225
+ "type": "string"
226
+ },
227
+ "designCause": {
228
+ "type": "string"
229
+ },
230
+ "processCause": {
231
+ "type": "string"
232
+ },
233
+ "stress": {
234
+ "type": "string"
235
+ },
236
+ "failureMode": {
237
+ "type": "string"
238
+ },
239
+ "createdAt": {
240
+ "type": "string",
241
+ "format": "date-time"
242
+ }
243
+ }
244
+ }
245
+ }
210
246
  }
211
247
  }
212
248
  }
@@ -314,7 +350,46 @@
314
350
  "default": {
315
351
  "description": "default response",
316
352
  "content": {
317
- "application/json": {}
353
+ "application/json": {
354
+ "schema": {
355
+ "type": "array",
356
+ "items": {
357
+ "type": "object",
358
+ "properties": {
359
+ "id": {
360
+ "type": "integer",
361
+ "format": "int64"
362
+ },
363
+ "categoryId": {
364
+ "type": "integer",
365
+ "format": "int64"
366
+ },
367
+ "item": {
368
+ "type": "string"
369
+ },
370
+ "function": {
371
+ "type": "string"
372
+ },
373
+ "designCause": {
374
+ "type": "string"
375
+ },
376
+ "processCause": {
377
+ "type": "string"
378
+ },
379
+ "stress": {
380
+ "type": "string"
381
+ },
382
+ "failureMode": {
383
+ "type": "string"
384
+ },
385
+ "createdAt": {
386
+ "type": "string",
387
+ "format": "date-time"
388
+ }
389
+ }
390
+ }
391
+ }
392
+ }
318
393
  }
319
394
  }
320
395
  }