ashleygwilliams/ashleygwilliams.github.io

View on GitHub
app/modules/projects/schema.js

Summary

Maintainability
A
2 hrs
Test Coverage
module.exports = {
  body: {
    properties: {
      id: {
        type: 'integer'
      },
      user_id: {
        type: 'integer'
      },
      name: {
        type: 'string'
      },
      role: {
        type: 'string'
      },
      description: {
        type: 'string'
      },
      url: {
        type: 'string'
      }
    }
  }
};