We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e12434 commit 16ba132Copy full SHA for 16ba132
migrations/elasticsearch_sync.js
@@ -304,7 +304,7 @@ function getRequestBody (indexName) {
304
index: 'not_analyzed'
305
},
306
terms: {
307
- type: 'integer'
+ type: 'string'
308
309
type: {
310
type: 'string',
src/services/ProcessorServiceProject.js
@@ -30,7 +30,7 @@ function createSchema () {
30
id: Joi.number().integer().positive().required(),
31
createdAt: Joi.date().required(),
32
updatedAt: Joi.date().required(),
33
- terms: Joi.array().items(Joi.number().positive()).optional(),
+ terms: Joi.array().items(Joi.string()).optional(),
34
name: Joi.string().required(),
35
description: Joi.string().allow(null).allow('').optional(),
36
type: Joi.string().max(45).required(),
0 commit comments