Ref: https://github.com/pandas-dev/pandas/issues/62072

pandas has a vendored copy of ujson that has not been kept up to date. ujson itself recommends users should migrate to orjson, it seems to me pandas should as well. While this would mean users need another dependency to utilize JSON, it seems better from a maintenance perspective.

Comment From: mroeschke

Could we just use pyarrow's json parser?

Comment From: jbrockmendel

Is the idea to vendor orjson and adapt it like we have ujson? Or can we just use orjson directly?