29. Validando e Filtrando o JSON escrito

Validando:

3$ jq . < src/events.json

Filtrando (exemplos):

3$ jq .[1] < src/events.json
3$ jq .[1].id < src/events.json
3$ jq -r .[1].id < src/events.json