zhengruifeng commented on code in PR #47840:
URL: https://github.com/apache/spark/pull/47840#discussion_r1728097591


##########
python/pyspark/pandas/namespace.py:
##########
@@ -3687,6 +3689,80 @@ def read_orc(
     return psdf
 
 
+def json_normalize(
+    data: Union[Dict, List[Dict]],
+    sep: str = ".",
+) -> DataFrame:
+    """
+    Normalize semi-structured JSON data into a flat table.
+

Review Comment:
   nit
   ```suggestion
       .. versionadded:: 4.0.0
   
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to