Selecting specific document from model

I have this schema Schema gist
and I want to fetch only the schedule document from the schema. I read mongoose docs for find mongoose find and tried like
WorkingTimeModel.find({}, 'schedule'); but it still shows other document.
Please guide me, first day using mongo