Am developing location based job search application .
In this use case, Organization object will have a jobPost object. Jobpost object will have job_description,skill_sets,location..etc.
Organization can post Unlimited jobs hence if i use mongodb jobPost section inside Organization document will be growing.
Query : Is it good to design schema by Embedding jobPost object inside Organization object Or is it good to create two documents one for Organization and other for jobPost and use reference of organisation in jobPost Or Its not suggested to use MongoDb for this UseCase.