@kyanny's blog

My thoughts, my life. Views/opinions are my own.

jq: JSON から特定のキーの構造を抽出する

直接やる構文はないので get しつつ同じキー名で JSON を作る。

jq '{key: .key}'

https://openlibrary.org/works/OL45883W.json を例にすると、

{
  "description": "The main character of Fantastic Mr. Fox is an extremely clever anthropomorphized fox named Mr. Fox. He lives with his wife and four little foxes. In order to feed his family, he steals food from the cruel, brutish farmers named Boggis, Bunce, and Bean every night.\r\n\r\nFinally tired of being constantly outwitted by Mr. Fox, the farmers attempt to capture and kill him. The foxes escape in time by burrowing deep into the ground. The farmers decide to wait outside the hole for the foxes to emerge. Unable to leave the hole and steal food, Mr. Fox and his family begin to starve. Mr. Fox devises a plan to steal food from the farmers by tunneling into the ground and borrowing into the farmer's houses.\r\n\r\nAided by a friendly Badger, the animals bring the stolen food back and Mrs. Fox prepares a great celebratory banquet attended by the other starving animals and their families. Mr. Fox invites all the animals to live with him underground and says that he will provide food for them daily thanks to his underground passages. All the animals live happily and safely, while the farmers remain waiting outside in vain for Mr. Fox to show up.",
  "title": "Fantastic Mr. Fox",
  "covers": [
    6498519,
    8904777,
    108274,
    233884,
    1119236,
    -1,
    10222599,
    10482837,
    3216657
  ],
  "subject_places": [
    "English countryside"
  ],
  "subjects": [
    "Animals",
    "Hunger",
    "Open Library Staff Picks",
    "Juvenile fiction",
    "Children's stories, English",
    "Foxes",
    "Fiction",
    "Zorros",
    "Ficción juvenil",
    "Tunnels",
    "Interviews",
    "Farmers",
    "Children's stories",
    "Rats",
    "Welsh Authors",
    "English Authors",
    "Thieves",
    "Tricksters",
    "Badgers",
    "Children's fiction",
    "Foxes, fiction",
    "Underground"
  ],
  "subject_people": [
    "Bean",
    "Boggis",
    "Bunce",
    "Mr Fox"
  ],
  "key": "/works/OL45883W",
  "authors": [
    {
      "author": {
        "key": "/authors/OL34184A"
      },
      "type": {
        "key": "/type/author_role"
      }
    }
  ],
  "subject_times": [
    "20th Century"
  ],
  "type": {
    "key": "/type/work"
  },
  "latest_revision": 43,
  "revision": 43,
  "created": {
    "type": "/type/datetime",
    "value": "2009-10-15T11:34:21.437031"
  },
  "last_modified": {
    "type": "/type/datetime",
    "value": "2021-02-05T12:52:33.907834"
  }
}

{
  "authors": [
    {
      "author": {
        "key": "/authors/OL34184A"
      },
      "type": {
        "key": "/type/author_role"
      }
    }
  ]
}

に変形したい場合は

curl https://openlibrary.org/works/OL45883W.json | jq '{authors: .authors}'

とする。