I have a json file that is formatted as follows (json_test.json):
{"Col1;Col2;Col3;Col4;Col5":{"0":"value;value;value;value;value","1":"value;value;value;value;value","2":"value;value;value;value;value","N":"value;value;value;value;value"}}
To me, this looks like the orient "columns" that pandas specifies in their documentation: 'columns' : dict like {column -> {index -> value}}
However, running my json through pd.read_json only returns 1 column with 4 rows.
I.e.:
df2 = pd.read_json("data\json_test.json")
df2.info()
<class 'pandas.core.frame.DataFrame'>
Index: 4 entries, 0 to N
Data columns (total 1 columns):
# Column Non-Null Count Dtype
--- ------ -------------- -----
0 Col1;Col2;Col3;Col4;Col5 4 non-null object
dtypes: object(1)
memory usage: 64.0+ bytes
Can anyone help me understand what is going on here, and how to properly read in this json file? I am not really familiar with json and most examples I've seen online are for very standardized json formats.
Thank you!

;as separator."Col1;Col2;Col3;Col4;Col5"represents five different columns, since everything is inside double quotes, they'll be treated as a single value for JSON.