@Override
    public Future<Boolean> insert(Schedule data) {
        //inserting the schedule in the Schedule database
        DocumentReference docRef = db.collection(SCHEDULECOLLECTION.toString()).document();
        Task<Void> task = docRef.set(data.getAllAttributes());