|
|
|
|
|
|
|
const Joi = require('joi');
|
|
|
|
|
|
|
|
// Schema Configuration
|
|
|
|
// required:
|
|
|
|
// * api.version (string)
|
|
|
|
// * api.indexName (string)
|
|
|
|
// * api.host (string)
|
|
|
|
// * esclient (object - positive integer requestTimeout)
|
|
|
|
//
|
|
|
|
// optional:
|
|
|
|
// * api.accessLog (string)
|
|
|
|
// * api.relativeScores (boolean)
|
|
|
|
// * api.localization (flipNumberAndStreetCountries is array of 3 character strings)
|
|
|
|
module.exports = Joi.object().keys({
|
|
|
|
api: Joi.object().keys({
|
|
|
|
version: Joi.string(),
|
|
|
|
indexName: Joi.string(),
|
|
|
|
host: Joi.string(),
|
|
|
|
accessLog: Joi.string(),
|
|
|
|
relativeScores: Joi.boolean(),
|
|
|
|
requestRetries: Joi.number().integer().min(0),
|
|
|
|
localization: Joi.object().keys({
|
|
|
|
flipNumberAndStreetCountries: Joi.array().items(Joi.string().regex(/^[A-Z]{3}$/))
|
|
|
|
}).unknown(false),
|
|
|
|
pipService: Joi.any(), // got moved to services, ignored for now
|
|
|
|
placeholderService: Joi.any().forbidden(), // got moved to services
|
|
|
|
services: Joi.object().keys({
|
|
|
|
pip: Joi.object().keys({
|
|
|
|
url: Joi.string().uri({ scheme: /https?/ }),
|
|
|
|
timeout: Joi.number().integer().optional().default(250).min(0),
|
|
|
|
retries: Joi.number().integer().optional().default(3).min(0),
|
|
|
|
}).unknown(false).requiredKeys('url'),
|
|
|
|
placeholder: Joi.object().keys({
|
|
|
|
url: Joi.string().uri({ scheme: /https?/ }),
|
|
|
|
timeout: Joi.number().integer().optional().default(250).min(0),
|
|
|
|
retries: Joi.number().integer().optional().default(3).min(0),
|
|
|
|
}).unknown(false).requiredKeys('url'),
|
|
|
|
interpolation: Joi.object().keys({
|
|
|
|
url: Joi.string().uri({ scheme: /https?/ }),
|
|
|
|
timeout: Joi.number().integer().optional().default(250).min(0),
|
|
|
|
retries: Joi.number().integer().optional().default(3).min(0),
|
|
|
|
}).unknown(false).requiredKeys('url'),
|
|
|
|
libpostal: Joi.object().keys({
|
|
|
|
url: Joi.string().uri({ scheme: /https?/ }),
|
|
|
|
timeout: Joi.number().integer().optional().default(250).min(0),
|
|
|
|
retries: Joi.number().integer().optional().default(3).min(0),
|
|
|
|
}).unknown(false).requiredKeys('url')
|
|
|
|
}).unknown(false).default({}), // default api.services to an empty object
|
|
|
|
defaultParameters: Joi.object().keys({
|
|
|
|
'focus.point.lat': Joi.number(),
|
|
|
|
'focus.point.lon': Joi.number(),
|
|
|
|
}).unknown(true).default({})
|
|
|
|
|
|
|
|
}).requiredKeys('version', 'indexName', 'host').unknown(true),
|
|
|
|
esclient: Joi.object().keys({
|
|
|
|
requestTimeout: Joi.number().integer().min(0)
|
|
|
|
}).unknown(true)
|
|
|
|
}).requiredKeys('api', 'esclient').unknown(true);
|