fmea-api-mcp-server 1.1.68 → 1.1.70
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/changelog/1.1.68.json +14 -0
- package/data/changelog/1.1.69.json +7 -0
- package/data/changelog/next.json +39 -25
- package/data/endpoint-lookup.json +1 -1
- package/data/enums.json +35 -2
- package/data/search-index.oxy +1 -1
- package/dist/index.js +1 -1
- package/dist/intents.js +1 -1
- package/dist/synonyms.js +1 -1
- package/endpoints/v2/failure-modes/core.json +551 -0
- package/endpoints/v2/worksheets/core.json +195 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
package/dist/intents.js
CHANGED
|
@@ -12,7 +12,7 @@ export const ACTION_KEYWORDS = {
|
|
|
12
12
|
// Monitoring
|
|
13
13
|
'MONITOR': ['monitor', 'track', 'audit', 'inspect', 'history', 'logs', 'usage', 'metrics', 'stats'],
|
|
14
14
|
// CRUD
|
|
15
|
-
'create': ['create', 'add', 'new', 'make', 'generate', 'register'],
|
|
15
|
+
'create': ['create', 'add', 'new', 'make', 'generate', 'register', 'merge', 'combine', 'revise', 'revision'], // [R42] Added merge/combine/revise
|
|
16
16
|
'update': ['update', 'edit', 'change', 'modify', 'save', 'set', 'reset', 'password', 'refresh', 'approve', 'reject', 'rename'],
|
|
17
17
|
'delete': ['delete', 'remove', 'drop', 'erase'],
|
|
18
18
|
'list': ['list', 'get', 'show', 'fetch', 'all', 'view', 'files', 'status', 'check'],
|
package/dist/synonyms.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export const METHOD_ACTIONS = {
|
|
2
|
-
"POST": ["create", "add", "new", "register", "upload", "generate", "insert"],
|
|
2
|
+
"POST": ["create", "add", "new", "register", "upload", "generate", "insert", "merge", "combine", "revise"], // [R42] Added merge/combine/revise
|
|
3
3
|
"GET": ["read", "get", "fetch", "find", "search", "list", "show", "details"],
|
|
4
4
|
"PUT": ["update", "modify", "edit", "change", "save", "set", "refresh", "renew", "upgrade"],
|
|
5
5
|
"PATCH": ["update", "modify", "edit", "change", "save", "set", "adjust", "alter", "tweak"],
|
|
@@ -790,6 +790,557 @@
|
|
|
790
790
|
}
|
|
791
791
|
}
|
|
792
792
|
}
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"path": "/api/v2/projects/{projectId}/failure-modes/{failureModeId}/fmm-diagram/sources",
|
|
796
|
+
"method": "GET",
|
|
797
|
+
"operationId": "getSources",
|
|
798
|
+
"summary": "Get node sources",
|
|
799
|
+
"description": "Returns source metadata and available flat source payloads for a node in the FMM diagram. This hard-break contract does not expose popup option enums. FE knows nodeType before fetch and must render popup choices from request-time node context instead of response-only metadata. FE-owned internal/external ITEM save intent remains outside this source response and should be mapped to the existing typed save contract. The response can be cached by request context such as projectId, failureModeId, nodeType, sourceType, blockDiagramId, and objectTag without repeating popup option semantics already owned by FE. For non-process EFFECT, ITEM, and EXTERNAL_ITEM, BOM browse data remains lazy-loaded through /sources/bom while the response still distinguishes each node family through nodeType, editMode, manualEntryAllowed, and availableSourceTypes. For non-process STRESS, DESIGN, and PROCESS, the current contract follows legacy parity by exposing SYSTEM_DEFINITION only. ProjectType.PROCESS continues to use its separate PROJECT_REUSE-based contract. Supports SYSTEM_DEFINITION (flat items from managed conditions) and PROJECT_REUSE (flat items from existing project data). BOM sources are loaded via /sources/bom. Requests filtered with sourceType=BOM still return metadata only. When the node type is BOM-backed, this endpoint returns source metadata and an empty sources list until the BOM tree is requested separately.",
|
|
800
|
+
"tags": [
|
|
801
|
+
"FMM Diagram"
|
|
802
|
+
],
|
|
803
|
+
"parameters": [
|
|
804
|
+
{
|
|
805
|
+
"name": "projectId",
|
|
806
|
+
"in": "path",
|
|
807
|
+
"description": "Project ID",
|
|
808
|
+
"required": true,
|
|
809
|
+
"schema": {
|
|
810
|
+
"type": "string"
|
|
811
|
+
}
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"name": "failureModeId",
|
|
815
|
+
"in": "path",
|
|
816
|
+
"description": "Failure mode ID",
|
|
817
|
+
"required": true,
|
|
818
|
+
"schema": {
|
|
819
|
+
"type": "string"
|
|
820
|
+
}
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
"name": "nodeType",
|
|
824
|
+
"in": "query",
|
|
825
|
+
"description": "Target node type (required)",
|
|
826
|
+
"schema": {
|
|
827
|
+
"type": "string",
|
|
828
|
+
"enum": [
|
|
829
|
+
"FAILURE_MODE",
|
|
830
|
+
"EFFECT",
|
|
831
|
+
"ITEM",
|
|
832
|
+
"EXTERNAL_ITEM",
|
|
833
|
+
"GROUP",
|
|
834
|
+
"CAUSE_U",
|
|
835
|
+
"CAUSE_I",
|
|
836
|
+
"STRESS",
|
|
837
|
+
"DESIGN",
|
|
838
|
+
"PROCESS"
|
|
839
|
+
]
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"name": "sourceType",
|
|
844
|
+
"in": "query",
|
|
845
|
+
"description": "Source type filter (optional, omit to bundle all available flat sources)",
|
|
846
|
+
"schema": {
|
|
847
|
+
"type": "string",
|
|
848
|
+
"enum": [
|
|
849
|
+
"SYSTEM_DEFINITION",
|
|
850
|
+
"PROJECT_REUSE",
|
|
851
|
+
"BOM"
|
|
852
|
+
]
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"name": "fmmDiagramType",
|
|
857
|
+
"in": "query",
|
|
858
|
+
"description": "FMM diagram type filter for reuse queries (optional)",
|
|
859
|
+
"schema": {
|
|
860
|
+
"type": "string",
|
|
861
|
+
"enum": [
|
|
862
|
+
"UNUSED",
|
|
863
|
+
"NOT_SELECTED",
|
|
864
|
+
"TYPE_A",
|
|
865
|
+
"TYPE_C"
|
|
866
|
+
]
|
|
867
|
+
}
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "effectType",
|
|
871
|
+
"in": "query",
|
|
872
|
+
"description": "Product/process filter for effect-related reuse rows (optional)",
|
|
873
|
+
"schema": {
|
|
874
|
+
"type": "string",
|
|
875
|
+
"enum": [
|
|
876
|
+
"PRODUCT",
|
|
877
|
+
"PROCESS"
|
|
878
|
+
]
|
|
879
|
+
}
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"requestBody": null,
|
|
883
|
+
"responses": {
|
|
884
|
+
"default": {
|
|
885
|
+
"description": "default response",
|
|
886
|
+
"content": {
|
|
887
|
+
"application/json": {
|
|
888
|
+
"schema": {
|
|
889
|
+
"type": "object",
|
|
890
|
+
"properties": {
|
|
891
|
+
"nodeType": {
|
|
892
|
+
"type": "string",
|
|
893
|
+
"enum": [
|
|
894
|
+
"FAILURE_MODE",
|
|
895
|
+
"EFFECT",
|
|
896
|
+
"ITEM",
|
|
897
|
+
"EXTERNAL_ITEM",
|
|
898
|
+
"GROUP",
|
|
899
|
+
"CAUSE_U",
|
|
900
|
+
"CAUSE_I",
|
|
901
|
+
"STRESS",
|
|
902
|
+
"DESIGN",
|
|
903
|
+
"PROCESS"
|
|
904
|
+
]
|
|
905
|
+
},
|
|
906
|
+
"projectType": {
|
|
907
|
+
"type": "string",
|
|
908
|
+
"enum": [
|
|
909
|
+
"DESIGN",
|
|
910
|
+
"PROCESS",
|
|
911
|
+
"EQUIPMENT",
|
|
912
|
+
"FA",
|
|
913
|
+
"FTA",
|
|
914
|
+
"CPLAN"
|
|
915
|
+
]
|
|
916
|
+
},
|
|
917
|
+
"editMode": {
|
|
918
|
+
"type": "string",
|
|
919
|
+
"enum": [
|
|
920
|
+
"TEXT_ASSISTED",
|
|
921
|
+
"BOM_PICK"
|
|
922
|
+
]
|
|
923
|
+
},
|
|
924
|
+
"manualEntryAllowed": {
|
|
925
|
+
"type": "boolean"
|
|
926
|
+
},
|
|
927
|
+
"availableSourceTypes": {
|
|
928
|
+
"type": "array",
|
|
929
|
+
"items": {
|
|
930
|
+
"type": "string",
|
|
931
|
+
"enum": [
|
|
932
|
+
"SYSTEM_DEFINITION",
|
|
933
|
+
"PROJECT_REUSE",
|
|
934
|
+
"BOM"
|
|
935
|
+
]
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
"sources": {
|
|
939
|
+
"type": "array",
|
|
940
|
+
"items": {
|
|
941
|
+
"type": "object",
|
|
942
|
+
"properties": {
|
|
943
|
+
"sourceType": {
|
|
944
|
+
"type": "string",
|
|
945
|
+
"enum": [
|
|
946
|
+
"SYSTEM_DEFINITION",
|
|
947
|
+
"PROJECT_REUSE",
|
|
948
|
+
"BOM"
|
|
949
|
+
]
|
|
950
|
+
},
|
|
951
|
+
"flatItems": {
|
|
952
|
+
"type": "array",
|
|
953
|
+
"items": {
|
|
954
|
+
"type": "string"
|
|
955
|
+
}
|
|
956
|
+
},
|
|
957
|
+
"treeRoots": {
|
|
958
|
+
"type": "array",
|
|
959
|
+
"items": {
|
|
960
|
+
"type": "object",
|
|
961
|
+
"properties": {
|
|
962
|
+
"id": {
|
|
963
|
+
"type": "string"
|
|
964
|
+
},
|
|
965
|
+
"label": {
|
|
966
|
+
"type": "string"
|
|
967
|
+
},
|
|
968
|
+
"blockNodeType": {
|
|
969
|
+
"type": "string",
|
|
970
|
+
"enum": [
|
|
971
|
+
"FUNCTION",
|
|
972
|
+
"PART",
|
|
973
|
+
"SUB_FUNCTION",
|
|
974
|
+
"ASSEMBLY",
|
|
975
|
+
"NEW_CHANGE_ASSEMBLY",
|
|
976
|
+
"NEW_CHANGE_PART",
|
|
977
|
+
"NEW_CHANGE_PROCESS",
|
|
978
|
+
"SUPER_SYSTEM",
|
|
979
|
+
"TARGET"
|
|
980
|
+
]
|
|
981
|
+
},
|
|
982
|
+
"referencedBlockNodeId": {
|
|
983
|
+
"type": "string"
|
|
984
|
+
},
|
|
985
|
+
"function": {
|
|
986
|
+
"type": "string"
|
|
987
|
+
},
|
|
988
|
+
"requirement": {
|
|
989
|
+
"type": "string"
|
|
990
|
+
},
|
|
991
|
+
"failureModes": {
|
|
992
|
+
"type": "array",
|
|
993
|
+
"items": {
|
|
994
|
+
"type": "object",
|
|
995
|
+
"properties": {
|
|
996
|
+
"blockNodeId": {
|
|
997
|
+
"type": "string"
|
|
998
|
+
},
|
|
999
|
+
"referencedBlockNodeId": {
|
|
1000
|
+
"type": "string"
|
|
1001
|
+
},
|
|
1002
|
+
"id": {
|
|
1003
|
+
"type": "string"
|
|
1004
|
+
},
|
|
1005
|
+
"name": {
|
|
1006
|
+
"type": "string"
|
|
1007
|
+
},
|
|
1008
|
+
"fmmDiagramType": {
|
|
1009
|
+
"type": "string",
|
|
1010
|
+
"enum": [
|
|
1011
|
+
"UNUSED",
|
|
1012
|
+
"NOT_SELECTED",
|
|
1013
|
+
"TYPE_A",
|
|
1014
|
+
"TYPE_C"
|
|
1015
|
+
]
|
|
1016
|
+
},
|
|
1017
|
+
"rank": {
|
|
1018
|
+
"type": "string"
|
|
1019
|
+
},
|
|
1020
|
+
"complete": {
|
|
1021
|
+
"type": "string"
|
|
1022
|
+
},
|
|
1023
|
+
"transferFmmObject": {
|
|
1024
|
+
"type": "integer"
|
|
1025
|
+
},
|
|
1026
|
+
"linked": {
|
|
1027
|
+
"type": "boolean"
|
|
1028
|
+
},
|
|
1029
|
+
"revisionSummary": {
|
|
1030
|
+
"type": "object",
|
|
1031
|
+
"properties": {
|
|
1032
|
+
"created": {
|
|
1033
|
+
"type": "object",
|
|
1034
|
+
"properties": {
|
|
1035
|
+
"userName": {
|
|
1036
|
+
"type": "string"
|
|
1037
|
+
},
|
|
1038
|
+
"updatedDateTime": {
|
|
1039
|
+
"type": "string",
|
|
1040
|
+
"format": "date-time"
|
|
1041
|
+
}
|
|
1042
|
+
}
|
|
1043
|
+
},
|
|
1044
|
+
"updated": {
|
|
1045
|
+
"type": "object",
|
|
1046
|
+
"properties": {
|
|
1047
|
+
"userName": {
|
|
1048
|
+
"type": "string"
|
|
1049
|
+
},
|
|
1050
|
+
"updatedDateTime": {
|
|
1051
|
+
"type": "string",
|
|
1052
|
+
"format": "date-time"
|
|
1053
|
+
}
|
|
1054
|
+
}
|
|
1055
|
+
}
|
|
1056
|
+
}
|
|
1057
|
+
}
|
|
1058
|
+
}
|
|
1059
|
+
}
|
|
1060
|
+
},
|
|
1061
|
+
"children": {
|
|
1062
|
+
"type": "array",
|
|
1063
|
+
"items": {
|
|
1064
|
+
"type": "object",
|
|
1065
|
+
"description": "(circular: NodeSourceTreeNodeDTO)"
|
|
1066
|
+
}
|
|
1067
|
+
}
|
|
1068
|
+
}
|
|
1069
|
+
}
|
|
1070
|
+
}
|
|
1071
|
+
}
|
|
1072
|
+
}
|
|
1073
|
+
}
|
|
1074
|
+
}
|
|
1075
|
+
}
|
|
1076
|
+
}
|
|
1077
|
+
}
|
|
1078
|
+
}
|
|
1079
|
+
}
|
|
1080
|
+
},
|
|
1081
|
+
{
|
|
1082
|
+
"path": "/api/v2/projects/{projectId}/failure-modes/{failureModeId}/fmm-diagram/sources/bom",
|
|
1083
|
+
"method": "GET",
|
|
1084
|
+
"operationId": "getBomSource",
|
|
1085
|
+
"summary": "Get BOM source tree",
|
|
1086
|
+
"description": "Returns BOM source tree data for ITEM, EXTERNAL_ITEM, and non-process EFFECT nodes. For non-process EFFECT, objectTag is used to return a context-aware tree with the higher-item chain and linked failure modes for the current node context. Tree data is lazy-loaded separately from flat /sources results and remains focused on browse payloads rather than FE popup option metadata. Only available for Design/FA/Equipment/FTA/CPlan projects.",
|
|
1087
|
+
"tags": [
|
|
1088
|
+
"FMM Diagram"
|
|
1089
|
+
],
|
|
1090
|
+
"parameters": [
|
|
1091
|
+
{
|
|
1092
|
+
"name": "projectId",
|
|
1093
|
+
"in": "path",
|
|
1094
|
+
"description": "Project ID",
|
|
1095
|
+
"required": true,
|
|
1096
|
+
"schema": {
|
|
1097
|
+
"type": "string"
|
|
1098
|
+
}
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"name": "failureModeId",
|
|
1102
|
+
"in": "path",
|
|
1103
|
+
"description": "Failure mode ID",
|
|
1104
|
+
"required": true,
|
|
1105
|
+
"schema": {
|
|
1106
|
+
"type": "string"
|
|
1107
|
+
}
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"name": "nodeType",
|
|
1111
|
+
"in": "query",
|
|
1112
|
+
"description": "Target node type (ITEM, EXTERNAL_ITEM, or EFFECT)",
|
|
1113
|
+
"schema": {
|
|
1114
|
+
"type": "string",
|
|
1115
|
+
"enum": [
|
|
1116
|
+
"FAILURE_MODE",
|
|
1117
|
+
"EFFECT",
|
|
1118
|
+
"ITEM",
|
|
1119
|
+
"EXTERNAL_ITEM",
|
|
1120
|
+
"GROUP",
|
|
1121
|
+
"CAUSE_U",
|
|
1122
|
+
"CAUSE_I",
|
|
1123
|
+
"STRESS",
|
|
1124
|
+
"DESIGN",
|
|
1125
|
+
"PROCESS"
|
|
1126
|
+
]
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1129
|
+
{
|
|
1130
|
+
"name": "blockDiagramId",
|
|
1131
|
+
"in": "query",
|
|
1132
|
+
"description": "Block diagram ID for BOM source (required)",
|
|
1133
|
+
"schema": {
|
|
1134
|
+
"type": "string"
|
|
1135
|
+
}
|
|
1136
|
+
},
|
|
1137
|
+
{
|
|
1138
|
+
"name": "objectTag",
|
|
1139
|
+
"in": "query",
|
|
1140
|
+
"description": "Current object tag for EFFECT BOM requests",
|
|
1141
|
+
"schema": {
|
|
1142
|
+
"type": "string"
|
|
1143
|
+
}
|
|
1144
|
+
}
|
|
1145
|
+
],
|
|
1146
|
+
"requestBody": null,
|
|
1147
|
+
"responses": {
|
|
1148
|
+
"default": {
|
|
1149
|
+
"description": "default response",
|
|
1150
|
+
"content": {
|
|
1151
|
+
"application/json": {
|
|
1152
|
+
"schema": {
|
|
1153
|
+
"type": "object",
|
|
1154
|
+
"properties": {
|
|
1155
|
+
"nodeType": {
|
|
1156
|
+
"type": "string",
|
|
1157
|
+
"enum": [
|
|
1158
|
+
"FAILURE_MODE",
|
|
1159
|
+
"EFFECT",
|
|
1160
|
+
"ITEM",
|
|
1161
|
+
"EXTERNAL_ITEM",
|
|
1162
|
+
"GROUP",
|
|
1163
|
+
"CAUSE_U",
|
|
1164
|
+
"CAUSE_I",
|
|
1165
|
+
"STRESS",
|
|
1166
|
+
"DESIGN",
|
|
1167
|
+
"PROCESS"
|
|
1168
|
+
]
|
|
1169
|
+
},
|
|
1170
|
+
"projectType": {
|
|
1171
|
+
"type": "string",
|
|
1172
|
+
"enum": [
|
|
1173
|
+
"DESIGN",
|
|
1174
|
+
"PROCESS",
|
|
1175
|
+
"EQUIPMENT",
|
|
1176
|
+
"FA",
|
|
1177
|
+
"FTA",
|
|
1178
|
+
"CPLAN"
|
|
1179
|
+
]
|
|
1180
|
+
},
|
|
1181
|
+
"editMode": {
|
|
1182
|
+
"type": "string",
|
|
1183
|
+
"enum": [
|
|
1184
|
+
"TEXT_ASSISTED",
|
|
1185
|
+
"BOM_PICK"
|
|
1186
|
+
]
|
|
1187
|
+
},
|
|
1188
|
+
"manualEntryAllowed": {
|
|
1189
|
+
"type": "boolean"
|
|
1190
|
+
},
|
|
1191
|
+
"availableSourceTypes": {
|
|
1192
|
+
"type": "array",
|
|
1193
|
+
"items": {
|
|
1194
|
+
"type": "string",
|
|
1195
|
+
"enum": [
|
|
1196
|
+
"SYSTEM_DEFINITION",
|
|
1197
|
+
"PROJECT_REUSE",
|
|
1198
|
+
"BOM"
|
|
1199
|
+
]
|
|
1200
|
+
}
|
|
1201
|
+
},
|
|
1202
|
+
"sources": {
|
|
1203
|
+
"type": "array",
|
|
1204
|
+
"items": {
|
|
1205
|
+
"type": "object",
|
|
1206
|
+
"properties": {
|
|
1207
|
+
"sourceType": {
|
|
1208
|
+
"type": "string",
|
|
1209
|
+
"enum": [
|
|
1210
|
+
"SYSTEM_DEFINITION",
|
|
1211
|
+
"PROJECT_REUSE",
|
|
1212
|
+
"BOM"
|
|
1213
|
+
]
|
|
1214
|
+
},
|
|
1215
|
+
"flatItems": {
|
|
1216
|
+
"type": "array",
|
|
1217
|
+
"items": {
|
|
1218
|
+
"type": "string"
|
|
1219
|
+
}
|
|
1220
|
+
},
|
|
1221
|
+
"treeRoots": {
|
|
1222
|
+
"type": "array",
|
|
1223
|
+
"items": {
|
|
1224
|
+
"type": "object",
|
|
1225
|
+
"properties": {
|
|
1226
|
+
"id": {
|
|
1227
|
+
"type": "string"
|
|
1228
|
+
},
|
|
1229
|
+
"label": {
|
|
1230
|
+
"type": "string"
|
|
1231
|
+
},
|
|
1232
|
+
"blockNodeType": {
|
|
1233
|
+
"type": "string",
|
|
1234
|
+
"enum": [
|
|
1235
|
+
"FUNCTION",
|
|
1236
|
+
"PART",
|
|
1237
|
+
"SUB_FUNCTION",
|
|
1238
|
+
"ASSEMBLY",
|
|
1239
|
+
"NEW_CHANGE_ASSEMBLY",
|
|
1240
|
+
"NEW_CHANGE_PART",
|
|
1241
|
+
"NEW_CHANGE_PROCESS",
|
|
1242
|
+
"SUPER_SYSTEM",
|
|
1243
|
+
"TARGET"
|
|
1244
|
+
]
|
|
1245
|
+
},
|
|
1246
|
+
"referencedBlockNodeId": {
|
|
1247
|
+
"type": "string"
|
|
1248
|
+
},
|
|
1249
|
+
"function": {
|
|
1250
|
+
"type": "string"
|
|
1251
|
+
},
|
|
1252
|
+
"requirement": {
|
|
1253
|
+
"type": "string"
|
|
1254
|
+
},
|
|
1255
|
+
"failureModes": {
|
|
1256
|
+
"type": "array",
|
|
1257
|
+
"items": {
|
|
1258
|
+
"type": "object",
|
|
1259
|
+
"properties": {
|
|
1260
|
+
"blockNodeId": {
|
|
1261
|
+
"type": "string"
|
|
1262
|
+
},
|
|
1263
|
+
"referencedBlockNodeId": {
|
|
1264
|
+
"type": "string"
|
|
1265
|
+
},
|
|
1266
|
+
"id": {
|
|
1267
|
+
"type": "string"
|
|
1268
|
+
},
|
|
1269
|
+
"name": {
|
|
1270
|
+
"type": "string"
|
|
1271
|
+
},
|
|
1272
|
+
"fmmDiagramType": {
|
|
1273
|
+
"type": "string",
|
|
1274
|
+
"enum": [
|
|
1275
|
+
"UNUSED",
|
|
1276
|
+
"NOT_SELECTED",
|
|
1277
|
+
"TYPE_A",
|
|
1278
|
+
"TYPE_C"
|
|
1279
|
+
]
|
|
1280
|
+
},
|
|
1281
|
+
"rank": {
|
|
1282
|
+
"type": "string"
|
|
1283
|
+
},
|
|
1284
|
+
"complete": {
|
|
1285
|
+
"type": "string"
|
|
1286
|
+
},
|
|
1287
|
+
"transferFmmObject": {
|
|
1288
|
+
"type": "integer"
|
|
1289
|
+
},
|
|
1290
|
+
"linked": {
|
|
1291
|
+
"type": "boolean"
|
|
1292
|
+
},
|
|
1293
|
+
"revisionSummary": {
|
|
1294
|
+
"type": "object",
|
|
1295
|
+
"properties": {
|
|
1296
|
+
"created": {
|
|
1297
|
+
"type": "object",
|
|
1298
|
+
"properties": {
|
|
1299
|
+
"userName": {
|
|
1300
|
+
"type": "string"
|
|
1301
|
+
},
|
|
1302
|
+
"updatedDateTime": {
|
|
1303
|
+
"type": "string",
|
|
1304
|
+
"format": "date-time"
|
|
1305
|
+
}
|
|
1306
|
+
}
|
|
1307
|
+
},
|
|
1308
|
+
"updated": {
|
|
1309
|
+
"type": "object",
|
|
1310
|
+
"properties": {
|
|
1311
|
+
"userName": {
|
|
1312
|
+
"type": "string"
|
|
1313
|
+
},
|
|
1314
|
+
"updatedDateTime": {
|
|
1315
|
+
"type": "string",
|
|
1316
|
+
"format": "date-time"
|
|
1317
|
+
}
|
|
1318
|
+
}
|
|
1319
|
+
}
|
|
1320
|
+
}
|
|
1321
|
+
}
|
|
1322
|
+
}
|
|
1323
|
+
}
|
|
1324
|
+
},
|
|
1325
|
+
"children": {
|
|
1326
|
+
"type": "array",
|
|
1327
|
+
"items": {
|
|
1328
|
+
"type": "object",
|
|
1329
|
+
"description": "(circular: NodeSourceTreeNodeDTO)"
|
|
1330
|
+
}
|
|
1331
|
+
}
|
|
1332
|
+
}
|
|
1333
|
+
}
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
}
|
|
1337
|
+
}
|
|
1338
|
+
}
|
|
1339
|
+
}
|
|
1340
|
+
}
|
|
1341
|
+
}
|
|
1342
|
+
}
|
|
1343
|
+
}
|
|
793
1344
|
}
|
|
794
1345
|
]
|
|
795
1346
|
}
|