{"id":121474,"date":"2026-07-08T22:12:19","date_gmt":"2026-07-08T16:42:19","guid":{"rendered":"https:\/\/www.guvi.in\/blog\/?p=121474"},"modified":"2026-07-08T22:12:28","modified_gmt":"2026-07-08T16:42:28","slug":"what-is-json-in-python","status":"publish","type":"post","link":"https:\/\/www.guvi.in\/blog\/what-is-json-in-python\/","title":{"rendered":"What Is JSON in Python? A Beginner&#8217;s Guide"},"content":{"rendered":"\n<p>If you&#8217;ve worked with web APIs, configuration files, or any kind of data exchange between applications, you&#8217;ve almost certainly run into JSON. It&#8217;s everywhere, from the response you get back from a weather API to the settings file your app reads on startup. Python makes working with JSON simple through a built-in module, and understanding it is one of the most practical skills you can pick up early.\u00a0<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>TL;DR\u00a0Summary<\/strong><\/h2>\n\n\n\n<ul>\n<li><strong>JSON is the most widely used format for exchanging structured data<\/strong>, and Python provides built-in support through the json module with no additional installation required.<\/li>\n\n\n\n<li><strong>The four core functions loads(), load(), dumps(), and dump() handle nearly all JSON operations<\/strong>, including reading from strings, files, and writing data back to JSON.<\/li>\n\n\n\n<li><strong>Once JSON is parsed, it becomes standard Python dictionaries and lists<\/strong>, making it easy to access, modify, and work with using familiar Python syntax.<\/li>\n<\/ul>\n\n\n\n<p><em>Master JSON in Python for data exchange, APIs, and config files. Learn Python from zero to hero with HCL GUVI\u2019s <\/em><strong><em>Python Zero to Hero Course<\/em><\/strong><em>. <\/em><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Start your Python journey here<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>What Is JSON in Python?<\/strong><\/h2>\n\n\n\n<p>JSON (JavaScript Object Notation) is a lightweight, text-based data format used to exchange data between systems. In Python, the built-in json module converts JSON text into Python objects like dictionaries and lists, and converts Python objects back into JSON text. No installation needed \u2014 it ships with the standard library.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Understanding JSON in Plain Terms<\/strong><\/h2>\n\n\n\n<ol>\n<li>JSON represents data as key-value pairs, very similar to a Python dictionary. It supports strings, numbers, booleans, null values, arrays, and nested objects \u2014 which is why it maps onto Python&#8217;s data structures so naturally.<\/li>\n\n\n\n<li>Here&#8217;s what a JSON object looks like:<\/li>\n\n\n\n<li><strong>{ &#8220;make&#8221;: &#8220;Tesla&#8221;, &#8220;model&#8221;: &#8220;Model 3&#8221;, &#8220;year&#8221;: 2022, &#8220;color&#8221;: &#8220;Red&#8221; }<\/strong><\/li>\n\n\n\n<li>This is human-readable, language-independent, and lightweight, which is exactly why it became the standard format for APIs, config files, and data storage across nearly every modern programming language.<\/li>\n\n\n\n<li>It&#8217;s important to remember that JSON is a text format, not a Python object. When you load JSON into Python, it gets converted into a Python dictionary or list.&nbsp;<\/li>\n\n\n\n<li>When you&#8217;re ready to send data back out, you convert it back into JSON text. Keeping that distinction clear avoids a lot of beginner confusion.<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>The JSON Module: Your Starting Point<\/strong><\/h2>\n\n\n\n<ul>\n<li>Python&#8217;s json module handles all of this conversion. It&#8217;s part of the standard library, so no pip install is required&nbsp; just import it and start working.<\/li>\n\n\n\n<li>import json<\/li>\n\n\n\n<li>The module gives you four core functions, and almost everything you do with JSON in Python uses one of them.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Function<\/strong><\/td><td><strong>Purpose<\/strong><\/td><td><strong>Input<\/strong><\/td><td><strong>Output<\/strong><\/td><\/tr><tr><td>json.loads()<\/td><td>Parse a JSON string<\/td><td>String<\/td><td>Python object<\/td><\/tr><tr><td>json.load()<\/td><td>Parse a JSON file<\/td><td>File object<\/td><td>Python object<\/td><\/tr><tr><td>json.dumps()<\/td><td>Convert Python object to JSON string<\/td><td>Python object<\/td><td>String<\/td><\/tr><tr><td>json.dump()<\/td><td>Write Python object to a JSON file<\/td><td>Python object<\/td><td>File<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The naming convention is easy to remember: functions ending in s work with strings, and the ones without s work with files.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Reading JSON From a String<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>json.loads() &#8212; load string &#8212; converts a JSON-formatted string directly into a Python dictionary:<br>import json<br>json_string = &#8216;{&#8220;name&#8221;: &#8220;John&#8221;, &#8220;age&#8221;: 30, &#8220;city&#8221;: &#8220;New York&#8221;}&#8217; data = json.loads(json_string)<br><strong>print<\/strong>(data)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Output: {&#8216;name&#8217;: &#8216;John&#8217;, &#8216;age&#8217;: 30, &#8216;city&#8217;: &#8216;New York&#8217;}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>print<\/strong>(data[&#8216;name&#8217;])<br>Output: John<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Once parsed, data behaves like a normal Python dictionary. You access values with square brackets, just as you would with any dict.<\/p>\n\n\n\n<div style=\"background-color: #099f4e; border: 3px solid #110053; border-radius: 12px; padding: 18px 22px; color: #FFFFFF; font-size: 18px; font-family: Montserrat, Helvetica, sans-serif; line-height: 1.6; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); max-width: 750px;\">\n\n  <strong style=\"font-size: 22px; color: #FFFFFF;\">\ud83d\udca1 Did You Know?<\/strong>\n  <br \/><br \/>\n\n  <strong style=\"color: #FFFFFF;\">JSON (JavaScript Object Notation)<\/strong> was originally derived from JavaScript object syntax, but it has evolved into a <strong style=\"color: #FFFFFF;\">language-independent<\/strong> data format supported by virtually every major programming language. Thanks to its lightweight structure, human-readable syntax, and efficient parsing, JSON has become the standard format for data exchange in <strong style=\"color: #FFFFFF;\">REST APIs<\/strong>, cloud services, and modern web applications.\n\n<\/div>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Reading JSON From a File<\/strong><\/h2>\n\n\n\n<p>When your JSON lives in a file rather than a string, json.load() reads it directly:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>import json<br>with open(&#8216;data.json&#8217;) <strong>as<\/strong> f: json_data = json.load(f)<br><strong>print<\/strong>(json_data)<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Output: {&#8216;make&#8217;: &#8216;Tesla&#8217;, &#8216;model&#8217;: &#8216;Model 3&#8217;, &#8216;year&#8217;: 2022, &#8216;color&#8217;: &#8216;Red&#8217;}<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>The with open() context manager handles closing the file automatically, even if an error occurs while reading. This is the standard, safe way to read any file in Python not just JSON.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Working With Nested JSON<\/strong><\/h2>\n\n\n\n<ul>\n<li>Real-world JSON is rarely flat. APIs commonly return nested objects and arrays, and you need to chain keys and indices to reach the data you want.<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>import json<br>json_string = &#8216;{&#8220;numbers&#8221;: [1, 2, 3], &#8220;car&#8221;: {&#8220;model&#8221;: &#8220;Model X&#8221;, &#8220;year&#8221;: 2022}}&#8217; data = json.loads(json_string)<br><strong>print<\/strong>(data[&#8216;numbers&#8217;][0]) # Output: 1 print(data[&#8216;car&#8217;][&#8216;model&#8217;]) # Output: Model X<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul>\n<li>data[&#8216;numbers&#8217;][0] uses array indexing to grab the first element of a list. data[&#8216;car&#8217;][&#8216;model&#8217;] chains two dictionary lookups to reach a nested object.<\/li>\n\n\n\n<li>&nbsp;Once JSON is loaded into Python, navigating it is no different from navigating any nested dictionary or list; the same rules apply all the way down.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Modifying JSON Data<\/strong><\/h2>\n\n\n\n<p>Since parsed JSON becomes a regular Python dictionary, you modify it using standard dictionary operations.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Adding a <strong>new<\/strong> key:<br>json_data[&#8216;color&#8217;] = &#8216;red&#8217;<br>Updating an existing key:<br>json_data[&#8216;year&#8217;] = 2023<br>Merging in another dictionary:<br>more_data = json.loads(&#8216;{&#8220;model&#8221;: &#8220;Model S&#8221;, &#8220;color&#8221;: &#8220;Red&#8221;}&#8217;) json_data.update(more_data)<br>Deleting a key:<br>del json_data[&#8216;year&#8217;]<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>None of this is JSON-specific; it&#8217;s exactly how you&#8217;d work with any Python dictionary. That consistency is part of why JSON feels so natural in Python.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Converting Python Back to JSON<\/strong><\/h2>\n\n\n\n<p>Once you&#8217;re done modifying data, you&#8217;ll often need to send it somewhere else an API, a file, or a database. That requires converting the Python object back into a JSON string using json.dumps():<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td>import json<br>data = {&#8220;name&#8221;: &#8220;Alice&#8221;, &#8220;age&#8221;: 28, &#8220;is_admin&#8221;: <strong>False<\/strong>} json_string = json.dumps(data)<br><strong>print<\/strong>(json_string)<br>Output: &#8216;{&#8220;name&#8221;: &#8220;Alice&#8221;, &#8220;age&#8221;: 28, &#8220;is_admin&#8221;: false}&#8217;<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<ul>\n<li>Notice that <a href=\"https:\/\/www.guvi.in\/blog\/beginner-roadmap-for-python-basics-to-web-frameworks\/\" target=\"_blank\" rel=\"noreferrer noopener\">Python&#8217;s <\/a>False becomes <a href=\"https:\/\/www.guvi.in\/blog\/complete-guide-on-how-to-open-a-json-file\/\" target=\"_blank\" rel=\"noreferrer noopener\">JSON&#8217;s <\/a>false (lowercase); this is one of several small but important type differences between the two formats.<\/li>\n\n\n\n<li>For readability, especially when debugging or logging, pass indent to pretty-print the output:<\/li>\n<\/ul>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>print<\/strong><strong>(json.dumps(data, indent=2))<\/strong><strong><br><\/strong><strong>{<\/strong><strong><br><\/strong><strong>&#8220;name&#8221;<\/strong><strong>: <\/strong><strong>&#8220;Alice&#8221;<\/strong><strong>,<\/strong><strong><br><\/strong><strong>&#8220;age&#8221;<\/strong><strong>: 28,<\/strong><strong><br><\/strong><strong>&#8220;is_admin&#8221;<\/strong><strong>: <\/strong><strong>false<\/strong><strong><br><\/strong><strong>}<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Writing JSON to a File<\/strong><\/h2>\n\n\n\n<p>json.dump() writes a Python object directly to a file as JSON; no need to convert to a string first:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>import json<\/strong><strong><br><\/strong><strong>data = {<\/strong><strong>&#8220;name&#8221;<\/strong><strong>: <\/strong><strong>&#8220;Alice&#8221;<\/strong><strong>, <\/strong><strong>&#8220;age&#8221;<\/strong><strong>: 28}<\/strong><strong><br><\/strong><strong>with open(<\/strong><strong>&#8216;output.json&#8217;<\/strong><strong>, <\/strong><strong>&#8216;w&#8217;<\/strong><strong>) <\/strong><strong>as<\/strong><strong> f: json.dump(data, f, indent=2)<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>This is the standard pattern for saving configuration, caching <a href=\"https:\/\/www.guvi.in\/blog\/api-response-structure-best-practices\/\" target=\"_blank\" rel=\"noreferrer noopener\">API <\/a>responses, or persisting any structured data your application needs to read back later.<\/p>\n\n\n\n<p><em>Master JSON in Python for data exchange, APIs, and config files. Learn Python from zero to hero with HCL GUVI\u2019s <\/em><strong><em>Python Zero to Hero Course<\/em><\/strong><em>. <\/em><a href=\"https:\/\/www.guvi.in\/courses\/programming\/python-zero-to-hero\/\" target=\"_blank\" rel=\"noreferrer noopener\"><em>Start your Python journey here<\/em><\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Python to JSON Type Mapping<\/strong><\/h2>\n\n\n\n<p>Understanding how Python types map to JSON types prevents a lot of confusing bugs, especially around booleans and None.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>Python Type<\/strong><\/td><td><strong>JSON Type<\/strong><\/td><\/tr><tr><td>dict<\/td><td>object<\/td><\/tr><tr><td>list, tuple<\/td><td>array<\/td><\/tr><tr><td>str<\/td><td>string<\/td><\/tr><tr><td>int, float<\/td><td>number<\/td><\/tr><tr><td>True \/ False<\/td><td>true \/ false<\/td><\/tr><tr><td>None<\/td><td>null<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Note that both Python lists and tuples convert to JSON arrays \u2014 but converting JSON back to Python always gives you a list, never a tuple. JSON has no concept of tuples, so that distinction is lost in the round trip.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Handling Errors When Parsing JSON<\/strong><\/h2>\n\n\n\n<p>Not all text is valid JSON, and malformed JSON will raise a json.JSONDecodeError. Production code should always handle this case rather than letting it crash the program.<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table><tbody><tr><td><strong>import json<\/strong><strong><br><\/strong><strong>invalid_json = <\/strong><strong>&#8216;{&#8220;name&#8221;: &#8220;Alice&#8221;, &#8220;age&#8221;:}&#8217;<\/strong><strong><br><\/strong><strong>try<\/strong><strong>: data = json.loads(invalid_json) except json.JSONDecodeError <\/strong><strong>as<\/strong><strong> e: <\/strong><strong>print<\/strong><strong>(f<\/strong><strong>&#8220;Invalid JSON: {e}&#8221;<\/strong><strong>)<\/strong><\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<p>Wrapping json.loads() or json.load() in a try\/except block is good practice anywhere you&#8217;re parsing JSON from an external source, API responses, user uploads, or third-party files&nbsp; since you can&#8217;t guarantee the data will always be well-formed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Common Real-World Use Cases<\/strong><\/h2>\n\n\n\n<ul>\n<li><strong>JSON shows up constantly in everyday Python work<\/strong>. APIs return JSON responses that you parse with json.loads() after a request. Configuration files store application settings in a structured, human-readable format.&nbsp;<\/li>\n\n\n\n<li><strong>Data pipelines use JSON<\/strong> as an intermediate format when moving data between systems written in different languages.&nbsp;<\/li>\n\n\n\n<li><strong>Caching layers serialize <\/strong>Python objects into JSON strings to store in Redis or similar systems. Logging systems often format structured logs as JSON lines for easier machine parsing.<\/li>\n\n\n\n<li>In each case, the same two ideas apply: parse JSON into Python with loads() or load(), and convert Python back into JSON with dumps() or dump().<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Conclusion<\/strong><\/h2>\n\n\n\n<p>JSON in Python comes down to two directions: reading JSON into Python objects and writing Python objects back into JSON. The JSON module&#8217;s four core functions, loads(), load(), dumps(), and dump(), cover nearly everything you&#8217;ll need.&nbsp;<\/p>\n\n\n\n<p>Once JSON is loaded into Python, it behaves exactly like a dictionary or list, so all your existing Python skills apply directly. Get comfortable with these basics, and working with APIs, config files, and structured data becomes second nature.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>FAQs<\/strong><\/h2>\n\n\n<div id=\"rank-math-faq\" class=\"rank-math-block\">\n<div class=\"rank-math-list \">\n<div id=\"faq-question-1783394756769\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>1. What is JSON in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>JSON (JavaScript Object Notation) is a lightweight text-based format used to store and exchange structured data. In Python, the built-in json module allows developers to convert JSON data into Python objects and vice versa.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394771499\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>2. What is the difference between json.loads() and json.load()?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>json.loads() reads JSON data from a string and converts it into a Python object. json.load() reads JSON data directly from a file and converts it into a Python object.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394781026\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>3. What is the difference between json.dumps() and json.dump()?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>json.dumps() converts a Python object into a JSON-formatted string. json.dump() writes a Python object directly to a file in JSON format.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394792045\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>4. How does Python represent JSON data after parsing?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>When JSON is loaded into Python, JSON objects become dictionaries, JSON arrays become lists, JSON strings become Python strings, numbers become integers or floats, booleans become True or False, and null becomes None.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394804534\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>5. Can I modify JSON data after loading it into Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>Yes. Once JSON is parsed, it becomes a regular Python dictionary or list. You can add, update, delete, or merge data using standard Python operations before converting it back to JSON.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394815456\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>6. How should I handle invalid JSON data in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>You should wrap JSON parsing operations in a try-except block and catch json.JSONDecodeError. This prevents malformed JSON from causing your application to crash and allows you to handle errors gracefully.<\/p>\n\n<\/div>\n<\/div>\n<div id=\"faq-question-1783394825601\" class=\"rank-math-list-item\">\n<h3 class=\"rank-math-question \"><strong>7. What are the most common real-world uses of JSON in Python?<\/strong><\/h3>\n<div class=\"rank-math-answer \">\n\n<p>JSON is commonly used for working with web APIs, storing configuration settings, exchanging data between applications, caching structured data, processing data pipelines, and creating machine-readable log files.<\/p>\n\n<\/div>\n<\/div>\n<\/div>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>If you&#8217;ve worked with web APIs, configuration files, or any kind of data exchange between applications, you&#8217;ve almost certainly run into JSON. It&#8217;s everywhere, from the response you get back from a weather API to the settings file your app reads on startup. Python makes working with JSON simple through a built-in module, and understanding [&hellip;]<\/p>\n","protected":false},"author":63,"featured_media":122063,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[717],"tags":[],"views":"47","authorinfo":{"name":"Vishalini Devarajan","url":"https:\/\/www.guvi.in\/blog\/author\/vishalini\/"},"thumbnailURL":"https:\/\/www.guvi.in\/blog\/wp-content\/uploads\/2026\/07\/what-is-json-in-python-300x120.webp","_links":{"self":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/121474"}],"collection":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/users\/63"}],"replies":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/comments?post=121474"}],"version-history":[{"count":3,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/121474\/revisions"}],"predecessor-version":[{"id":122064,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/posts\/121474\/revisions\/122064"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media\/122063"}],"wp:attachment":[{"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/media?parent=121474"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/categories?post=121474"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.guvi.in\/blog\/wp-json\/wp\/v2\/tags?post=121474"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}