Similar to XPATH, JSONPath is a simple way to extract parts of a given document. The example below uses Github Issues JSON and due to the length of JSON it won't be included in the example. Get all issues ids@Test public void all_issues_ids () { List<String> issueIds = JsonPath.read(githubIssues, "$.[*].id"); logger.info(issueIds); assertEquals(8, issueIds.size()); }First issue title@Test public v