{"id":12778,"date":"2023-02-13T13:05:00","date_gmt":"2023-02-13T13:05:00","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=12778"},"modified":"2023-10-16T07:17:16","modified_gmt":"2023-10-16T07:17:16","slug":"what-is-json-stack","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/","title":{"rendered":"What is JSON Stack"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\" alt=\"\" \/><\/p>\n<p>In today&#8217;s digital age, the seamless exchange of data between systems, applications, and devices is the lifeblood of modern technology. This exchange relies on a common language that allows computers to understand, interpret, and process data efficiently. JSON, short for &quot;JavaScript Object Notation,&quot; is one such language that has become a cornerstone of data interchange on the internet.<\/p>\n<p>In this comprehensive guide, we will explore what JSON is, how it works, and why it has become an indispensable tool in the world of software development and data communication. Whether you&#8217;re a seasoned programmer, a web developer, or simply curious about the language behind data transfer, this article will provide you with a clear understanding of JSON and its role in shaping the digital landscape.<\/p>\n<h2>What is JSON Stack?<\/h2>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293425992-What%20is%20json%20stack.jpeg\" alt=\"\" \/><\/p>\n<p>JSON stands for Javascript Object Notation, it is one of the easier ways to transmit data as compared to the old and inefficient method of data transfer through XML. The data transfer is performed over devices connected through a network. JSON can be used for any AJAX-based  (Asynchronous Javascript and XML) application that runs on XML data.<\/p>\n<p>In AJAX, the code is passed from the server at the backend to the coded Javascript. Although, it has become a standard notation to be used and is used for other languages as well such as Python etc. The syntactical structure of JSON consists of name-value pairs that can be compared to what comes as built-in in programming languages in the form of the object, records, dictionaries, hash tables etc when unordered and array, vector lists etc. when the values are enumerative or ordered.<\/p>\n<h3>Example of JSON Stack<\/h3>\n<p>Now that we have some firm knowledge of the topic, let us head over to see an example of a JSON file as mentioned below. From this, we can see that JSON permits nesting and the names in name-value pairs are defined as string type. <\/p>\n<pre><code>{\n  \"name\": \"John Doe\",\n  \"age\": 32,\n  \"address\": {\n    \"street\": \"123 Main St.\",\n    \"city\": \"Anytown\",\n    \"state\": \"CA\"\n  },\n  \"phoneNumbers\": [\n    {\n      \"type\": \"home\",\n      \"number\": \"555-555-1234\"\n    },\n    {\n      \"type\": \"work\",\n      \"number\": \"555-555-5678\"\n    }\n  ]\n}<\/code><\/pre>\n<h2>JSON vs Javascript Object<\/h2>\n<p>While Javascript Object Notation and Javascript Object may be assumed to be a mirror image of each other but they are entirely different as some of the JSON are not Javascript Objects and some of the Javascript Objects are not JSON. <\/p>\n<p>We can conclude this statement by taking an example mentioned below:- <\/p>\n<p>var one  = {a:b} is a Javascript Object and not a JSON, the reason being that a and b are not string type, one tweak that can be performed to turn them into JSON can be, var one = {\u201ca\u201d:\u201db\u201d}, where one is an object of type string.<\/p>\n<h2>Components of JSON Stack<\/h2>\n<p>JSON Stack can be classified on the basis of its components to classify the different types of data that it can hold for the transmission of data across networks in a lightweight manner. Remember that data must be in name-value pairs and separated with the help of a comma. Curly brackets contain the objects and square brackets contain the array.<\/p>\n<ol>\n<li>\n<p><strong>Object<\/strong><br \/>\nIt can be termed an unordered set consisting of name-value pairs. It starts with an opening brace ( { ) and commences with a closing brace ( } ). The name is separated by pair with the help of a colon and the pairs are separated using a comma (, ).<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135642-What%20is%20JSON%20stack1.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Array<\/strong><br \/>\nIt can be defined as a collection of values that are ordered or sequential. It starts with an opening bracket ( [ ) and ends with a closing bracket ( ] ) while the values are separated with the help of the comma operator ( , ).<\/p>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135642-What%20is%20JSON%20stack2.png\" alt=\"\" \/><\/p>\n<\/li>\n<li>\n<p><strong>Value<\/strong><br \/>\nThese can be nested and are any one of the following, namely as, object, array, number, string in double quoted form, boolean values such as true or false or even set to NULL.<\/p>\n<\/li>\n<\/ol>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135642-What%20is%20JSON%20stack3.png\" alt=\"\" \/><\/p>\n<ol start=\"4\">\n<li><strong>String<\/strong><br \/>\nIt can be demonstrated as a group of Unicode characters enclosed by double quotes for the opening and closing of the string. It is a similar paradigm to strings that we have in programming languages in Java or Python. Even a single character string will be identified as a string.<\/li>\n<\/ol>\n<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135643-What%20is%20JSON%20stack4.png\" alt=\"\" \/><\/p>\n<p><strong>Conclusion<\/strong><br \/>\nAs we conclude our journey into the world of JSON, we can appreciate the elegance and simplicity of this data interchange format. JSON&#8217;s widespread adoption, human-readable structure, and compatibility with various programming languages have made it an essential tool for developers and data scientists alike.<\/p>\n<p>JSON&#8217;s role in the modern digital ecosystem is undeniable. It facilitates the exchange of data between web services, allows IoT devices to communicate seamlessly, and powers data-driven applications across industries. JSON&#8217;s lightweight nature and ease of use have contributed to its popularity, ensuring its relevance in an ever-evolving tech landscape.<\/p>\n<h2>Frequently Asked Questions on JSON Stack<\/h2>\n<p>Here are some FAQs related to JSON Stack.<\/p>\n<p><strong>1. What is JSON, and what does it stand for?<\/strong><br \/>\nJSON stands for &quot;JavaScript Object Notation.&quot; It is a lightweight, human-readable data interchange format used for structuring and transmitting data between systems.<\/p>\n<p><strong>2. What is the basic structure of JSON data?<\/strong><br \/>\nJSON data consists of key-value pairs, where keys are strings enclosed in double quotes, and values can be strings, numbers, objects, arrays, booleans, or null. Multiple key-value pairs are separated by commas, and objects are enclosed in curly braces, while arrays are enclosed in square brackets.<\/p>\n<p><strong>3. How is JSON different from XML?<\/strong><br \/>\nJSON and XML are both used for data interchange, but JSON is typically more lightweight and easier for humans to read and write. JSON is often preferred for web-based applications, while XML is used in a broader range of applications, including document markup.<\/p>\n<p><strong>4. Which programming languages support JSON?<\/strong><br \/>\nJSON is natively supported in many programming languages, including JavaScript, Python, Java, Ruby, C#, and more. Libraries and modules are available for languages that do not have built-in JSON support.<\/p>\n<p><strong>5. What are some common use cases for JSON?<\/strong><br \/>\nJSON is widely used for web APIs, configuration files, data storage, and data exchange between different parts of web applications. It is also used for storing and transmitting structured data in NoSQL databases.<\/p>\n<p><strong>6. How can I validate JSON data?<\/strong><br \/>\nJSON data can be validated using various online validators and linting tools. Many programming languages also provide built-in functions or libraries for parsing and validating JSON data.<\/p>\n<p><strong>7. Is JSON secure for data exchange over the internet?<\/strong><br \/>\nJSON itself does not provide security features, but it is commonly used in conjunction with secure communication protocols such as HTTPS to ensure data security during transmission. It is important to implement appropriate security measures to protect data when using JSON for communication.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s digital age, the seamless exchange of data between systems, applications, and devices is the lifeblood of modern technology. This exchange relies on a common language that allows computers to understand, interpret, and process data efficiently. JSON, short for &quot;JavaScript Object Notation,&quot; is one such language that has become a cornerstone of data interchange [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-12778","post","type-post","status-publish","format-standard","hentry","category-miscellaneous"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is JSON Stack?<\/title>\n<meta name=\"description\" content=\"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is JSON Stack?\" \/>\n<meta property=\"og:description\" content=\"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-02-13T13:05:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-10-16T07:17:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"What is JSON Stack\",\"datePublished\":\"2023-02-13T13:05:00+00:00\",\"dateModified\":\"2023-10-16T07:17:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\"},\"wordCount\":1073,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\",\"articleSection\":[\"Miscellaneous\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\",\"name\":\"What is JSON Stack?\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\",\"datePublished\":\"2023-02-13T13:05:00+00:00\",\"dateModified\":\"2023-10-16T07:17:16+00:00\",\"description\":\"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Miscellaneous\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What is JSON Stack\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is JSON Stack?","description":"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.","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:\/\/prepbytes.com\/blog\/what-is-json-stack\/","og_locale":"en_US","og_type":"article","og_title":"What is JSON Stack?","og_description":"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.","og_url":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-02-13T13:05:00+00:00","article_modified_time":"2023-10-16T07:17:16+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"What is JSON Stack","datePublished":"2023-02-13T13:05:00+00:00","dateModified":"2023-10-16T07:17:16+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/"},"wordCount":1073,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg","articleSection":["Miscellaneous"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/","url":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/","name":"What is JSON Stack?","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg","datePublished":"2023-02-13T13:05:00+00:00","dateModified":"2023-10-16T07:17:16+00:00","description":"What is JSON Stack and JSON Definition stand for? We decrypted how to decipher the confusion between Javascript objects and JSON.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/what-is-json-stack\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1676293135672-What%20is%20JSON%20Stack.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/what-is-json-stack\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Miscellaneous","item":"https:\/\/prepbytes.com\/blog\/category\/miscellaneous\/"},{"@type":"ListItem","position":3,"name":"What is JSON Stack"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12778","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=12778"}],"version-history":[{"count":4,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12778\/revisions"}],"predecessor-version":[{"id":18197,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/12778\/revisions\/18197"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=12778"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=12778"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=12778"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}