Skip to content

Commit

Permalink
fix df analytics create route schema definition
Browse files Browse the repository at this point in the history
  • Loading branch information
alvarezmelissa87 committed Feb 6, 2020
1 parent 10f48db commit 9d284b1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ 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()),
}),
analysis: schema.any(),
analyzed_fields: schema.any(),
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 9d284b1

Please sign in to comment.