Below is an IMDB example from the Bitreich annna bot which extracts JSO [13/17]
the IMDB page, parses it and shows a brief summary and the rating of a movie:

	#!/bin/sh
	curl -H 'Accept-Language: en' \
		-H 'User-Agent: some very long user-agent string' \
		-s "${imdburi}" \
	| extractjson | sed 1q | jaq '
	$1 == ".@type" { type = $3; }
	$1 == ".description" { description = $3; }
	$1 == ".name" { name = $3; uriname = gensub(" ", "+", "g", $3); }
	$1 == ".aggregateRating.ratingValue" { rating = $3; }
	$1 == ".datePublished" { published = substr($3, 1, 4); }
	END {
	        printf("%s (%s) from %s, rating: %s: %s\n",
	                uriname, name, type, published, rating, description);
	}'

