webtrack-server / schema / headers.js
headers.js
Raw
module.exports = {

    headers: {
        type: 'object',
        required: ['authorization'],
        properties: {
            authorization: {
                type: 'string'
            }
        }
      }

}