Skip to content

Commit

Permalink
fix json output orderings
Browse files Browse the repository at this point in the history
  • Loading branch information
DNRRomero committed Nov 21, 2023
1 parent 5e8fdc9 commit 87f2a07
Showing 1 changed file with 27 additions and 14 deletions.
41 changes: 27 additions & 14 deletions zerofox.json
Original file line number Diff line number Diff line change
Expand Up @@ -210,15 +210,18 @@
},
{
"data_path": "action_result.message",
"data_type": "string"
"data_type": "string",
"column_order": 3
},
{
"data_path": "summary.total_objects",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 4
},
{
"data_path": "summary.total_objects_successful",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 5
}
],
"render": {
Expand Down Expand Up @@ -294,19 +297,22 @@
"data_path": "action_result.status",
"data_type": "string",
"column_name": "status",
"column_order": 2
"column_order": 3
},
{
"data_path": "action_result.message",
"data_type": "string"
"data_type": "string",
"column_order": 4
},
{
"data_path": "summary.total_objects",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 5
},
{
"data_path": "summary.total_objects_successful",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 6
}
],
"render": {
Expand Down Expand Up @@ -402,15 +408,18 @@
},
{
"data_path": "action_result.message",
"data_type": "string"
"data_type": "string",
"column_order": 3
},
{
"data_path": "summary.total_objects",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 4
},
{
"data_path": "summary.total_objects_successful",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 5
}
],
"render": {
Expand Down Expand Up @@ -484,19 +493,23 @@
},
{
"data_path": "action_result.status",
"data_type": "string"
"data_type": "string",
"column_order": 7
},
{
"data_path": "action_result.message",
"data_type": "string"
"data_type": "string",
"column_order": 8
},
{
"data_path": "summary.total_objects",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 9
},
{
"data_path": "summary.total_objects_successful",
"data_type": "numeric"
"data_type": "numeric",
"column_order": 10
}
],
"render": {
Expand Down

0 comments on commit 87f2a07

Please sign in to comment.