{"id":16469,"date":"2022-10-18T13:04:44","date_gmt":"2022-10-18T07:34:44","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/"},"modified":"2022-10-18T13:04:44","modified_gmt":"2022-10-18T07:34:44","slug":"solved-how-to-turn-json-string-into-table","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/","title":{"rendered":"[Solved] How to turn JSON string into table?"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-11240277\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"11240277\" data-parentid=\"11239304\" data-score=\"1\" data-position-on-page=\"1\" data-highest-scored=\"1\" data-question-has-accepted-highest-score=\"1\" itemprop=\"acceptedAnswer\" itemscope itemtype=\"https:\/\/schema.org\/Answer\">\n<div class=\"post-layout\">\n<div class=\"votecell post-layout--left\"><\/div>\n<div class=\"answercell post-layout--right\">\n<div class=\"s-prose js-post-body\" itemprop=\"text\">\n<p>easy way could be<\/p>\n<ul>\n<li>parse JSON string using <a rel=\"nofollow noopener\" target=\"_blank\" href=\"http:\/\/code.google.com\/p\/google-gson\/\">GSON<\/a><\/li>\n<\/ul>\n<p>like this:<\/p>\n<pre><code>    String json = \"{\\\"GetReportResult\\\":\" + \n\"  [\" + \n\"   {\\\"bulan\\\":\\\"4\\\",\\\"total\\\":\\\"2448\\\",\\\"type\\\":\\\"CHEESE1K\\\"}, \" + \n\"   {\\\"bulan\\\":\\\"4\\\",\\\"total\\\":\\\"572476\\\",\\\"type\\\":\\\"ESL\\\"},\" + \n\"   {\\\"bulan\\\":\\\"4\\\",\\\"total\\\":\\\"46008\\\",\\\"type\\\":\\\"ESL500ML\\\"},\" + \n\"   {\\\"bulan\\\":\\\"5\\\",\\\"total\\\":\\\"5703\\\",\\\"type\\\":\\\"CHEESE1K\\\"},\" + \n\"   {\\\"bulan\\\":\\\"5\\\",\\\"total\\\":\\\"648663\\\",\\\"type\\\":\\\"ESL\\\"},\" + \n\"   {\\\"bulan\\\":\\\"5\\\",\\\"total\\\":\\\"51958\\\",\\\"type\\\":\\\"WHP\\\"},\" + \n\"   {\\\"bulan\\\":\\\"6\\\",\\\"total\\\":\\\"6190\\\",\\\"type\\\":\\\"CHEESE1K\\\"},\" + \n\"   {\\\"bulan\\\":\\\"6\\\",\\\"total\\\":\\\"443335\\\",\\\"type\\\":\\\"ESL\\\"},\" + \n\"   {\\\"bulan\\\":\\\"6\\\",\\\"total\\\":\\\"30550\\\",\\\"type\\\":\\\"ESL500ML\\\"},\" + \n\"  ]\" + \n\"}\"; \nReportResults reports = new Gson().fromJson(json, ReportResults.class);\nList&lt;ReportResult&gt; results = reports.getGetReportResult();\nfor(ReportResult result:results)System.out.println(result);\n<\/code><\/pre>\n<p>The ReportResults class:<\/p>\n<pre><code>package com.yourcomp.test;\nimport java.util.List;\n\npublic class ReportResults {\n\n    private List&lt;ReportResult&gt; GetReportResult;\n\n    \/**\n     * Gets the getReportResult.\n     * \n     * @return &lt;tt&gt; the getReportResult.&lt;\/tt&gt;\n     *\/\n    public List&lt;ReportResult&gt; getGetReportResult() {\n        return GetReportResult;\n    }\n\n    \/**\n     * Sets the getReportResult.\n     *\n     * @param getReportResult &lt;tt&gt; the getReportResult to set.&lt;\/tt&gt;\n     *\/\n    public void setGetReportResult(List&lt;ReportResult&gt; getReportResult) {\n        GetReportResult = getReportResult;\n    }\n\n\n}\n<\/code><\/pre>\n<p>The ReportResult class:<\/p>\n<pre><code>package com.yourcomp.test;\n\npublic class ReportResult {\n\n    private String bulan; \n    private String total;\n    private String type;\n    \/**\n     * Gets the bulan.\n     * \n     * @return &lt;tt&gt; the bulan.&lt;\/tt&gt;\n     *\/\n    public String getBulan() {\n        return bulan;\n    }\n    \/**\n     * Sets the bulan.\n     *\n     * @param bulan &lt;tt&gt; the bulan to set.&lt;\/tt&gt;\n     *\/\n    public void setBulan(String bulan) {\n        this.bulan = bulan;\n    }\n    \/**\n     * Gets the total.\n     * \n     * @return &lt;tt&gt; the total.&lt;\/tt&gt;\n     *\/\n    public String getTotal() {\n        return total;\n    }\n    \/**\n     * Sets the total.\n     *\n     * @param total &lt;tt&gt; the total to set.&lt;\/tt&gt;\n     *\/\n    public void setTotal(String total) {\n        this.total = total;\n    }\n    \/**\n     * Gets the type.\n     * \n     * @return &lt;tt&gt; the type.&lt;\/tt&gt;\n     *\/\n    public String getType() {\n        return type;\n    }\n    \/**\n     * Sets the type.\n     *\n     * @param type &lt;tt&gt; the type to set.&lt;\/tt&gt;\n     *\/\n    public void setType(String type) {\n        this.type = type;\n    }\n    \/* (non-Javadoc)\n     * @see java.lang.Object#toString()\n     *\/\n    @Override\n    public String toString() {\n        return \"ReportResult [bulan=\" + bulan + \", total=\" + total + \", type=\"\n                + type + \"]\";\n    }\n\n\n}\n<\/code><\/pre>\n<p>Then use the parsed result to show in TableLayout.<\/p>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\">7<\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved How to turn JSON string into table? <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] easy way could be parse JSON string using GSON like this: String json = &#8220;{\\&#8221;GetReportResult\\&#8221;:&#8221; + &#8221; [&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;4\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;2448\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;CHEESE1K\\&#8221;}, &#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;4\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;572476\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;ESL\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;4\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;46008\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;ESL500ML\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;5\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;5703\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;CHEESE1K\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;5\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;648663\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;ESL\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;5\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;51958\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;WHP\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;6\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;6190\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;CHEESE1K\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;6\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;443335\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;ESL\\&#8221;},&#8221; + &#8221; {\\&#8221;bulan\\&#8221;:\\&#8221;6\\&#8221;,\\&#8221;total\\&#8221;:\\&#8221;30550\\&#8221;,\\&#8221;type\\&#8221;:\\&#8221;ESL500ML\\&#8221;},&#8221; + &#8221; ]&#8221; + &#8220;}&#8221;; ReportResults reports = &#8230; <a title=\"[Solved] How to turn JSON string into table?\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\" aria-label=\"More on [Solved] How to turn JSON string into table?\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[320],"tags":[452,356],"class_list":["post-16469","post","type-post","status-publish","format-standard","hentry","category-solved","tag-android","tag-json"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>[Solved] How to turn JSON string into table? - JassWeb<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] How to turn JSON string into table? - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] easy way could be parse JSON string using GSON like this: String json = &quot;{&quot;GetReportResult&quot;:&quot; + &quot; [&quot; + &quot; {&quot;bulan&quot;:&quot;4&quot;,&quot;total&quot;:&quot;2448&quot;,&quot;type&quot;:&quot;CHEESE1K&quot;}, &quot; + &quot; {&quot;bulan&quot;:&quot;4&quot;,&quot;total&quot;:&quot;572476&quot;,&quot;type&quot;:&quot;ESL&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;4&quot;,&quot;total&quot;:&quot;46008&quot;,&quot;type&quot;:&quot;ESL500ML&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;5&quot;,&quot;total&quot;:&quot;5703&quot;,&quot;type&quot;:&quot;CHEESE1K&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;5&quot;,&quot;total&quot;:&quot;648663&quot;,&quot;type&quot;:&quot;ESL&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;5&quot;,&quot;total&quot;:&quot;51958&quot;,&quot;type&quot;:&quot;WHP&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;6&quot;,&quot;total&quot;:&quot;6190&quot;,&quot;type&quot;:&quot;CHEESE1K&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;6&quot;,&quot;total&quot;:&quot;443335&quot;,&quot;type&quot;:&quot;ESL&quot;},&quot; + &quot; {&quot;bulan&quot;:&quot;6&quot;,&quot;total&quot;:&quot;30550&quot;,&quot;type&quot;:&quot;ESL500ML&quot;},&quot; + &quot; ]&quot; + &quot;}&quot;; ReportResults reports = ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-18T07:34:44+00:00\" \/>\n<meta name=\"author\" content=\"Kirat\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Kirat\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] How to turn JSON string into table?\",\"datePublished\":\"2022-10-18T07:34:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\"},\"wordCount\":44,\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"keywords\":[\"android\",\"json\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\",\"url\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\",\"name\":\"[Solved] How to turn JSON string into table? - JassWeb\",\"isPartOf\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#website\"},\"datePublished\":\"2022-10-18T07:34:44+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/jassweb.com\/solved\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] How to turn JSON string into table?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/jassweb.com\/solved\/#website\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"name\":\"JassWeb\",\"description\":\"Build High-quality Websites\",\"publisher\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/jassweb.com\/solved\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/jassweb.com\/solved\/#organization\",\"name\":\"Jass Web\",\"url\":\"https:\/\/jassweb.com\/solved\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"contentUrl\":\"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png\",\"width\":693,\"height\":132,\"caption\":\"Jass Web\"},\"image\":{\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31\",\"name\":\"Kirat\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"contentUrl\":\"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\/\/jassweb.com\"],\"url\":\"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] How to turn JSON string into table? - JassWeb","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] How to turn JSON string into table? - JassWeb","og_description":"[ad_1] easy way could be parse JSON string using GSON like this: String json = \"{\"GetReportResult\":\" + \" [\" + \" {\"bulan\":\"4\",\"total\":\"2448\",\"type\":\"CHEESE1K\"}, \" + \" {\"bulan\":\"4\",\"total\":\"572476\",\"type\":\"ESL\"},\" + \" {\"bulan\":\"4\",\"total\":\"46008\",\"type\":\"ESL500ML\"},\" + \" {\"bulan\":\"5\",\"total\":\"5703\",\"type\":\"CHEESE1K\"},\" + \" {\"bulan\":\"5\",\"total\":\"648663\",\"type\":\"ESL\"},\" + \" {\"bulan\":\"5\",\"total\":\"51958\",\"type\":\"WHP\"},\" + \" {\"bulan\":\"6\",\"total\":\"6190\",\"type\":\"CHEESE1K\"},\" + \" {\"bulan\":\"6\",\"total\":\"443335\",\"type\":\"ESL\"},\" + \" {\"bulan\":\"6\",\"total\":\"30550\",\"type\":\"ESL500ML\"},\" + \" ]\" + \"}\"; ReportResults reports = ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/","og_site_name":"JassWeb","article_published_time":"2022-10-18T07:34:44+00:00","author":"Kirat","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Kirat","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] How to turn JSON string into table?","datePublished":"2022-10-18T07:34:44+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/"},"wordCount":44,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["android","json"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/","url":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/","name":"[Solved] How to turn JSON string into table? - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-10-18T07:34:44+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-how-to-turn-json-string-into-table\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] How to turn JSON string into table?"}]},{"@type":"WebSite","@id":"https:\/\/jassweb.com\/solved\/#website","url":"https:\/\/jassweb.com\/solved\/","name":"JassWeb","description":"Build High-quality Websites","publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/jassweb.com\/solved\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/jassweb.com\/solved\/#organization","name":"Jass Web","url":"https:\/\/jassweb.com\/solved\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/","url":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","contentUrl":"https:\/\/jassweb.com\/wp-content\/uploads\/2021\/02\/jass-website-logo-1.png","width":693,"height":132,"caption":"Jass Web"},"image":{"@id":"https:\/\/jassweb.com\/solved\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31","name":"Kirat","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/image\/","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1776403586","caption":"Kirat"},"sameAs":["http:\/\/jassweb.com"],"url":"https:\/\/jassweb.com\/solved\/author\/jaspritsinghghumangmail-com\/"}]}},"_links":{"self":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16469","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/comments?post=16469"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/16469\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=16469"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=16469"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=16469"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}