{"id":19127,"date":"2020-07-06T23:11:11","date_gmt":"2020-07-07T06:11:11","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19127"},"modified":"2023-12-01T03:39:13","modified_gmt":"2023-12-01T11:39:13","slug":"what-is-xml","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/what-is-xml\/","title":{"rendered":"What Is XML?"},"content":{"rendered":"\n<p>PDF. JSON. DOC. Those are three of the many different ways in which data is stored on computers. Another one that you might have seen is XML.<br><\/p>\n\n\n\n<p>If you look around your computer, you\u2019ve probably got a few XML files lying around. But what do they do?<br><\/p>\n\n\n\n<p>In this guide, we\u2019re going to discuss what XML is and why it is used. We\u2019ll also walk through an example of an XML file to show how it works in action.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Markup Languages: A Brief Introduction<\/h2>\n\n\n\n<p>Before you can understand how XML data works, we\u2019ve got to take a step back and ask ourselves: <a href=\"https:\/\/careerkarma.com\/blog\/markup-language\/\">what is a markup language<\/a>? Markup languages allow you to add annotations or additional information to a piece of text. These are invisible to the user, but are read by the computer before the piece of text is processed.<br><\/p>\n\n\n\n<p>One way to think of markup languages is like how teachers \u201cmark up\u201d student homework assignments. They will use a pen to describe how students should improve their work. What the teacher writes on the homework assignment is merely additional information; it\u2019s not actually part of what the student submitted.<br><\/p>\n\n\n\n<p>Perhaps the most well-known example of a markup language is HTML. HTML describes how a website should be laid out, but you\u2019ll never see it unless you look for the raw code. Your browser turns HTML into a pretty, formatted web page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is XML?<\/h2>\n\n\n\n<p>eXtensible Markup Language (XML) defines a particular type of data and how it should be structured. XML is a markup language for the internet and is often used in computer programming languages. It\u2019s derived from another language called the Standard Generalized Markup Languages (SGML), which is the king of the castle when it comes to markup.<br><\/p>\n\n\n\n<p>XML is commonly used to describe data. For instance, it may store information about a set of blog posts, a set of files on your computer, or a list of recipes in a recipe book application. Data is stored in a simple text format using tags.<br><\/p>\n\n\n\n<p>XML is self-descriptive. This is because the structure of the data is associated with the data itself.<br><\/p>\n\n\n\n<p>Unlike a database, you don\u2019t need to build a separate structure to read the file. All the information you need is already available. Consider the following example of XML syntax:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;?xml version=\"1.0\"&gt;\n&lt;post&gt;\n\t&lt;title&gt;What is XML?&lt;\/title&gt;\n\t&lt;by&gt;James Gallagher&lt;\/by&gt;\n\t&lt;slug&gt;\/blog\/what-is-xml&lt;\/slug&gt;\n&lt;\/post&gt;<\/pre><\/div>\n\n\n\n<p>This is a piece of code that stores data about this blog post. You\u2019ll see that the post is enclosed within a <code>&lt;post&gt;<\/code> tag, and each piece of data about the post has its own tag. Every tag has an obvious name that describes what data it holds. XML tags look similar to HTML tags.<br><\/p>\n\n\n\n<p>This code doesn\u2019t do anything. You can\u2019t run this file. XML is information stored within tags, and you must write a program in order to use the data you have stored.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Does XML Work?<\/h2>\n\n\n\n<p>The most basic component of a document is an element. These elements have both a beginning and a closing tag and contain a particular piece of content. All elements inside a document are contained within a single, root element.<br><\/p>\n\n\n\n<p>From our above example, <code>&lt;post&gt;<\/code> was our root element. It contains all the tags with data on our blog post. <code>&lt;title&gt;<\/code>, <code>&lt;by&gt;<\/code>, and <code>&lt;slug&gt;<\/code> are also elements. These give us specific pieces of information about the data stored in our document.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Tags Can I Use?<\/h2>\n\n\n\n<p>You can use whatever attributes you want! That\u2019s right: XML doesn\u2019t have any restrictions on what you should call your tags. This is because the primary intention of the language was to provide a way to easily markup data.<br><\/p>\n\n\n\n<p>No two use cases are the same, so you need to be able to create your own tags.&nbsp;<br><\/p>\n\n\n\n<p>The syntax for this data structure resembles that of HTML. Both these technologies use a tag-based syntax in their document types. When you are writing an XML document, all you need to do is define your data within tags. You don\u2019t need to specify data types; an XML reader will handle processing those data types if you intend to read the data you have stored.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Is XML Used For?<\/h2>\n\n\n\n<p>XML is everywhere on computers. Earlier on, we mentioned that you\u2019ve probably come across an XML file at some point on your computer. We started this because XML is used commonly by applications like Microsoft Office to store data about files.<br><\/p>\n\n\n\n<p>XML is used commonly for keeping track of metadata\u2014data about data\u2014on websites and for software applications. The advantage of storing this metadata in this format is that it can be easily exported, imported, or read across platforms. XML is a standard, so it\u2019s platform-independent.<br><\/p>\n\n\n\n<p>You\u2019ll find that there are a lot of other markup languages based on it. XHTML, RSS, and WAP all use the XML structure.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How Do You Open an XML File?<\/h2>\n\n\n\n<p>XML stores data in plain text. This means that you can open a file with any text editor that you have installed. All you have to do is double click on a file to open it up or right-click and choose a program with which to open the file.<br><\/p>\n\n\n\n<p>Most Integrated Development Environments (IDEs) used by software developers to create code support reading this language. Many of them also include tools to help you better structure your tags, such as changing the color of tags if there are errors.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Wrapping Up<\/h2>\n\n\n\n<p>XML may not be as popular as it used to be\u2014JSON, another type of data, has largely taken over in many modern applications\u2014but it\u2019s still foundational to the web. A strong standard, XML provides an easy way to store data. Its simple, tag-based structure makes it easy to read and because it is a standard, there are plenty of readers out there that can help you interpret it.<br><\/p>\n\n\n\n<p>Now you\u2019re ready to start talking about XML like a professional developer!<\/p>\n","protected":false},"excerpt":{"rendered":"PDF. JSON. DOC. Those are three of the many different ways in which data is stored on computers. Another one that you might have seen is XML. If you look around your computer, you\u2019ve probably got a few XML files lying around. But what do they do? In this guide, we\u2019re going to discuss what&hellip;","protected":false},"author":240,"featured_media":17625,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[18070],"tags":[],"class_list":{"0":"post-19127","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-software-engineering-skills"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"What is a {technical term}","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":"","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>What Is XML?: A Complete Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.\" \/>\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\/what-is-xml\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What Is XML?\" \/>\n<meta property=\"og:description\" content=\"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/what-is-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-07-07T06:11:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T11:39:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-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\\\/what-is-xml\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"What Is XML?\",\"datePublished\":\"2020-07-07T06:11:11+00:00\",\"dateModified\":\"2023-12-01T11:39:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/\"},\"wordCount\":995,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"articleSection\":[\"Software Engineering\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/\",\"name\":\"What Is XML?: A Complete Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"datePublished\":\"2020-07-07T06:11:11+00:00\",\"dateModified\":\"2023-12-01T11:39:13+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/05\\\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"A person writing lines of code on a laptop\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/what-is-xml\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Software Engineering\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/software-engineering-skills\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"What Is XML?\"}]},{\"@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":"What Is XML?: A Complete Guide | Career Karma","description":"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.","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\/what-is-xml\/","og_locale":"en_US","og_type":"article","og_title":"What Is XML?","og_description":"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.","og_url":"https:\/\/careerkarma.com\/blog\/what-is-xml\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-07T06:11:11+00:00","article_modified_time":"2023-12-01T11:39:13+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-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\/what-is-xml\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"What Is XML?","datePublished":"2020-07-07T06:11:11+00:00","dateModified":"2023-12-01T11:39:13+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/"},"wordCount":995,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","articleSection":["Software Engineering"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/what-is-xml\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/","url":"https:\/\/careerkarma.com\/blog\/what-is-xml\/","name":"What Is XML?: A Complete Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","datePublished":"2020-07-07T06:11:11+00:00","dateModified":"2023-12-01T11:39:13+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"XML is a markup language that defines a particular type of data and how it should be structured. On Career Karma, learn about XML and how it works.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/what-is-xml\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/danial-ricaros-FCHlYvR5gJI-unsplash.jpg","width":1020,"height":680,"caption":"A person writing lines of code on a laptop"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/what-is-xml\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Software Engineering","item":"https:\/\/careerkarma.com\/blog\/software-engineering-skills\/"},{"@type":"ListItem","position":3,"name":"What Is XML?"}]},{"@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\/19127","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=19127"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19127\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17625"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19127"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19127"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19127"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}