@epaulet-society Yes, XML is valid but but in Ms Word documents tables must be separated by a paragraph and the last node of the body must be a paragraph. This is required to make is possible for editor to move cursor at any position. If there is no paragraph between tables you cannot insert content between these tables in MS Word so literally these tables are considered a a single table.
When you open your document in MS Word it considers the tables as a single table:

Click on the cross at top left corner and whole table will be selected. Also after saving the document in MS Word in the XML the tables also will be represented as a a single table.
Here is input:
<w:body>
<w:tbl>
..........
</w:tbl>
<w:tbl>
..........
</w:tbl>
<w:p/>
..........
</w:body>
and here is output (after saving document using MS Word): ms.docx (12.6 KB)
<w:body>
<w:tbl>
..........
</w:tbl>
<w:p w14:paraId="78CF3DB3" w14:textId="77777777" w:rsidR="00232FE6" w:rsidRDefault="00232FE6"/>
..........
</w:body>