UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

23 lines (21 loc) 1.09 kB
/** * MISP Node - Version 1 - Zod Schema * Discriminator: resource=attribute, operation=update * * Use .parse() for strict validation or .safeParse() for error handling. * * Schema helpers (z, expressionSchema, etc.) are passed as parameters * by the schema-validator, not imported from external files. * * @generated - CommonJS JavaScript for runtime loading */ module.exports = function getSchema({ parameters, z, expressionSchema, stringOrExpression, numberOrExpression, booleanOrExpression, resourceLocatorValueSchema, resourceMapperValueSchema, filterValueSchema, assignmentCollectionValueSchema, iDataObjectSchema }) { return z.object({ parameters: z.object({ resource: z.literal('attribute').default('attribute'), operation: z.literal('update'), attributeId: stringOrExpression.optional(), updateFields: z.object({ distribution: z.union([z.literal(3), z.literal(2), z.literal(5), z.literal(4), z.literal(1), z.literal(0), expressionSchema]).optional(), sharing_group_id: stringOrExpression.optional() }).optional(), }).optional(), }); };