Usually, when dealing with a ParseObject from MongoDB, its a simple, well, JSON object like so. ``` { "_id": "g5Sf4GN86S", "name": "kevin" } ``` What if I kept the _id and replaced everything else with the following JSON ``` [ { "name": "recipe", "serves": "4", "prep_time": "10 mins", "cook_time": "10 mins", "ingredients": [ "item 1", "item 2", "item 3" ], "cooking_instructions": [ "Step 1", "Step 2" ], "nutrition_facts": [ { "fact 1", "fact 2" } ], "credit": "google.com", "image": "http://www.website.com/image.jpg" } ] ``` Can something like this be parsed with ParseServer?