1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-17 01:32:37 +02:00

add _jc_meta field info

This commit is contained in:
Kelly Brazil
2021-11-22 09:36:58 -08:00
parent 8568d0d328
commit 077a29fb4e
2 changed files with 14 additions and 2 deletions

View File

@ -26,7 +26,13 @@ Schema:
{
"column_name1": string,
"column_name2": string
"column_name2": string,
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
{
"success": booean, # true if successfully parsed, false if error
"error": string, # exists if "success" is false
"line": string # exists if "success" is false
}
}
Examples:

View File

@ -23,7 +23,13 @@ Schema:
{
"column_name1": string,
"column_name2": string
"column_name2": string,
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
{
"success": booean, # true if successfully parsed, false if error
"error": string, # exists if "success" is false
"line": string # exists if "success" is false
}
}
Examples: