Can I define this JSON file structure as a mongoose schema? Mongoose lacks an object type, and I'm unsure how to proceed with it.
{
"Moutainbike": {
"Cross": {
"size": [
"395 mm",
"440 mm",
"480 mm",
"535 mm"
],
"color": [
"Himmelblau",
"Grasgrün",
"Stahlgrau",
"Weinrot"
],
"brake": [
"Shimano Deore BRM6000",
"Shimano Deore BRM7000",
"Shimano RX810 1x11"
]
}
}
}