const Schwifty = require('@hapipal/schwifty') const responseSchema = require('../schemas/responses') module.exports = class Response extends Schwifty.Model { static get tableName() { return 'responses' } static get joiSchema() { return responseSchema.single } }