n8n-nodes-tenable-community
Version:
n8n node for the Tenable One platform
21 lines (20 loc) • 580 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.listIndicatorsOfExposureSchema = void 0;
exports.listIndicatorsOfExposureSchema = {
type: 'object',
properties: {
indicators_of_exposure: {
type: 'array',
items: {
type: 'object',
properties: {
id: { type: 'string' },
name: { type: 'string' },
},
required: ['id', 'name'],
},
},
},
required: ['indicators_of_exposure'],
};