/**
 * An object for swagger documentation configuration
 */
export default {
  definitions: {
    email: {
      type: 'object',
      properties: {
        email: {
          type: 'string'
        }
      }
    }
  }
}
