const Schwifty = require('@hapipal/schwifty') const Joi = require('joi') module.exports = class AspectLabel extends Schwifty.Model { static get tableName() { return 'aspect_labels' } static get joiSchema() { return Joi.object({ aspect_id: Joi.number(), a: Joi.string(), b: Joi.string() }) } }