@x12i/memorix-retrieval 1.26.0 → 1.28.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.
Files changed (44) hide show
  1. package/catalox-seeds/inputs/entity-descriptors/assets.json +37 -11
  2. package/catalox-seeds/inputs/entity-descriptors/subnets.json +264 -0
  3. package/catalox-seeds/inputs/entity-descriptors/vulnerabilities-groups.json +136 -0
  4. package/catalox-seeds/inputs/entity-descriptors/vulnerabilities.json +74 -2
  5. package/catalox-seeds/inputs/item-descriptors/asset-detail-item.json +2 -3
  6. package/catalox-seeds/inputs/item-descriptors/subnet-detail-item.json +74 -0
  7. package/catalox-seeds/inputs/list-descriptors/assets-main-list.json +2 -2
  8. package/catalox-seeds/inputs/list-descriptors/{topology-subnets-main-list.json → subnets-main-list.json} +5 -6
  9. package/catalox-seeds/memorix-retrieval-descriptors.manifest.json +220 -53
  10. package/dist/client/types.d.ts +3 -0
  11. package/dist/client/types.d.ts.map +1 -1
  12. package/dist/data/identity.d.ts +1 -1
  13. package/dist/data/identity.d.ts.map +1 -1
  14. package/dist/data/identity.js.map +1 -1
  15. package/dist/descriptors/associated-properties.d.ts +39 -0
  16. package/dist/descriptors/associated-properties.d.ts.map +1 -0
  17. package/dist/descriptors/associated-properties.js +65 -0
  18. package/dist/descriptors/associated-properties.js.map +1 -0
  19. package/dist/descriptors/descriptor-types.d.ts +13 -0
  20. package/dist/descriptors/descriptor-types.d.ts.map +1 -1
  21. package/dist/index.d.ts +1 -0
  22. package/dist/index.d.ts.map +1 -1
  23. package/dist/index.js +1 -0
  24. package/dist/index.js.map +1 -1
  25. package/dist/retrieval/batch-fetch.d.ts +2 -2
  26. package/dist/retrieval/batch-fetch.d.ts.map +1 -1
  27. package/dist/retrieval/batch-fetch.js +1 -1
  28. package/dist/retrieval/batch-fetch.js.map +1 -1
  29. package/dist/retrieval/fetch-item.d.ts.map +1 -1
  30. package/dist/retrieval/fetch-item.js +21 -5
  31. package/dist/retrieval/fetch-item.js.map +1 -1
  32. package/dist/seeds/build-manifest.js +1 -1
  33. package/dist/seeds/build-manifest.js.map +1 -1
  34. package/dist/seeds/default-seed-spec.d.ts.map +1 -1
  35. package/dist/seeds/default-seed-spec.js +6 -4
  36. package/dist/seeds/default-seed-spec.js.map +1 -1
  37. package/dist/tests/associated-properties.test.d.ts +2 -0
  38. package/dist/tests/associated-properties.test.d.ts.map +1 -0
  39. package/dist/tests/associated-properties.test.js +39 -0
  40. package/dist/tests/associated-properties.test.js.map +1 -0
  41. package/docs/MEMORIX-CATALOX-CONTRACTS.md +5 -5
  42. package/package.json +3 -2
  43. package/catalox-seeds/inputs/entity-descriptors/topology-subnets.json +0 -127
  44. package/catalox-seeds/inputs/item-descriptors/topology-subnet-detail-item.json +0 -41
@@ -64,16 +64,16 @@
64
64
  "item": true,
65
65
  "valueType": "string"
66
66
  },
67
- "subnetId": {
68
- "label": "Subnet ID",
67
+ "subnetCidr": {
68
+ "label": "Subnet CIDR",
69
69
  "source": {
70
70
  "contentType": "snapshots",
71
- "path": "data.subnetId"
71
+ "path": "data.subnetCidr"
72
72
  },
73
73
  "humanReadable": true,
74
74
  "sortable": true,
75
75
  "filterable": true,
76
- "list": true,
76
+ "list": false,
77
77
  "item": true,
78
78
  "valueType": "string"
79
79
  },
@@ -286,23 +286,49 @@
286
286
  "valueType": "object"
287
287
  }
288
288
  },
289
+ "associatedProperties": [
290
+ {
291
+ "name": "associatedData",
292
+ "contentType": "snapshots",
293
+ "kind": "associated",
294
+ "valueShape": "array<object>",
295
+ "linkedObjectType": "subnets",
296
+ "linkedContentType": "snapshots",
297
+ "description": "Subnet snapshot payloads copied from subnets-snapshots.data when asset data.subnetCidrs matches subnet data.cidr.",
298
+ "managed": true,
299
+ "refreshRuleKey": "assets.subnets.snapshots.by-cidr",
300
+ "sourceCollection": "subnets-snapshots"
301
+ },
302
+ {
303
+ "name": "associatedInferred",
304
+ "contentType": "snapshots",
305
+ "kind": "associated",
306
+ "valueShape": "array<object>",
307
+ "linkedObjectType": "subnets",
308
+ "linkedContentType": "inferences",
309
+ "description": "Subnet discovery payloads copied from subnets-inferences.data when asset data.subnetCidrs matches subnet data.cidr.",
310
+ "managed": true,
311
+ "refreshRuleKey": "assets.subnets.inferences.by-cidr",
312
+ "sourceCollection": "subnets-inferences"
313
+ }
314
+ ],
289
315
  "relations": {
290
316
  "assetSubnet": {
291
- "targetEntity": "topology-subnets",
317
+ "targetEntity": "subnets",
292
318
  "type": "manyToOne",
293
319
  "source": {
294
320
  "contentType": "snapshots",
295
- "path": "data.subnetId"
321
+ "path": "data.subnetCidrs"
296
322
  },
297
323
  "target": {
298
324
  "contentType": "snapshots",
299
- "path": "data.subnetId"
325
+ "path": "data.cidr"
300
326
  },
301
- "defaultMode": "record",
327
+ "defaultMode": "array",
328
+ "defaultArrayProperty": "associatedData",
302
329
  "targetFields": [
303
- "subnetId",
304
- "subnetIp",
305
330
  "cidr",
331
+ "subnetIp",
306
332
  "zone",
307
333
  "vr"
308
334
  ]
@@ -312,7 +338,7 @@
312
338
  "type": "oneToMany",
313
339
  "source": {
314
340
  "contentType": "snapshots",
315
- "path": "data.ip_address"
341
+ "path": "data.assetIps"
316
342
  },
317
343
  "target": {
318
344
  "contentType": "snapshots",
@@ -0,0 +1,264 @@
1
+ {
2
+ "id": "subnets",
3
+ "entityName": "subnets",
4
+ "target": "entity",
5
+ "defaultListDescriptorId": "subnets-main-list",
6
+ "defaultItemDescriptorId": "subnet-detail-item",
7
+ "collectionPrefix": "subnets",
8
+ "identity": {
9
+ "allowedIdFields": [
10
+ "entityId",
11
+ "recordId",
12
+ "_id"
13
+ ],
14
+ "requiredExactlyOne": false,
15
+ "defaultIdField": "entityId"
16
+ },
17
+ "defaults": {
18
+ "canonicalContentType": "snapshots",
19
+ "dataRoot": "data",
20
+ "effectiveDatePath": "capturedAt",
21
+ "fallbackEffectiveDatePaths": [
22
+ "modifiedAt",
23
+ "createdAt"
24
+ ]
25
+ },
26
+ "contentTypes": {
27
+ "snapshots": {
28
+ "postfix": "snapshots",
29
+ "collection": "subnets-snapshots",
30
+ "isCanonical": true
31
+ },
32
+ "core": {
33
+ "postfix": "core",
34
+ "collection": "subnets-core",
35
+ "isCanonical": false
36
+ },
37
+ "inferences": {
38
+ "postfix": "inferences",
39
+ "collection": "subnets-inferences",
40
+ "isCanonical": false
41
+ },
42
+ "scoped": {
43
+ "postfix": "scoped",
44
+ "collection": "subnets-scoped",
45
+ "isCanonical": false
46
+ },
47
+ "legacy": {
48
+ "postfix": "legacy",
49
+ "collection": "subnets-legacy",
50
+ "isCanonical": false
51
+ }
52
+ },
53
+ "properties": {
54
+ "recordId": {
55
+ "label": "Record ID",
56
+ "source": {
57
+ "contentType": "snapshots",
58
+ "path": "recordId"
59
+ },
60
+ "humanReadable": true,
61
+ "sortable": true,
62
+ "filterable": true,
63
+ "list": true,
64
+ "item": true,
65
+ "valueType": "string"
66
+ },
67
+ "cidr": {
68
+ "label": "Subnet CIDR",
69
+ "source": {
70
+ "contentType": "snapshots",
71
+ "path": "data.cidr"
72
+ },
73
+ "humanReadable": true,
74
+ "sortable": true,
75
+ "filterable": true,
76
+ "list": true,
77
+ "item": true,
78
+ "valueType": "string"
79
+ },
80
+ "subnetIp": {
81
+ "label": "Subnet network address",
82
+ "source": {
83
+ "contentType": "snapshots",
84
+ "path": "data.subnetIp"
85
+ },
86
+ "humanReadable": true,
87
+ "sortable": true,
88
+ "filterable": true,
89
+ "list": true,
90
+ "item": true,
91
+ "valueType": "string"
92
+ },
93
+ "zone": {
94
+ "label": "Zone",
95
+ "source": {
96
+ "contentType": "snapshots",
97
+ "path": "data.zone"
98
+ },
99
+ "humanReadable": true,
100
+ "sortable": true,
101
+ "filterable": true,
102
+ "list": true,
103
+ "item": true,
104
+ "valueType": "string"
105
+ },
106
+ "zoneClass": {
107
+ "label": "Zone Class",
108
+ "source": {
109
+ "contentType": "snapshots",
110
+ "path": "data.zoneClass"
111
+ },
112
+ "humanReadable": true,
113
+ "sortable": true,
114
+ "filterable": true,
115
+ "list": false,
116
+ "item": true,
117
+ "valueType": "string"
118
+ },
119
+ "vr": {
120
+ "label": "VR",
121
+ "source": {
122
+ "contentType": "snapshots",
123
+ "path": "data.vr"
124
+ },
125
+ "humanReadable": true,
126
+ "sortable": true,
127
+ "filterable": true,
128
+ "list": true,
129
+ "item": true,
130
+ "valueType": "string"
131
+ },
132
+ "outsideExposureClass": {
133
+ "label": "Outside Exposure",
134
+ "source": {
135
+ "contentType": "snapshots",
136
+ "path": "data.outsideExposureClass"
137
+ },
138
+ "humanReadable": true,
139
+ "sortable": true,
140
+ "filterable": true,
141
+ "list": false,
142
+ "item": true,
143
+ "valueType": "string"
144
+ },
145
+ "internalReachabilityClass": {
146
+ "label": "Internal Reachability",
147
+ "source": {
148
+ "contentType": "snapshots",
149
+ "path": "data.internalReachabilityClass"
150
+ },
151
+ "humanReadable": true,
152
+ "sortable": true,
153
+ "filterable": true,
154
+ "list": false,
155
+ "item": true,
156
+ "valueType": "string"
157
+ },
158
+ "remoteAccessAdjacent": {
159
+ "label": "Remote Access Adjacent",
160
+ "source": {
161
+ "contentType": "snapshots",
162
+ "path": "data.remoteAccessAdjacent"
163
+ },
164
+ "humanReadable": true,
165
+ "sortable": false,
166
+ "filterable": true,
167
+ "list": false,
168
+ "item": true,
169
+ "valueType": "boolean"
170
+ },
171
+ "partnerLinkAdjacent": {
172
+ "label": "Partner Link Adjacent",
173
+ "source": {
174
+ "contentType": "snapshots",
175
+ "path": "data.partnerLinkAdjacent"
176
+ },
177
+ "humanReadable": true,
178
+ "sortable": false,
179
+ "filterable": true,
180
+ "list": false,
181
+ "item": true,
182
+ "valueType": "boolean"
183
+ },
184
+ "dmzAdjacent": {
185
+ "label": "DMZ Adjacent",
186
+ "source": {
187
+ "contentType": "snapshots",
188
+ "path": "data.dmzAdjacent"
189
+ },
190
+ "humanReadable": true,
191
+ "sortable": false,
192
+ "filterable": true,
193
+ "list": false,
194
+ "item": true,
195
+ "valueType": "boolean"
196
+ },
197
+ "reachableFromZones": {
198
+ "label": "Reachable From Zones",
199
+ "source": {
200
+ "contentType": "snapshots",
201
+ "path": "data.reachableFromZones"
202
+ },
203
+ "humanReadable": true,
204
+ "sortable": false,
205
+ "filterable": false,
206
+ "list": false,
207
+ "item": true,
208
+ "valueType": "array"
209
+ },
210
+ "zoneMappingConfidence": {
211
+ "label": "Zone Mapping Confidence",
212
+ "source": {
213
+ "contentType": "snapshots",
214
+ "path": "data.zoneMappingConfidence"
215
+ },
216
+ "humanReadable": true,
217
+ "sortable": true,
218
+ "filterable": true,
219
+ "list": false,
220
+ "item": true,
221
+ "valueType": "number"
222
+ },
223
+ "quarantineLegacy": {
224
+ "label": "Legacy (quarantined)",
225
+ "source": {
226
+ "contentType": "legacy",
227
+ "path": "_system.quarantine.legacy"
228
+ },
229
+ "humanReadable": true,
230
+ "sortable": true,
231
+ "filterable": true,
232
+ "list": true,
233
+ "item": true,
234
+ "valueType": "boolean"
235
+ },
236
+ "legacySubnetIp": {
237
+ "label": "Legacy Subnet IP",
238
+ "source": {
239
+ "contentType": "legacy",
240
+ "path": "data.subnetIp"
241
+ },
242
+ "humanReadable": true,
243
+ "sortable": true,
244
+ "filterable": true,
245
+ "list": true,
246
+ "item": true,
247
+ "valueType": "string"
248
+ },
249
+ "quarantineReason": {
250
+ "label": "Quarantine Reason",
251
+ "source": {
252
+ "contentType": "legacy",
253
+ "path": "_system.quarantine.reason"
254
+ },
255
+ "humanReadable": true,
256
+ "sortable": false,
257
+ "filterable": true,
258
+ "list": false,
259
+ "item": true,
260
+ "valueType": "string"
261
+ }
262
+ },
263
+ "relations": {}
264
+ }
@@ -0,0 +1,136 @@
1
+ {
2
+ "id": "vulnerabilities-groups",
3
+ "entityName": "vulnerabilities-groups",
4
+ "defaultListDescriptorId": "vulnerabilities-groups-main-list",
5
+ "defaultItemDescriptorId": "vulnerabilities-group-detail-item",
6
+ "target": "entity",
7
+ "collectionPrefix": "vulnerabilities-groups",
8
+ "identity": {
9
+ "allowedIdFields": [
10
+ "recordId",
11
+ "recordId"
12
+ ],
13
+ "requiredExactlyOne": true,
14
+ "defaultIdField": "recordId"
15
+ },
16
+ "defaults": {
17
+ "canonicalContentType": "snapshots",
18
+ "dataRoot": "data",
19
+ "effectiveDatePath": "capturedAt",
20
+ "fallbackEffectiveDatePaths": [
21
+ "modifiedAt",
22
+ "createdAt",
23
+ "data.enrichment.enrichedAt"
24
+ ]
25
+ },
26
+ "contentTypes": {
27
+ "snapshots": {
28
+ "postfix": "snapshots",
29
+ "collection": "vulnerabilities-groups-snapshots",
30
+ "dataRoot": "data",
31
+ "isCanonical": true
32
+ },
33
+ "inferences": {
34
+ "postfix": "inferences",
35
+ "collection": "vulnerabilities-groups-inferences",
36
+ "dataRoot": "data",
37
+ "isCanonical": false
38
+ },
39
+ "analysis": {
40
+ "postfix": "analysis",
41
+ "collection": "vulnerabilities-groups-analysis",
42
+ "dataRoot": "data",
43
+ "isCanonical": false
44
+ }
45
+ },
46
+ "properties": {
47
+ "name": {
48
+ "label": "Group Name",
49
+ "source": {
50
+ "contentType": "snapshots",
51
+ "path": "data.name"
52
+ },
53
+ "humanReadable": true,
54
+ "sortable": true,
55
+ "filterable": true,
56
+ "list": true,
57
+ "item": true,
58
+ "valueType": "string"
59
+ },
60
+ "pluginId": {
61
+ "label": "Plugin ID",
62
+ "source": {
63
+ "contentType": "snapshots",
64
+ "path": "data.pluginId"
65
+ },
66
+ "humanReadable": true,
67
+ "sortable": true,
68
+ "filterable": true,
69
+ "list": true,
70
+ "item": true,
71
+ "valueType": "number"
72
+ },
73
+ "cveId": {
74
+ "label": "CVE",
75
+ "source": {
76
+ "contentType": "snapshots",
77
+ "path": "data.cveId"
78
+ },
79
+ "humanReadable": true,
80
+ "sortable": true,
81
+ "filterable": true,
82
+ "list": true,
83
+ "item": true,
84
+ "valueType": "string"
85
+ },
86
+ "severity": {
87
+ "label": "Severity",
88
+ "source": {
89
+ "contentType": "snapshots",
90
+ "path": "data.severity"
91
+ },
92
+ "humanReadable": true,
93
+ "sortable": true,
94
+ "filterable": true,
95
+ "list": true,
96
+ "item": true,
97
+ "valueType": "string"
98
+ },
99
+ "compositeScore": {
100
+ "label": "Composite Score",
101
+ "source": {
102
+ "contentType": "snapshots",
103
+ "path": "enrichment.compositeScore"
104
+ },
105
+ "humanReadable": true,
106
+ "sortable": true,
107
+ "filterable": true,
108
+ "list": true,
109
+ "item": true,
110
+ "valueType": "number"
111
+ }
112
+ },
113
+ "associatedProperties": [],
114
+ "relations": {
115
+ "groupVulnerabilities": {
116
+ "targetEntity": "vulnerabilities",
117
+ "type": "oneToMany",
118
+ "source": {
119
+ "contentType": "snapshots",
120
+ "path": "data.name"
121
+ },
122
+ "target": {
123
+ "contentType": "snapshots",
124
+ "path": "data.vulnerabilityName"
125
+ },
126
+ "defaultMode": "array",
127
+ "defaultArrayProperty": "vulnerabilities",
128
+ "targetFields": [
129
+ "assetIp",
130
+ "severity",
131
+ "cveId",
132
+ "pluginName"
133
+ ]
134
+ }
135
+ }
136
+ }
@@ -364,6 +364,56 @@
364
364
  "valueType": "object"
365
365
  }
366
366
  },
367
+ "associatedProperties": [
368
+ {
369
+ "name": "associatedData",
370
+ "contentType": "snapshots",
371
+ "kind": "associated",
372
+ "valueShape": "array<object>",
373
+ "linkedObjectType": "vulnerabilities-groups",
374
+ "linkedContentType": "snapshots",
375
+ "description": "Vulnerability group snapshot payloads copied from vulnerabilities-groups-snapshots.data when data.vulnerabilityName matches group data.name.",
376
+ "managed": true,
377
+ "refreshRuleKey": "vulnerabilities.vulnerability-groups.snapshots.by-name",
378
+ "sourceCollection": "vulnerabilities-groups-snapshots"
379
+ },
380
+ {
381
+ "name": "associatedInferred",
382
+ "contentType": "snapshots",
383
+ "kind": "associated",
384
+ "valueShape": "array<object>",
385
+ "linkedObjectType": "vulnerabilities-groups",
386
+ "linkedContentType": "inferences",
387
+ "description": "Vulnerability group discovery payloads copied from vulnerabilities-groups-inferences.data via group name bridge.",
388
+ "managed": true,
389
+ "refreshRuleKey": "vulnerabilities.vulnerability-groups.inferences.by-name",
390
+ "sourceCollection": "vulnerabilities-groups-inferences"
391
+ },
392
+ {
393
+ "name": "associatedAnalysis",
394
+ "contentType": "snapshots",
395
+ "kind": "associated",
396
+ "valueShape": "array<object>",
397
+ "linkedObjectType": "vulnerabilities-groups",
398
+ "linkedContentType": "analysis",
399
+ "description": "Vulnerability group analysis payloads copied from vulnerabilities-groups-analysis.data via group name bridge.",
400
+ "managed": true,
401
+ "refreshRuleKey": "vulnerabilities.vulnerability-groups.analysis.by-name",
402
+ "sourceCollection": "vulnerabilities-groups-analysis"
403
+ },
404
+ {
405
+ "name": "associatedAssets",
406
+ "contentType": "snapshots",
407
+ "kind": "associated",
408
+ "valueShape": "array<object>",
409
+ "linkedObjectType": "assets",
410
+ "linkedContentType": "snapshots",
411
+ "description": "Optional asset snapshot payloads copied from assets-snapshots.data when data.assetIp matches asset data.assetIps.",
412
+ "managed": true,
413
+ "refreshRuleKey": "vulnerabilities.assets.snapshots.by-assetIp",
414
+ "sourceCollection": "assets-snapshots"
415
+ }
416
+ ],
367
417
  "relations": {
368
418
  "affectedAsset": {
369
419
  "targetEntity": "assets",
@@ -374,9 +424,10 @@
374
424
  },
375
425
  "target": {
376
426
  "contentType": "snapshots",
377
- "path": "data.assetIp"
427
+ "path": "data.assetIps"
378
428
  },
379
- "defaultMode": "extendFields",
429
+ "defaultMode": "array",
430
+ "defaultArrayProperty": "associatedAssets",
380
431
  "targetFields": [
381
432
  "ipAddress",
382
433
  "hostName",
@@ -384,6 +435,27 @@
384
435
  "xdrAgentStatus",
385
436
  "potentialImpactLevel"
386
437
  ]
438
+ },
439
+ "vulnerabilityGroup": {
440
+ "targetEntity": "vulnerabilities-groups",
441
+ "type": "manyToOne",
442
+ "source": {
443
+ "contentType": "snapshots",
444
+ "path": "data.vulnerabilityName"
445
+ },
446
+ "target": {
447
+ "contentType": "snapshots",
448
+ "path": "data.name"
449
+ },
450
+ "defaultMode": "array",
451
+ "defaultArrayProperty": "associatedData",
452
+ "targetFields": [
453
+ "name",
454
+ "severity",
455
+ "pluginId",
456
+ "cveId",
457
+ "vulnerability_family"
458
+ ]
387
459
  }
388
460
  }
389
461
  }
@@ -26,8 +26,8 @@
26
26
  "title": "Summary",
27
27
  "fields": [
28
28
  "ipAddress",
29
- "subnetId",
30
29
  "subnetIp",
30
+ "subnetCidr",
31
31
  "hostName",
32
32
  "source",
33
33
  "agentType",
@@ -71,9 +71,8 @@
71
71
  "mode": "record",
72
72
  "limit": 1,
73
73
  "fields": [
74
- "subnetId",
75
- "subnetIp",
76
74
  "cidr",
75
+ "subnetIp",
77
76
  "zone",
78
77
  "vr"
79
78
  ]
@@ -0,0 +1,74 @@
1
+ {
2
+ "id": "subnet-detail-item",
3
+ "entity": "subnets",
4
+ "title": "Subnet Detail",
5
+ "identity": {
6
+ "idField": "recordId"
7
+ },
8
+ "contentTypes": [
9
+ {
10
+ "contentType": "snapshots",
11
+ "required": false,
12
+ "multiMatch": {
13
+ "strategy": "last",
14
+ "effectiveDatePath": "capturedAt",
15
+ "fallbackEffectiveDatePaths": [
16
+ "modifiedAt",
17
+ "createdAt"
18
+ ]
19
+ }
20
+ },
21
+ {
22
+ "contentType": "legacy",
23
+ "required": false,
24
+ "multiMatch": {
25
+ "strategy": "last",
26
+ "effectiveDatePath": "capturedAt",
27
+ "fallbackEffectiveDatePaths": [
28
+ "modifiedAt",
29
+ "createdAt"
30
+ ]
31
+ }
32
+ }
33
+ ],
34
+ "sections": [
35
+ {
36
+ "id": "summary",
37
+ "title": "Summary",
38
+ "fields": [
39
+ "cidr",
40
+ "subnetIp",
41
+ "zone",
42
+ "zoneClass",
43
+ "vr",
44
+ "recordId"
45
+ ]
46
+ },
47
+ {
48
+ "id": "reachability",
49
+ "title": "Reachability & Exposure",
50
+ "fields": [
51
+ "outsideExposureClass",
52
+ "internalReachabilityClass",
53
+ "remoteAccessAdjacent",
54
+ "partnerLinkAdjacent",
55
+ "dmzAdjacent",
56
+ "reachableFromZones",
57
+ "zoneMappingConfidence"
58
+ ]
59
+ },
60
+ {
61
+ "id": "legacy",
62
+ "title": "Legacy (quarantined)",
63
+ "fields": [
64
+ "quarantineLegacy",
65
+ "legacySubnetIp",
66
+ "quarantineReason"
67
+ ]
68
+ }
69
+ ],
70
+ "includeRelations": [],
71
+ "content": {
72
+ "allowed": false
73
+ }
74
+ }
@@ -11,8 +11,8 @@
11
11
  "filters": [],
12
12
  "fields": [
13
13
  "ipAddress",
14
- "subnetId",
15
14
  "subnetIp",
15
+ "subnetCidr",
16
16
  "hostName",
17
17
  "source",
18
18
  "agentType",
@@ -28,8 +28,8 @@
28
28
  "includeRelations": [],
29
29
  "allowedSorts": [
30
30
  "ipAddress",
31
- "subnetId",
32
31
  "subnetIp",
32
+ "subnetCidr",
33
33
  "hostName",
34
34
  "source",
35
35
  "agentType",