{"id":24085,"date":"2022-11-30T07:58:08","date_gmt":"2022-11-30T02:28:08","guid":{"rendered":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/"},"modified":"2022-11-30T07:58:08","modified_gmt":"2022-11-30T02:28:08","slug":"solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict","status":"publish","type":"post","link":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/","title":{"rendered":"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict"},"content":{"rendered":"<p> [ad_1]<br \/>\n<\/p>\n<div id=\"answer-63783049\" class=\"answer js-answer accepted-answer js-accepted-answer\" data-answerid=\"63783049\" data-parentid=\"63781798\" data-score=\"0\" 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>As @Hitobat mentioned in commend &#8211; you have list with dictionary inside so you have to use <code>[0]<\/code> to get this dictionary. Or you have to use <code>for<\/code>-loop if you have more elements on list<\/p>\n<pre><code>data = [{'_id': '5f563c1bf8eaa9d98eca231f', 'allEnabledDs': None, 'allEnabledIdSor': None, 'correlationFilterEntitySource': True, 'created_at': '2020-09-07T13:56:43.469Z', 'dsConnectionList': None, 'folderToLabelMapping': None, 'idConnectionList': None, 'identityResolutionScan': False, 'info': None, 'isCustomScanProfile': None, 'modelId': None, 'name': 'Identity Discovery Scan', 'origin': 'Identity Discovery Scan', 'scan_progress_status': {'Started': '2020-09-07T13:56:43.469Z'}, 'shouldCreateClassifiers': None, 'skipIdScan': None, 'state': 'Started', 'type': 'identityDiscoveryScan', 'updated_at': '2020-09-07T16:59:45.294Z', 'identities_scanned': 0, 'correlation_completed': True, 'correlation_completed_dt': '2020-09-07T13:56:43.547Z', 'piisummary_completed_dt': '2020-09-07T13:56:43.642Z', 'stopRequested': True}]\n\nprint( data[0]['state'] )\n\nfor item in data:\n    print( item['state'] )\n<\/code><\/pre>\n<hr>\n<p>Next time you can use <code>type()<\/code> to check what you have &#8211;<\/p>\n<pre><code>print( type(data) )\n<\/code><\/pre>\n<p>if it <code>list<\/code> then you can test length and\/or check first element<\/p>\n<pre><code>print( len(data) )\nprint( type( data[0] ) )\n<\/code><\/pre>\n<p>if it is <code>dict<\/code> then you can check what keys you can use<\/p>\n<pre><code>print( data[0].keys() )\n<\/code><\/pre>\n<p>This way you can recognize how to get expected element(s).<\/p>\n<p>You can also use <code>json<\/code> to format it with indentations and see how it looks like<\/p>\n<pre><code>import json\n\nprint( json.dumps(data, indent=2) )\n<\/code><\/pre>\n<p>Results:<\/p>\n<pre><code>[\n  {\n    \"_id\": \"5f563c1bf8eaa9d98eca231f\",\n    \"allEnabledDs\": null,\n    \"allEnabledIdSor\": null,\n    \"correlationFilterEntitySource\": true,\n    \"created_at\": \"2020-09-07T13:56:43.469Z\",\n    \"dsConnectionList\": null,\n    \"folderToLabelMapping\": null,\n    \"idConnectionList\": null,\n    \"identityResolutionScan\": false,\n    \"info\": null,\n    \"isCustomScanProfile\": null,\n    \"modelId\": null,\n    \"name\": \"Identity Discovery Scan\",\n    \"origin\": \"Identity Discovery Scan\",\n    \"scan_progress_status\": {\n      \"Started\": \"2020-09-07T13:56:43.469Z\"\n    },\n    \"shouldCreateClassifiers\": null,\n    \"skipIdScan\": null,\n    \"state\": \"Started\",\n    \"type\": \"identityDiscoveryScan\",\n    \"updated_at\": \"2020-09-07T16:59:45.294Z\",\n    \"identities_scanned\": 0,\n    \"correlation_completed\": true,\n    \"correlation_completed_dt\": \"2020-09-07T13:56:43.547Z\",\n    \"piisummary_completed_dt\": \"2020-09-07T13:56:43.642Z\",\n    \"stopRequested\": true\n  }\n]\n<\/code><\/pre>\n<p>Similar way you can use <code>pprint<\/code> (Pretty Print)<\/p>\n<pre><code>import pprint\n\npprint.pprint(data)\n<\/code><\/pre>\n<p>Result:<\/p>\n<pre><code>[{'_id': '5f563c1bf8eaa9d98eca231f',\n  'allEnabledDs': None,\n  'allEnabledIdSor': None,\n  'correlationFilterEntitySource': True,\n  'correlation_completed': True,\n  'correlation_completed_dt': '2020-09-07T13:56:43.547Z',\n  'created_at': '2020-09-07T13:56:43.469Z',\n  'dsConnectionList': None,\n  'folderToLabelMapping': None,\n  'idConnectionList': None,\n  'identities_scanned': 0,\n  'identityResolutionScan': False,\n  'info': None,\n  'isCustomScanProfile': None,\n  'modelId': None,\n  'name': 'Identity Discovery Scan',\n  'origin': 'Identity Discovery Scan',\n  'piisummary_completed_dt': '2020-09-07T13:56:43.642Z',\n  'scan_progress_status': {'Started': '2020-09-07T13:56:43.469Z'},\n  'shouldCreateClassifiers': None,\n  'skipIdScan': None,\n  'state': 'Started',\n  'stopRequested': True,\n  'type': 'identityDiscoveryScan',\n  'updated_at': '2020-09-07T16:59:45.294Z'}]\n<\/code><\/pre>\n<\/p><\/div>\n<div class=\"mt24\"><\/div>\n<\/div>\n<p>            <span class=\"d-none\" itemprop=\"commentCount\"><\/span> <\/p><\/div>\n<\/div>\n<p>[ad_2]<\/p>\n<p>solved Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict <\/p>\n","protected":false},"excerpt":{"rendered":"<p>[ad_1] As @Hitobat mentioned in commend &#8211; you have list with dictionary inside so you have to use [0] to get this dictionary. Or you have to use for-loop if you have more elements on list data = [{&#8216;_id&#8217;: &#8216;5f563c1bf8eaa9d98eca231f&#8217;, &#8216;allEnabledDs&#8217;: None, &#8216;allEnabledIdSor&#8217;: None, &#8216;correlationFilterEntitySource&#8217;: True, &#8216;created_at&#8217;: &#8216;2020-09-07T13:56:43.469Z&#8217;, &#8216;dsConnectionList&#8217;: None, &#8216;folderToLabelMapping&#8217;: None, &#8216;idConnectionList&#8217;: None, &#8216;identityResolutionScan&#8217;: &#8230; <a title=\"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict\" class=\"read-more\" href=\"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/\" aria-label=\"More on [Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict\">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":[834,540,349],"class_list":["post-24085","post","type-post","status-publish","format-standard","hentry","category-solved","tag-dictionary","tag-list","tag-python"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - 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-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - JassWeb\" \/>\n<meta property=\"og:description\" content=\"[ad_1] As @Hitobat mentioned in commend &#8211; you have list with dictionary inside so you have to use [0] to get this dictionary. Or you have to use for-loop if you have more elements on list data = [{&#039;_id&#039;: &#039;5f563c1bf8eaa9d98eca231f&#039;, &#039;allEnabledDs&#039;: None, &#039;allEnabledIdSor&#039;: None, &#039;correlationFilterEntitySource&#039;: True, &#039;created_at&#039;: &#039;2020-09-07T13:56:43.469Z&#039;, &#039;dsConnectionList&#039;: None, &#039;folderToLabelMapping&#039;: None, &#039;idConnectionList&#039;: None, &#039;identityResolutionScan&#039;: ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/\" \/>\n<meta property=\"og:site_name\" content=\"JassWeb\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-30T02:28:08+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-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/\"},\"author\":{\"name\":\"Kirat\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#\\\/schema\\\/person\\\/65c9c7b7958150c0dc8371fa35dd7c31\"},\"headline\":\"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict\",\"datePublished\":\"2022-11-30T02:28:08+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/\"},\"wordCount\":146,\"publisher\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#organization\"},\"keywords\":[\"dictionary\",\"list\",\"python\"],\"articleSection\":[\"Solved\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/\",\"name\":\"[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - JassWeb\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/#website\"},\"datePublished\":\"2022-11-30T02:28:08+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict\"}]},{\"@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\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"contentUrl\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/wp-content\\\/litespeed\\\/avatar\\\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206\",\"caption\":\"Kirat\"},\"sameAs\":[\"http:\\\/\\\/jassweb.com\"],\"url\":\"https:\\\/\\\/jassweb.com\\\/solved\\\/author\\\/jaspritsinghghumangmail-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - 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-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/","og_locale":"en_US","og_type":"article","og_title":"[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - JassWeb","og_description":"[ad_1] As @Hitobat mentioned in commend &#8211; you have list with dictionary inside so you have to use [0] to get this dictionary. Or you have to use for-loop if you have more elements on list data = [{'_id': '5f563c1bf8eaa9d98eca231f', 'allEnabledDs': None, 'allEnabledIdSor': None, 'correlationFilterEntitySource': True, 'created_at': '2020-09-07T13:56:43.469Z', 'dsConnectionList': None, 'folderToLabelMapping': None, 'idConnectionList': None, 'identityResolutionScan': ... Read more","og_url":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/","og_site_name":"JassWeb","article_published_time":"2022-11-30T02:28:08+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-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/#article","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/"},"author":{"name":"Kirat","@id":"https:\/\/jassweb.com\/solved\/#\/schema\/person\/65c9c7b7958150c0dc8371fa35dd7c31"},"headline":"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict","datePublished":"2022-11-30T02:28:08+00:00","mainEntityOfPage":{"@id":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/"},"wordCount":146,"publisher":{"@id":"https:\/\/jassweb.com\/solved\/#organization"},"keywords":["dictionary","list","python"],"articleSection":["Solved"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/","url":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/","name":"[Solved] Schrodingers JSON - when working with a json doc it is erroring as both a list and a dict - JassWeb","isPartOf":{"@id":"https:\/\/jassweb.com\/solved\/#website"},"datePublished":"2022-11-30T02:28:08+00:00","breadcrumb":{"@id":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/jassweb.com\/solved\/solved-schrodingers-json-when-working-with-a-json-doc-it-is-erroring-as-both-a-list-and-a-dict\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/jassweb.com\/solved\/"},{"@type":"ListItem","position":2,"name":"[Solved] Schrodingers JSON &#8211; when working with a json doc it is erroring as both a list and a dict"}]},{"@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\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","url":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","contentUrl":"https:\/\/jassweb.com\/solved\/wp-content\/litespeed\/avatar\/1261af3c9451399fa1336d28b98ea3bb.jpg?ver=1777613206","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\/24085","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=24085"}],"version-history":[{"count":0,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/posts\/24085\/revisions"}],"wp:attachment":[{"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/media?parent=24085"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/categories?post=24085"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/jassweb.com\/solved\/wp-json\/wp\/v2\/tags?post=24085"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}