--- tags: - jq --- To access a specific index we can just access it by index nr ``` Command jq '.[0]' Input [{"name":"JSON", "good":true}, {"name":"XML", "good":false}]| Output {"name":"JSON", "good":true}| ```