UNPKG

n8n-nodes-tenable-community

Version:

n8n node for the Tenable One platform

22 lines (21 loc) 622 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.searchFindingsSchema = void 0; exports.searchFindingsSchema = { type: 'object', properties: { findings: { type: 'array', items: { type: 'object', properties: { plugin_id: { type: 'number' }, plugin_name: { type: 'string' }, severity: { type: 'number' }, }, required: ['plugin_id', 'plugin_name', 'severity'], }, }, }, required: ['findings'], };