|< < 40 > >|

MongoDB Data Model

Dynamic Schema

Problems with dynamic schemas

Suppose we change how names are represented, from this:
{ ... name: "Ignatius J. Reilly" ... }

to this:
{ ... name: { surname: "Reilly", given: ["Ignatius", "J."] } ... }

|< < 40 > >|