{"info":{"_postman_id":"9a37e4e7-dd47-4c4b-8e90-83ceaab59129","name":"Visualizer Template: Table","description":"A collection of API requests to demonstrate the data visualization feature through a table, created by student developers at Berkeley CodeBase.\n\nFor the full list of visualizer templates we have created, click [here](https://explore.postman.com/templates/4424).\n\n<br/>\n\n![alt text](https://raw.githubusercontent.com/isabelleyzhou/postman_visualizer_templates/master/table/table_nyt.png \"[Table]\")\n\n<br/>\n\nThis collection contains three sample usages for the table visualizer using requests from different API endpoints.\n\n1. Pokemon \n2. Spotify \n3. New York Times\n\nFor detailed explanation on a request, check its description.\n<br/>\n<br/>\n**Data Parsing**\n\nTwo arrays are feed into the template:\n\n1. `headers` : an array of the table headers (strings)\n\t\n\tExample: `[\"header1\", \"header2\", ...]`\n\t\n\t<br/>\n\n2. `results` : an array of arrays, where each array contains a row of information\n\n\tExample: `[[name1, url1, summary1], [name2, url2, summary2], ...]`\n\t\n\t<br/>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json"},"item":[{"name":"Pokemon","event":[{"listen":"test","script":{"id":"b2bf224c-099d-49ad-8439-f7530298cc44","exec":["/* VISUALIZATION TEMPLATE */","var template = `","<script src=\"https://d3js.org/d3.v5.min.js\"></script>","<div id=\"table\"></div>","<style>","    thead {","      background-color: #F5F5F5;","      border","    } ","    th, th:first-child, th:last-child, td, td:first-child, td:last-child {","        padding: 12px 15px;","    }","    th {","        text-transform: uppercase;","    }","    td {","        color: #676769;","    }","    tbody tr:nth-child(odd) {","        background-color: white;","        transition: 0.3s;","    }","    tbody tr:nth-child(even) {","        background-color: #F5F5F5;","        transition: 0.3s;","    }","    tbody tr:hover {","        filter: brightness(90%);","    }","    .api {","        cursor: pointer;","    }","    .api:active {","        color: #202128;","    }","</style>","<script>","    const results = {{{results}}};","    const headers = {{{headers}}};","    var table = d3.select(\"#table\").append(\"table\");","    var header = table.append(\"thead\").append(\"tr\");","    ","    // creates the headers","    header","      .selectAll(\"th\")","        .data(headers)","        .enter()","      .append(\"th\")","        .text(function(d) {return d;});","    var tablebody = table.append(\"tbody\");","    rows = tablebody","      .selectAll(\"tr\")","        .data(results)","        .enter()","      .append(\"tr\");","      ","    // each row has its own array, so here we enter it into the cells","    cells = rows.selectAll(\"td\")","        .data(function(d) {","            return d;","        })","        .enter()","      .append(\"td\")","        .text(function(d) {","            return d;","        })","      .filter(function(d) {return isEndpoint(d)})","        .attr('onclick', function(d) {","            return 'copy(\\\"' + d + '\\\")'","        })","        .attr('class', 'api');","        ","    function copy(text) {","        const el = document.createElement('textarea');","        el.value = text;","        el.style = {display: 'none'};","        document.body.append(el);","        el.select();","        document.execCommand('copy');","        document.body.removeChild(el);","    }","    ","    function isEndpoint(url) {","        const host = '{{host}}'","        return url.toString().indexOf(host) !== -1","    }","    ","</script>`;","","// Host checks for nested API endpoints and makes them copyable-on-click","const host = pm.request.url.host.join(\".\");","const response = pm.response.json();","","/* DATA PARSING */","function parseData(response, host) {","    // Row data passed in as array of arrays (ex. [[name1, api1], [name2, api2], ...])","    const results = response.results.map(obj => Object.values(obj));","","    // Table Headers passed in as array of strings (ex. [\"Name\", \"Link\", ...])","    const headers = Array.from(","      response.results.reduce((keys, cur) => {","        for (const key of Object.keys(cur)) {","          keys.add(key);","        }","        return keys;","      }, new Set())","    );","    return [results, headers]","}","","/* FEED DATA INTO TEMPLATE */","pm.visualizer.set(template, {","  // Template will receive stringified JSON","  results: JSON.stringify(parseData(response)[0]),","  headers: JSON.stringify(parseData(response)[1]),","  host","});"],"type":"text/javascript"}}],"id":"6cf89a96-9789-4a27-87ad-bfb3e822142b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://pokeapi.co/api/v2/pokemon/\n","description":"Table visualization with the Pokemon API. Shows Pokemon names and their respective API endpoint URLs.\n<br/>\n<br/>\n_Sample JSON response_\n```\n{\n    \"count\": 964,\n    \"next\": \"https://pokeapi.co/api/v2/pokemon/?offset=20&limit=20\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"name\": \"bulbasaur\",\n            \"url\": \"https://pokeapi.co/api/v2/pokemon/1/\"\n        },\n        {\n            \"name\": \"ivysaur\",\n            \"url\": \"https://pokeapi.co/api/v2/pokemon/2/\"\n        },\n        {\n            \"name\": \"venusaur\",\n            \"url\": \"https://pokeapi.co/api/v2/pokemon/3/\"\n        },\n        ...\n    ]\n}\n```\n<br/>\n<br/>\n\n_Sample Table_\n\n![Pokemon Table](https://raw.githubusercontent.com/isabelleyzhou/postman_visualizer_templates/master/table/table_pokemon.png \"[Table]\")"},"response":[],"_postman_id":"6cf89a96-9789-4a27-87ad-bfb3e822142b"},{"name":"Spotify Top Tracks","event":[{"listen":"test","script":{"id":"9b46cc80-0c65-439d-8a25-0e1b19f64642","exec":["/* VISUALIZATION TEMPLATE */","var template = `","<script src=\"https://d3js.org/d3.v5.min.js\"></script>","<div id=\"table\"></div>","<style>","    thead {","      background-color: #F5F5F5;","      border","    } ","    th, th:first-child, th:last-child, td, td:first-child, td:last-child {","        padding: 12px 15px;","    }","    th {","        text-transform: uppercase;","    }","    td {","        color: #676769;","    }","    tbody tr:nth-child(odd) {","        background-color: white;","        transition: 0.3s;","    }","    tbody tr:nth-child(even) {","        background-color: #F5F5F5;","        transition: 0.3s;","    }","    tbody tr:hover {","        filter: brightness(90%);","    }","    .api {","        cursor: pointer;","    }","    .api:active {","        color: #202128;","    }","</style>","<script>","    const results = {{{results}}};","    const headers = {{{headers}}};","    var table = d3.select(\"#table\").append(\"table\");","    var header = table.append(\"thead\").append(\"tr\");","    ","    // creates the headers","    header","      .selectAll(\"th\")","        .data(headers)","        .enter()","      .append(\"th\")","        .text(function(d) {return d;});","    var tablebody = table.append(\"tbody\");","    rows = tablebody","      .selectAll(\"tr\")","        .data(results)","        .enter()","      .append(\"tr\");","      ","    // each row has its own array, so here we enter it into the cells","    cells = rows.selectAll(\"td\")","        .data(function(d) {","            return d;","        })","        .enter()","      .append(\"td\")","        .text(function(d) {","            return d;","        })","      .filter(function(d) {return isEndpoint(d)})","        .attr('onclick', function(d) {","            return 'copy(\\\"' + d + '\\\")'","        })","        .attr('class', 'api');","        ","    function copy(text) {","        const el = document.createElement('textarea');","        el.value = text;","        el.style = {display: 'none'};","        document.body.append(el);","        el.select();","        document.execCommand('copy');","        document.body.removeChild(el);","    }","    ","    function isEndpoint(url) {","        const host = '{{host}}'","        return url.toString().indexOf(host) !== -1","    }","    ","</script>`;","","// Host checks for nested API endpoints and makes them copyable-on-click","const host = pm.request.url.host.join(\".\");","const response = pm.response.json();","","/* DATA PARSING */","function parseData(response, host) {","    // Row data passed in as array of arrays (ex. [[name1, api1], [name2, api2], ...])","    const results = response.tracks.map(obj => [obj.name, obj.album.name, obj.album.release_date, obj.track_number, obj.duration_ms, obj.href, obj.is_playable]);","","    // Table Headers passed in as array of strings (ex. [\"Name\", \"Link\", ...])","    const headers = [\"SONG NAME\", \"ALBUM NAME\", \"RELEASE DATE\", \"TRACK NUMBER\", \"DURATION (MS)\", \"SONG URL\", \"IS PLAYABLE\"];","    ","    return [results, headers]","}","","/* FEED DATA INTO TEMPLATE */","pm.visualizer.set(template, {","  // Template will receive stringified JSON","  results: JSON.stringify(parseData(response)[0]),","  headers: JSON.stringify(parseData(response)[1]),","  host","});",""],"type":"text/javascript"}}],"id":"8f5dee5a-9f2c-4c2e-a536-1dc346812969","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"oauth2","oauth2":{"accessToken":"BQDPuQAoS4_9y9w8nrvfY6IYr0poAgGjwdxLEa47fHuAuGrDIznqi1WF2m3KpwkuFCTunBgBXCOubbzK9Ds","tokenType":"Bearer","addTokenTo":"header"}},"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/x-www-form-urlencoded"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":{"raw":"https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE/top-tracks?country=SE","protocol":"https","host":["api","spotify","com"],"path":["v1","artists","43ZHCT0cAZBISjO8DG9PnE","top-tracks"],"query":[{"key":"country","value":"SE"}]},"description":"Table visualization of the top track on the Spotify API.\n\nTo generate an authentication token to access the Spotify API, follow the instructions at [https://developer.spotify.com/documentation/web-api/quick-start/](https://developer.spotify.com/documentation/web-api/quick-start/).\n\n_Sample JSON response_\n```\n{\n  \"tracks\": [\n    {\n      \"album\": {\n        \"album_type\": \"album\",\n        \"artists\": [\n          {\n            \"external_urls\": {\n              \"spotify\": \"https://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE\"\n            },\n            \"href\": \"https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE\",\n            \"id\": \"43ZHCT0cAZBISjO8DG9PnE\",\n            \"name\": \"Elvis Presley\",\n            \"type\": \"artist\",\n            \"uri\": \"spotify:artist:43ZHCT0cAZBISjO8DG9PnE\"\n          }\n        ],\n        \"external_urls\": {\n          \"spotify\": \"https://open.spotify.com/album/7xe8VI48TxUpU1IIo0RfGi\"\n        },\n        \"href\": \"https://api.spotify.com/v1/albums/7xe8VI48TxUpU1IIo0RfGi\",\n        \"id\": \"7xe8VI48TxUpU1IIo0RfGi\",\n        \"images\": [\n          {\n            \"height\": 640,\n            \"url\": \"https://i.scdn.co/image/ab67616d0000b273f96cefb0197694ad440c3314\",\n            \"width\": 640\n          },\n          {\n            \"height\": 300,\n            \"url\": \"https://i.scdn.co/image/ab67616d00001e02f96cefb0197694ad440c3314\",\n            \"width\": 300\n          },\n          {\n            \"height\": 64,\n            \"url\": \"https://i.scdn.co/image/ab67616d00004851f96cefb0197694ad440c3314\",\n            \"width\": 64\n          }\n        ],\n        \"name\": \"Blue Hawaii\",\n        \"release_date\": \"1961-10-20\",\n        \"release_date_precision\": \"day\",\n        \"total_tracks\": 14,\n        \"type\": \"album\",\n        \"uri\": \"spotify:album:7xe8VI48TxUpU1IIo0RfGi\"\n      },\n      \"artists\": [\n        {\n          \"external_urls\": {\n            \"spotify\": \"https://open.spotify.com/artist/43ZHCT0cAZBISjO8DG9PnE\"\n          },\n          \"href\": \"https://api.spotify.com/v1/artists/43ZHCT0cAZBISjO8DG9PnE\",\n          \"id\": \"43ZHCT0cAZBISjO8DG9PnE\",\n          \"name\": \"Elvis Presley\",\n          \"type\": \"artist\",\n          \"uri\": \"spotify:artist:43ZHCT0cAZBISjO8DG9PnE\"\n        }\n      ],\n      \"disc_number\": 1,\n      \"duration_ms\": 182360,\n      \"explicit\": false,\n      \"external_ids\": {\n        \"isrc\": \"USRC16101350\"\n      },\n      \"external_urls\": {\n        \"spotify\": \"https://open.spotify.com/track/44AyOl4qVkzS48vBsbNXaC\"\n      },\n      \"href\": \"https://api.spotify.com/v1/tracks/44AyOl4qVkzS48vBsbNXaC\",\n      \"id\": \"44AyOl4qVkzS48vBsbNXaC\",\n      \"is_local\": false,\n      \"is_playable\": true,\n      \"name\": \"Can't Help Falling in Love\",\n      \"popularity\": 79,\n      \"preview_url\": \"https://p.scdn.co/mp3-preview/994ebd7f49e4e935df56d450b0c12d8bad8bb9f4?cid=ab343db462f8494ea1e3f226eb7bc0cc\",\n      \"track_number\": 5,\n      \"type\": \"track\",\n      \"uri\": \"spotify:track:44AyOl4qVkzS48vBsbNXaC\"\n    },\n    ...\n    ]\n}\n```\n\n_Sample Table_\n\n![Spotify Table](https://raw.githubusercontent.com/isabelleyzhou/postman_visualizer_templates/master/table/table_spotify.png \"[Table]\")"},"response":[],"_postman_id":"8f5dee5a-9f2c-4c2e-a536-1dc346812969"},{"name":"NYT Most Viewed Articles","event":[{"listen":"test","script":{"id":"e2c8e8ba-907b-4c08-bad4-5e84c68efc37","exec":["/* VISUALIZATION TEMPLATE */","var template = `","<script src=\"https://d3js.org/d3.v5.min.js\"></script>","<div id=\"table\"></div>","<style>","    thead {","      background-color: #F5F5F5;","      border","    } ","    th, th:first-child, th:last-child, td, td:first-child, td:last-child {","        padding: 12px 15px;","    }","    th {","        text-transform: uppercase;","    }","    td {","        color: #676769;","    }","    tbody tr:nth-child(odd) {","        background-color: white;","        transition: 0.3s;","    }","    tbody tr:nth-child(even) {","        background-color: #F5F5F5;","        transition: 0.3s;","    }","    tbody tr:hover {","        filter: brightness(90%);","    }","    .api {","        cursor: pointer;","    }","    .api:active {","        color: #202128;","    }","</style>","<script>","    const results = {{{results}}};","    const headers = {{{headers}}};","    var table = d3.select(\"#table\").append(\"table\");","    var header = table.append(\"thead\").append(\"tr\");","    ","    // creates the headers","    header","      .selectAll(\"th\")","        .data(headers)","        .enter()","      .append(\"th\")","        .text(function(d) {return d;});","    var tablebody = table.append(\"tbody\");","    rows = tablebody","      .selectAll(\"tr\")","        .data(results)","        .enter()","      .append(\"tr\");","      ","    // each row has its own array, so here we enter it into the cells","    cells = rows.selectAll(\"td\")","        .data(function(d) {","            return d;","        })","        .enter()","      .append(\"td\")","        .text(function(d) {","            return d;","        })","      .filter(function(d) {return isEndpoint(d)})","        .attr('onclick', function(d) {","            return 'copy(\\\"' + d + '\\\")'","        })","        .attr('class', 'api');","        ","    function copy(text) {","        const el = document.createElement('textarea');","        el.value = text;","        el.style = {display: 'none'};","        document.body.append(el);","        el.select();","        document.execCommand('copy');","        document.body.removeChild(el);","    }","    ","    function isEndpoint(url) {","        const host = '{{host}}'","        return url.toString().indexOf(host) !== -1","    }","    ","</script>`;","","","// Host checks for nested API endpoints and makes them copyable-on-click","const host = pm.request.url.host.join(\".\");","const response = pm.response.json();","","/* DATA PARSING */","function parseData(response, host) {","    // Row data passed in as array of arrays (ex. [[name1, api1], [name2, api2], ...])","    const results = response.results.map(obj => [obj.title, obj.abstract, obj.published_date, obj.url]);","","    // Table Headers passed in as array of strings (ex. [\"Name\", \"Link\", ...])","    const headers = [\"TITLE\", \"ABSTRACT\", \"PUBLISHED DATE\", \"URL\"];","    ","    return [results, headers]","}","","/* FEED DATA INTO TEMPLATE */","pm.visualizer.set(template, {","  // Template will receive stringified JSON","  results: JSON.stringify(parseData(response)[0]),","  headers: JSON.stringify(parseData(response)[1]),","  host","});",""],"type":"text/javascript"}}],"id":"91279645-6f8c-4f52-9c6e-83ef4e37b55e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":{"raw":"https://api.nytimes.com/svc/mostpopular/v2/viewed/7.json?api-key=demo-key","protocol":"https","host":["api","nytimes","com"],"path":["svc","mostpopular","v2","viewed","7.json"],"query":[{"key":"api-key","value":"demo-key"}]},"description":"Table visualization of the top tracks on the most viewed articles on the New York Times. Lists the title, abstract, publication date and url of each article.\n\nThe data here is from the NYT API. Sign up for an API key at [https://developer.nytimes.com/](https://developer.nytimes.com/) to access extensive NYT data!\n\n_Sample Response_\n\n```\n{\n    \"status\": \"OK\",\n    \"copyright\": \"Copyright (c) 2019 The New York Times Company.  All Rights Reserved.\",\n    \"num_results\": 1707,\n    \"results\": [\n        {\n            \"url\": \"https://www.nytimes.com/2019/11/13/movies/tom-hanks-mister-rogers.html\",\n            \"adx_keywords\": \"Hanks, Tom;Actors and Actresses;Movies;A Beautiful Day in the Neighborhood (Movie)\",\n            \"column\": null,\n            \"section\": \"Movies\",\n            \"byline\": \"By TAFFY BRODESSER-AKNER\",\n            \"type\": \"Article\",\n            \"title\": \"This Tom Hanks Story Will Help You Feel Less Bad\",\n            \"abstract\": \"Hanks is playing Mister Rogers in a new movie and is just as nice as you think he is. Please read this article anyway.\",\n            \"published_date\": \"2019-11-13\",\n            \"source\": \"The New York Times\",\n            \"id\": 100000006800704,\n            \"asset_id\": 100000006800704,\n            \"views\": 1,\n            \"des_facet\": [\n                \"MOVIES\"\n            ],\n            \"org_facet\": [\n                \"ACTORS AND ACTRESSES\"\n            ],\n            \"per_facet\": [\n                \"HANKS, TOM\"\n            ],\n            \"geo_facet\": \"\",\n            \"media\": [\n                {\n                    \"type\": \"image\",\n                    \"subtype\": \"photo\",\n                    \"caption\": \"“I recognized in myself a long time ago that I don’t instill fear in anybody,” Hanks said. “Now, that’s different than being nice, you know? I think I have a cache of mystery. But it’s not one of malevolence.”\",\n                    \"copyright\": \"Daniel Dorsa for The New York Times\",\n                    \"approved_for_syndication\": 1,\n                    \"media-metadata\": [\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/17/arts/17tom-hanks2-promo/17tom-hanks2-thumbStandard.jpg\",\n                            \"format\": \"Standard Thumbnail\",\n                            \"height\": 75,\n                            \"width\": 75\n                        },\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/17/arts/17tom-hanks2-promo/17tom-hanks2-promo-mediumThreeByTwo210.jpg\",\n                            \"format\": \"mediumThreeByTwo210\",\n                            \"height\": 140,\n                            \"width\": 210\n                        },\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/17/arts/17tom-hanks2-promo/17tom-hanks2-promo-mediumThreeByTwo440.jpg\",\n                            \"format\": \"mediumThreeByTwo440\",\n                            \"height\": 293,\n                            \"width\": 440\n                        }\n                    ]\n                }\n            ],\n            \"uri\": \"nyt://article/8837752f-6207-55e9-8cc3-b811091e3a86\"\n        },\n        {\n            \"url\": \"https://www.nytimes.com/2019/11/13/us/politics/impeachment-hearings.html\",\n            \"adx_keywords\": \"Trump-Ukraine Whistle-Blower Complaint and Impeachment Inquiry;Trump, Donald J;United States Politics and Government;Presidential Election of 2020;United States International Relations;Impeachment;Democratic Party;Republican Party;House of Representatives;Biden, Joseph R Jr;Kent, George P;Giuliani, Rudolph W;Taylor, William B Jr;Yovanovitch, Marie L;Zelensky, Volodymyr\",\n            \"column\": null,\n            \"section\": \"U.S.\",\n            \"byline\": \"By MICHAEL D. SHEAR\",\n            \"type\": \"Article\",\n            \"title\": \"Key Moments From the First Public Impeachment Hearing\",\n            \"abstract\": \"Witnesses testified that President Trump pressured a foreign power to help him win re-election during historic hearings that previewed an intensely partisan battle.\",\n            \"published_date\": \"2019-11-13\",\n            \"source\": \"The New York Times\",\n            \"id\": 100000006821335,\n            \"asset_id\": 100000006821335,\n            \"views\": 2,\n            \"des_facet\": [\n                \"TRUMP-UKRAINE WHISTLE-BLOWER COMPLAINT AND IMPEACHMENT INQUIRY\",\n                \"UNITED STATES POLITICS AND GOVERNMENT\",\n                \"UNITED STATES INTERNATIONAL RELATIONS\"\n            ],\n            \"org_facet\": [\n                \"PRESIDENTIAL ELECTION OF 2020\",\n                \"IMPEACHMENT\",\n                \"DEMOCRATIC PARTY\",\n                \"REPUBLICAN PARTY\",\n                \"HOUSE OF REPRESENTATIVES\"\n            ],\n            \"per_facet\": [\n                \"TRUMP, DONALD J\",\n                \"BIDEN, JOSEPH R JR\",\n                \"KENT, GEORGE P\",\n                \"GIULIANI, RUDOLPH W\",\n                \"TAYLOR, WILLIAM B JR\",\n                \"YOVANOVITCH, MARIE L\",\n                \"ZELENSKY, VOLODYMYR\"\n            ],\n            \"geo_facet\": \"\",\n            \"media\": [\n                {\n                    \"type\": \"image\",\n                    \"subtype\": \"photo\",\n                    \"caption\": \"William B. Taylor Jr., center right, and George P. Kent, right, preparing to testify before the House Intelligence Committee on Wednesday in the first public hearing of the impeachment inquiry.\",\n                    \"copyright\": \"Erin Schaff/The New York Times\",\n                    \"approved_for_syndication\": 1,\n                    \"media-metadata\": [\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/13/us/politics/13dc-impeach1/13dc-impeach1-thumbStandard.jpg\",\n                            \"format\": \"Standard Thumbnail\",\n                            \"height\": 75,\n                            \"width\": 75\n                        },\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/13/us/politics/13dc-impeach1/merlin_164329176_d5cf6b25-7f5e-4510-a1e8-2722c471fb79-mediumThreeByTwo210.jpg\",\n                            \"format\": \"mediumThreeByTwo210\",\n                            \"height\": 140,\n                            \"width\": 210\n                        },\n                        {\n                            \"url\": \"https://static01.nyt.com/images/2019/11/13/us/politics/13dc-impeach1/merlin_164329176_d5cf6b25-7f5e-4510-a1e8-2722c471fb79-mediumThreeByTwo440.jpg\",\n                            \"format\": \"mediumThreeByTwo440\",\n                            \"height\": 293,\n                            \"width\": 440\n                        }\n                    ]\n                }\n            ],\n            \"uri\": \"nyt://article/c54d6d09-19da-5bc4-a648-d5ee9a72d52c\"\n        },\n        ...\n    ]\n}\n```\n\n_Sample Table_\n![NYT Table](https://raw.githubusercontent.com/isabelleyzhou/postman_visualizer_templates/master/table/table_nyt.png \"[Table]\")"},"response":[],"_postman_id":"91279645-6f8c-4f52-9c6e-83ef4e37b55e"}]}