Skip to content

Commit

Permalink
[ML] DF Analytics creation: update schema definition for create route (
Browse files Browse the repository at this point in the history
…elastic#56979)

* fix df analytics create route schema definition

* add all optional params to schema definiton
  • Loading branch information
alvarezmelissa87 authored and Maja Grubic committed Feb 10, 2020
1 parent 0219eda commit 7e097a4
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,16 @@ export const dataAnalyticsJobConfigSchema = {
results_field: schema.maybe(schema.string()),
}),
source: schema.object({
index: schema.string(),
index: schema.oneOf([schema.string(), schema.arrayOf(schema.string())]),
query: schema.maybe(schema.any()),
_source: schema.maybe(
schema.object({
includes: schema.maybe(schema.arrayOf(schema.maybe(schema.string()))),
excludes: schema.maybe(schema.arrayOf(schema.maybe(schema.string()))),
})
),
}),
allow_lazy_start: schema.maybe(schema.boolean()),
analysis: schema.any(),
analyzed_fields: schema.any(),
model_memory_limit: schema.string(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function dataFrameAnalyticsRoutes({ xpackMainPlugin, router }: RouteIniti
params: schema.object({
analyticsId: schema.string(),
}),
body: schema.object({ ...dataAnalyticsJobConfigSchema }),
body: schema.object(dataAnalyticsJobConfigSchema),
},
},
licensePreRoutingFactory(xpackMainPlugin, async (context, request, response) => {
Expand Down

0 comments on commit 7e097a4

Please sign in to comment.