mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-07-17 01:32:37 +02:00
change _meta to _jc_meta
This commit is contained in:
@ -35,7 +35,7 @@ Schema:
|
|||||||
"date": string,
|
"date": string,
|
||||||
"epoch": integer, # naive timestamp if date field exists and can be converted
|
"epoch": integer, # naive timestamp if date field exists and can be converted
|
||||||
"epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted
|
"epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -42,7 +42,7 @@ Schema:
|
|||||||
"round_trip_ms_avg": float,
|
"round_trip_ms_avg": float,
|
||||||
"round_trip_ms_max": float,
|
"round_trip_ms_max": float,
|
||||||
"round_trip_ms_stddev": float,
|
"round_trip_ms_stddev": float,
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -53,7 +53,7 @@ Schema:
|
|||||||
"timezone": string,
|
"timezone": string,
|
||||||
"epoch": integer, # naive timestamp if -t flag is used
|
"epoch": integer, # naive timestamp if -t flag is used
|
||||||
"epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ
|
"epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -17,7 +17,7 @@ Schema:
|
|||||||
|
|
||||||
{
|
{
|
||||||
"foo": string,
|
"foo": string,
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -32,7 +32,7 @@ Schema:
|
|||||||
"date": string,
|
"date": string,
|
||||||
"epoch": integer, # naive timestamp if date field exists and can be converted
|
"epoch": integer, # naive timestamp if date field exists and can be converted
|
||||||
"epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted
|
"epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -39,7 +39,7 @@ Schema:
|
|||||||
"round_trip_ms_avg": float,
|
"round_trip_ms_avg": float,
|
||||||
"round_trip_ms_max": float,
|
"round_trip_ms_max": float,
|
||||||
"round_trip_ms_stddev": float,
|
"round_trip_ms_stddev": float,
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
@ -50,7 +50,7 @@ Schema:
|
|||||||
"timezone": string,
|
"timezone": string,
|
||||||
"epoch": integer, # naive timestamp if -t flag is used
|
"epoch": integer, # naive timestamp if -t flag is used
|
||||||
"epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ
|
"epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ
|
||||||
"_meta": # This object only exists if using -q or quiet=True
|
"_jc_meta": # This object only exists if using -qq or ignore_exceptions=True
|
||||||
{
|
{
|
||||||
"success": booean, # true if successfully parsed, false if error
|
"success": booean, # true if successfully parsed, false if error
|
||||||
"error": string, # exists if "success" is false
|
"error": string, # exists if "success" is false
|
||||||
|
2
man/jc.1
2
man/jc.1
@ -1,4 +1,4 @@
|
|||||||
.TH jc 1 2021-09-23 1.17.0 "JSON CLI output utility"
|
.TH jc 1 2021-09-24 1.17.0 "JSON CLI output utility"
|
||||||
.SH NAME
|
.SH NAME
|
||||||
jc \- JSONifies the output of many CLI tools and file-types
|
jc \- JSONifies the output of many CLI tools and file-types
|
||||||
.SH SYNOPSIS
|
.SH SYNOPSIS
|
||||||
|
Reference in New Issue
Block a user