const Schwifty = require('@hapipal/schwifty') const Joi = require('joi') const surveyResponseSchema = require('../schemas/responses') module.exports = class ResponseKey extends Schwifty.Model { static get tableName() { return 'response_keys' } static get joiSchema() { return surveyResponseSchema.key } }