Use .set() instead of .push()
this.refApp.child(this.uid).child(job.id).set(this.application);
However, if you want to generate an identifier using .push() , you can return one level in the data structure:
this.refApp.child(this.uid).push(this.application);
source share