export default [ { root: { schemaId: "div", data: { foo: "foobar", bar: true, Slot: [ { id: "span", }, ], }, }, span: { parent: { id: "root", dataLocation: "Slot", }, schemaId: "span", data: { Slot: [ { id: "text", }, ], }, }, text: { parent: { id: "span", dataLocation: "Slot", }, schemaId: "text", data: "FooBar", }, }, "root", ];