Say we are representing school course data. The relevant part of the example encompasses three real-world concepts: school, campus, and semester. A school can have many campuses, and there is a finite number of semesters.
In the real world, if we wanted to specify a campus + semester combination, it would be elementary. But the data model needs to be represented using a tree structure, like
Foo University:
Main campus
- Fall 2010
- Spring 2011
Bar College:
- North campus
- Spring 2011
- South campus
- Spring 2011
This pattern could continue. For instance, departments could exist in the real world as children of the school, but in the model they would be represented as child nodes of the semester, because what's important about them can change from semester to semester. Basically, we represent the permutations of a set of choices as a tree.
What is the name for this data model pattern?