jq .hits.hits[3]._source.http-rc result2.0.json
error: rc is not defined
.hits.hits[3]._source.http-rc 1 compile error
So geht es richtig:
jq '.hits.hits[3]._source["http-rc"]' result2.0.json
"200"
Was lernen wir daraus? Bezeichner, Keys, Namen im Camel Case setzen! Das spart viel Zeit, bei deinen Kollegen.
Hier als Ergänzung der Link zu Googles JSON Style Guide: http://google-styleguide.googlecode.com/svn/trunk/jsoncstyleguide.xml#Property_Name_Format
Keine Kommentare:
Kommentar veröffentlichen