...
- It is easier to work with JSON in which each row of the file is a record. When a record spans multiple rows, additional steps are required in the application to render it into tabular format. The example uses multi-row JSON records.
Output:
Info | |
---|---|
NOTE: JSON-formatted files that are generated by
|
can generate a JSON file as an output for your job. Characteristics of generated JSON files:D s product - Newline-delimited: The end of each record is the
\n
character. If your downstream system is expecting comma-delineated records except for the last one, additional work is required outside of the application. - Non-nested: Each record in the generated file is flat.
- For multi-level JSON hierarchies, you can nest columns together and leave the top level as a set of columns in the data grid. However, on output, the second and lower hierarchies appear as quoted string values in the output. Additional cleanup is required outside of the application.
- Newline-delimited: The end of each record is the
...