diff --git a/x-pack/plugins/transform/common/api_schemas/transforms.ts b/x-pack/plugins/transform/common/api_schemas/transforms.ts index 59165199fe7d3..55ea326069f0d 100644 --- a/x-pack/plugins/transform/common/api_schemas/transforms.ts +++ b/x-pack/plugins/transform/common/api_schemas/transforms.ts @@ -98,12 +98,6 @@ export const _metaSchema = schema.object( {}, { unknowns: 'allow', - validate: (v: object) => { - // Values should all be objects - if (Object.values(v).some((arg) => arg === undefined || arg === null)) { - return 'Invalid _meta request'; - } - }, } );