Create a customer using raw JSON body
Creates a customer by supplying the entire JSON body in the special _rawdoc_ column. This is useful for setting attributes or nested structures that are not mapped to specific input columns.
INSERT INTO Customers(_rawdoc_)
VALUES('{"customer":{"first_name":"John","last_name":"Doe","email":"a.doe@gmail.com","phone":"7705553111"}}')