Skip to content

Instantly share code, notes, and snippets.

["1"]
["2"]
["3"]
["4"]
["5","a"]
["\"6\""]
["\"7\"","a"]
["8","b","c"]
["9","","c"]
["10","","c"]
@pkoppstein
pkoppstein / schemaV0.0.3.jq
Created January 18, 2022 07:19
schema.jq version 0.0.3
module {
"name": "schema",
"description": "JSON Schema Inference",
"version": "0.0.3",
"homepage": "https://gist.github.com/pkoppstein/a5abb4ebef3b0f72a6ed",
"license": "MIT",
"author": "pkoppstein at gmail dot com"
};
# NEWS:
@pkoppstein
pkoppstein / xml.jq
Last active January 19, 2023 00:48
module {
"name": "xml",
"description": "PEG parser for XML",
"version": "0.0.1",
"homepage": "https://gist.github.com/pkoppstein/addaedbb10b6fc97ff2b6b00123700ad",
"license": "MIT",
"author": "pkoppstein at gmail dot com"
};
# This is a standalone jq module that has been tested with jq, gojq, and fq.
# Version 2023.08.25
# This jq module defines filters for assertion checking.
# The module can be included or imported in the usual way, e.g.
# by including a line similar to the following at the top of your program file:
# include "assert" {search: "."};
# By changing "keys_unsorted" to "keys", this module can also be used with gojq,
# the Go implementation of jq.