Database Reference
In-Depth Information
Previously we identified the person or group responsible for validating the model. Now we
need to show them the model and make sure it is correct. Often at this stage after reviewing
the model, we go back to Step 1 and make some changes and then show the model again.
This iterative cycle continues until the model is agreed upon by the validator and deemed
correct so that we can move on to MongoDB implementation.
STEP 5: IMPLEMENT
We're done with our modeling, and now we can start creating documents within each of
these collections!
Here is a sample document within each collection:
Organization:
{ organizationDUNSNumber : “123456789”,
Industry : [
{ SICCode : “3829”,
industryName : “Restaurant” },
{ SICCode : “1289”,
industryName : “Retail” }
],
organizationName : “The Publyk House”,
organizationFirstSurveyDate : ISODate(“2014-04-05”)
}
Survey:
{ surveyCode : “M329-A”,
surveyEffectiveDate : ISODate(“2014-04-29”),
surveyTypeCode : “A”,
surveyCategoryCode : “CF”,
surveyCategoryName : “Consumer Feedback”,
surveySectionName : “Dining Experience”,
surveySectionDescription : “This section contains those questions pertaining to the quality of the
food and overall dining experience.”
}
SurveyCreation:
{ organizationDUNSNumber : “123456789”,
surveyCode : “M329-A”,
Search WWH ::




Custom Search