Category: JSON
-
the Bitwarden command-line tool
https://bitwarden.com/help/article/cli/ https://stedolan.github.io/jq/ – “bw” (the CLI utility) works well with jq
-
extracting fields from a Jira “issue” (like a very nice and useful description)? how to get the markup source of the issue description?
No, Jira does not let you read (“per se“) the markup source of an “issue” – that’s why I went this way in the first place 🙄 http://Jochen.Hayek.name/wp/blog-en/2015/12/02/jira-rest-api/ – using Jira’s REST API: a “…/rest/api/2/issue/…” URL http://Jochen.Hayek.name/wp/blog-en/2015/12/22/jq-json-processor/ – how to use jq for json-tidying jq . X.json > X.pretty.json http://Jochen.Hayek.name/wp/blog-en/2018/01/17/json-extract-structure/ – extract the structure tree of your…
-
another nice JSON file: how to extract its structure using jq
https://github.com/stedolan/jq/issues/243#issuecomment-45460474 $ jq -c ‘path(..)|[.[]|tostring]|join(“/”)|”.”+.’ The idea is to use one of the output lines in order to access the respective field on your next jq command line: $ jq “.fields.description” X.json
-
file extension NSX – Synology DiskStation Manager exported note
http://www.file-extensions.org/nsx-file-extension-synology-diskstation-manager-exported-note actually a .zip file containing JSON files – I format them nicely through jq: https://stedolan.github.io/jq/ the JSON comes with attributes ctime and mtime in seconds, “that have elapsed since 00:00:00 Coordinated Universal Time (UTC), Thursday, 1 January 1970, not counting leap seconds“: https://en.wikipedia.org/wiki/Unix_time – AKA POSIX time or Epoch time as the JSON syntax does…
-
no comments in JSON – but …
http://JSON.org But why don’t you add a new name/value pair, the “value” being the comment, the “name” being a name for that comment, make it rather short, if that fits in your context.
-
Xidel – yet another HTML/XML/JSON data extraction tool
Xidel is a command line tool to download html/xml pages and extract data from them using CSS 3 selectors, XPath 3 expressions or pattern-matching templates. http://www.videlibri.de/xidel.html https://en.wikipedia.org/wiki/XQuery – I am “watching” the changes on this article, and somebody just added Xidel, that’s how I came across Xidel Cygwin’s and Fink’s repository do not have Xidel, but Xidel’s…
-
O’Reilly Media book: JSON at Work – Practical Data Integration for the Web
http://shop.oreilly.com/product/0636920028482.do https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/#toc https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ch05.html#json_schema https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ch06.html#json_search : …, jq, jqPlay, jq-tutorial, … https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ch07.html#json_transform https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ch09.html#json_and_mongodb https://www.safaribooksonline.com/library/view/json-at-work/9781491982389/ch10.html#json_messaging_with_kafka More than just a simple replacement for XML when you make an AJAX call, JSON is becoming the backbone of any serious data interchange over the Internet. This practical book shows web architects and developers how to harness the energy and…
-
manipulating JSON data with Perl-one-liners
http://motemen.hatenablog.com/entry/2013/12/04/ARGV::JSON_-_easy_JSON_handling_in_one-liners_%23perl https://github.com/motemen/perl5-ARGV-JSON