{"id":22747,"date":"2020-09-16T18:19:46","date_gmt":"2020-09-17T01:19:46","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=22747"},"modified":"2023-12-01T04:00:09","modified_gmt":"2023-12-01T12:00:09","slug":"json-vs-xml","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/","title":{"rendered":"JSON vs. XML: A Comparison"},"content":{"rendered":"\n<p>JSON and XML are used to share information over the internet. Both of these data types store information in a particular order where data is associated with a label or a tag.<br><\/p>\n\n\n\n<p>In this guide, we discuss what JSON and XML are and what they are used for. We\u2019ll walk through the pros and cons of each of these data types so you can learn why they are used.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is JSON?<\/h2>\n\n\n\n<p>JSON, or <a href=\"https:\/\/careerkarma.com\/blog\/javascript-json\/\">JavaScript Object Notation<\/a>, is a method of storing and sharing data.<br><\/p>\n\n\n\n<p>A big use case of JSON is sending data from a client to a server. The client is the side of an application that shows a user information and the server is where that information is processed. Often, a client makes a JSON request and then a server returns the data requested in the JSON format to be processed on the client-side.<br><\/p>\n\n\n\n<p>In JSON, data is separated using key-value pairs:<br><\/p>\n\n\n\n<p><code>{ \u201cname\u201d: \u201cJason\u201d }<br><\/code><\/p>\n\n\n\n<p>There is one key and one value in this JSON object. \u201cname\u201d is the key and \u201cJason\u201d is the value associated with that key.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is XML?<\/h2>\n\n\n\n<p>XML, or <a href=\"https:\/\/careerkarma.com\/blog\/what-is-xml\/\">eXtensible Markup Language<\/a>, is another method of sharing data.<br><\/p>\n\n\n\n<p>Like JSON, XML is widely used in <a href=\"https:\/\/careerkarma.com\/blog\/what-does-a-web-developer-do\/\">web development<\/a>. It is used to structure data that will be processed by other programs or web services.<br><\/p>\n\n\n\n<p>A common use case of XML is an RSS feed. In an RSS feed, information such as article and podcast metadata is stored in a feed. This information can be interpreted by a feed reader who turns the raw data into a functional application.<br><\/p>\n\n\n\n<p>Information in the JSON data format is stored with tags:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;\n&lt;root&gt;\n&lt;company&gt;\n\t\t&lt;name&gt;Career Karma&lt;\/name&gt;\n&lt;\/company&gt;\n&lt;\/root&gt;\n<\/pre><\/div>\n\n\n\n<p>Our data has two tags: root, company and name. The \u201cname\u201d tag is part of the \u201ccompany\u201d tag which tells us the \u201cname\u201d data point is related to the company tag in which it is enclosed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Advantages of JSON<\/h2>\n\n\n\n<p>JSON is incredibly easy to use. Because it is standard, there is vast support for storing and processing data in JSON. JavaScript, for instance, comes with built-in JSON support. The Python programming language has a built-in library to process JSON data.<br><\/p>\n\n\n\n<p>JSON data is easy to read. While this is not necessarily crucial because it is mainly processed by humans, the fact that the data is easy to read makes it easier for developers to work with. Data is easily readable because there is a clear and standard structure in a JSON file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Advantages of XML<\/h2>\n\n\n\n<p>You can define any XML tag you want. Unlike HTML, another markup language, you do not have to depend on a set of tags when you are using XML. This is because XML is used to describe data. Data can take many forms and no one set of labels describes every data set.<br><\/p>\n\n\n\n<p>XML markup, like JSON markup, is easy to read. This means if you are a developer working with XML, then it should not be too difficult to understand what data is being transmitted over an XML file.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JSON vs. XML<\/h2>\n\n\n\n<p>While JSON and XML both transmit data, they do so in very different ways.<br><\/p>\n\n\n\n<p>In JSON, data is mapped as keys and values. XML, on the other hand, depends on tags. You can choose whatever names you want for your keys in JSON and tags in XML. This is because every program has different data transmission needs.<br><\/p>\n\n\n\n<p>JSON is stored in a JSON object, which is widely supported by most <a href=\"https:\/\/careerkarma.com\/blog\/what-is-a-programming-language-2\/\">programming languages<\/a>. XML, on the other hand, requires a parser to interpret.<br><\/p>\n\n\n\n<p>This makes XML slightly more inaccessible because you have to learn how to use a parser to read the contents of a document into a program. With that said, once a parser has been set up, you will be ready to work with XML throughout an application.<br><\/p>\n\n\n\n<p>XML is more widely used to describe data. This is because it is a markup language. HTML, the markup language that determines the structure of a web page, describes to a browser exactly how a web page should be rendered. XML describes exactly what data is being transferred and how that data relates to each other.<br><\/p>\n\n\n\n<p>In both JSON and XML, data is human-readable and easy-to-understand. What\u2019s more is that both technologies are language-independent: you can use them with most major languages, even if you do need a parser to work with XML.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">When to Use JSON and XML<\/h2>\n\n\n\n<p>JSON is a good choice if you want to transmit data from a client to a server. JSON data is readily processed by most programming languages. This means that you will not have to do any data parsing on either the <a href=\"https:\/\/careerkarma.com\/blog\/client-vs-server-side-development\/\">client or the server side<\/a> after data has been sent.<br><\/p>\n\n\n\n<p>XML is good if you need to separate data from HTML.<br><\/p>\n\n\n\n<p>Whereas HTML is designed to describe how a web page should be structured, it does not always include the data that computers may need. In an XML file, you can mark up all the data a computer may need to work with an application.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Bottom Line<\/h2>\n\n\n\n<p>Both XML and JSON have their own use cases. XML is often used to share articles and podcasts over RSS or to describe data in a web application. JSON, on the other hand, is more commonly used to transmit data between clients and servers.<br><\/p>\n\n\n\n<p>As a programmer, you\u2019ll probably end up working with both of these data types at some point. JSON is generally learned before XML because it is easier to understand and has built-in support in many programming languages. If you need to describe a data set and JSON does not fulfill your requirements, XML may be an option.<br><\/p>\n","protected":false},"excerpt":{"rendered":"JSON and XML are used to share information over the internet. Both of these data types store information in a particular order where data is associated with a label or a tag. In this guide, we discuss what JSON and XML are and what they are used for. We\u2019ll walk through the pros and cons&hellip;","protected":false},"author":240,"featured_media":18039,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[50470],"tags":[],"class_list":{"0":"post-22747","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-tech-guides"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Coding","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>JSON vs. XML: A Comparison | Career Karma<\/title>\n<meta name=\"description\" content=\"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/json-vs-xml\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JSON vs. XML: A Comparison\" \/>\n<meta property=\"og:description\" content=\"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/json-vs-xml\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2020-09-17T01:19:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T12:00:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"James Gallagher\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"JSON vs. XML: A Comparison\",\"datePublished\":\"2020-09-17T01:19:46+00:00\",\"dateModified\":\"2023-12-01T12:00:09+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/\"},\"wordCount\":948,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/arnold-francisca-f77Bh3inUpE-unsplash.jpg\",\"articleSection\":[\"Tech Guides\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/\",\"name\":\"JSON vs. XML: A Comparison | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/arnold-francisca-f77Bh3inUpE-unsplash.jpg\",\"datePublished\":\"2020-09-17T01:19:46+00:00\",\"dateModified\":\"2023-12-01T12:00:09+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/arnold-francisca-f77Bh3inUpE-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/arnold-francisca-f77Bh3inUpE-unsplash.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/json-vs-xml\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Coding\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/code\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JSON vs. XML: A Comparison\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/01\\\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/jamesgallagher\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"JSON vs. XML: A Comparison | Career Karma","description":"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.","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:\/\/careerkarma.com\/blog\/json-vs-xml\/","og_locale":"en_US","og_type":"article","og_title":"JSON vs. XML: A Comparison","og_description":"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.","og_url":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-09-17T01:19:46+00:00","article_modified_time":"2023-12-01T12:00:09+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"JSON vs. XML: A Comparison","datePublished":"2020-09-17T01:19:46+00:00","dateModified":"2023-12-01T12:00:09+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/"},"wordCount":948,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg","articleSection":["Tech Guides"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/json-vs-xml\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/","url":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/","name":"JSON vs. XML: A Comparison | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg","datePublished":"2020-09-17T01:19:46+00:00","dateModified":"2023-12-01T12:00:09+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"Both JSON and XML are used to transmit data. On Career Karma, learn about the similarities and differences between JSON and XML.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/json-vs-xml\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/arnold-francisca-f77Bh3inUpE-unsplash.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/json-vs-xml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Coding","item":"https:\/\/careerkarma.com\/blog\/code\/"},{"@type":"ListItem","position":3,"name":"JSON vs. XML: A Comparison"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22747","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=22747"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/22747\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18039"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=22747"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=22747"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=22747"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}