CSV is an old & very popular format for storing tabular data. It has been used in the desktop as well as mainframe. It is a simple & compact format that works really well for tabular data and so is still in use today.
JavaScript Object Notation (JSON) pronounced as "Jason" is the de facto standard for data interchange on the web these days. It is a simple format that is easier to comprehend than XML. It also has less size than XML because of no closing tags. Interacting with JSON from JavaScript is extremely seamless. JSON format was first specified by Douglas Crockford in the early 2000s
The name of the output JSON property that contains the starting time of the subtitle text.
[
{
"Start Time": 17.62,
"End Time": 23.21,
"Label": "Baby, last night was hands down"
}
]
The name of the output JSON property that contains the ending time of the subtitle text.
[
{
"Start Time": 17.62,
"End Time": 23.21,
"Label": "Baby, last night was hands down"
}
]
The name of the output JSON property that contains the subtitle text.
[
{
"Start Time": 17.62,
"End Time": 23.21,
"Label": "Baby, last night was hands down"
}
]
This setting governs whether or not the output is indented. The indented output is easier for humans to comprehend. On the other hand, a non-indented output is compact & smaller in size (best for transmission). So, JSON is often minified which compacts & compresses the output by removing non-essential whitespace.
{
"name": "John Doe",
"age": 69
}
{"name":"John Doe","age":69}
This decides how the property names are transformed in the output JSON. The available strategies are:-
[
{
"name": "Robin Hood",
"departmentName": "Sales",
"salary": 200
}
]
[
{
"name": "Robin Hood",
"departmentname": "Sales",
"salary": 200
}
]
[
{
"NAME": "Robin Hood",
"DEPARTMENTNAME": "Sales",
"SALARY": 200
}
]
[
{
"name": "Robin Hood",
"department_name": "Sales",
"salary": 200
}
]
[
{
"Name": "Robin Hood",
"DepartmentName": "Sales",
"Salary": 200
}
]
Comments 0