2015-04-10 18:56:31 +08:00
|
|
|
mstch::object{
|
2015-04-10 02:41:27 +08:00
|
|
|
{"grand_parent_id", std::string{"grand_parent1"}},
|
|
|
|
{"parent_contexts", mstch::array{
|
|
|
|
mstch::object{
|
|
|
|
{"parent_id", std::string{"parent1"}},
|
|
|
|
{"child_contexts", mstch::array{
|
|
|
|
mstch::object{{"child_id", std::string{"parent1-child1"}}},
|
|
|
|
mstch::object{{"child_id", std::string{"parent1-child2"}}}
|
|
|
|
}}
|
|
|
|
},
|
|
|
|
mstch::object{
|
|
|
|
{"parent_id", std::string{"parent2"}},
|
|
|
|
{"child_contexts", mstch::array{
|
|
|
|
mstch::object{{"child_id", std::string{"parent2-child1"}}},
|
|
|
|
mstch::object{{"child_id", std::string{"parent2-child2"}}}
|
|
|
|
}}
|
|
|
|
}
|
|
|
|
}}
|
2015-04-10 18:56:31 +08:00
|
|
|
}
|