JSONFileFormat
Examples
Python
file_format = JSONFileFormat(
name="some_json_file_format",
owner="SYSADMIN",
compression="AUTO",
date_format="AUTO",
time_format="AUTO",
timestamp_format="AUTO",
binary_format=BinaryFormat.HEX,
trim_space=False,
null_if=["NULL"],
file_extension="json",
enable_octal=False,
allow_duplicate=False,
strip_outer_array=False,
strip_null_values=False,
replace_invalid_characters=False,
ignore_utf8_errors=False,
skip_byte_order_mark=True,
comment="This is a JSON file format."
)YAML
Fields
Last updated