{"id":29403,"date":"2021-03-01T09:52:36","date_gmt":"2021-03-01T17:52:36","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29403"},"modified":"2021-03-29T04:03:23","modified_gmt":"2021-03-29T11:03:23","slug":"java-could-not-find-main","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/","title":{"rendered":"Java: Could Not Find Or Load Main Class"},"content":{"rendered":"\n<p>When working with Java, the final execution of code happens via pre-compiled classes. Once you write a class in Java, the compiler converts your high-level source code into a low-level scheme called bytecode. For each class that you write, an instance of a pre-compiled bytecode is generated. This bytecode contains the low-level code that can be run on a Java Virtual Machine.&nbsp;<br><\/p>\n\n\n\n<p>However, sometimes you might have come across a situation in which running the java terminal command returns something like: <code>could not find or load main class<\/code>. This indicates that there is some issue with your class\u2019s bytecode. But, how do you fix it? Let\u2019s find out.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What Does \u2018could not find or load main class\u2019 Mean?<\/h2>\n\n\n\n<p>The error <code>could not find or load main class<\/code> indicates that there are some issues with your code design. It usually occurs when you run a command like the following on your terminal to run a Java program:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>java Test<\/pre><\/div>\n\n\n\n<p>Here, \u201cTest\u201d is the name of the class that contains your code that has to be executed. If you face a <code>could not find or load main class<\/code> error, it means that the bytecode for the Test class could not be found.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Fix \u2018could not find or load main class\u2019 Error?<\/h2>\n\n\n\n<p>There are several ways in which you can fix the error. Here are some of the top ways to identify and fix <code>could not find or load main class<\/code>:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Check For Typos<\/h3>\n\n\n\n<p>The first probable cause of this error might be a typing mistake. Since the syntax of the program call consists of only two keywords \u2014 \u201cjava\u201d and class name \u2014 the only place where you can make a mistake is the class name. If you were to make a typo in the keyword, you would receive an obvious \u201ccommand not found\u201d error on the command line.&nbsp;<br><\/p>\n\n\n\n<p>You can try double-checking the class name for typing mistakes. More often than not, such errors originate from silly spelling and typing mistakes.<br><\/p>\n\n\n\n<p>Let\u2019s say you wrote a class called \u201cTest\u201d in the file \u201cTest.java\u201d. This is how you would normally compile it via the command line:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>javac Test.java<\/pre><\/div>\n\n\n\n<p>And then you would execute it by running the following command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>java Test<\/pre><\/div>\n\n\n\n<p>This should run your program just fine. However, if you misspelled \u201cTest\u201d in the above command, you might face a <code>Could not find or load main class<\/code> error.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Incorrect Classpath in Application<\/h3>\n\n\n\n<p>There are multiple ways in which an application\u2019s classpath can cause this error. The classpath (written as CLASSPATH) is an environment variable that points to the location where user classes are stored in the system. The directory that the classpath points to contains multiple pre-written classes that you can directly import in your code.<br><\/p>\n\n\n\n<p>Let\u2019s say you wrote the following import command:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Import org.company.Foo;<\/pre><\/div>\n\n\n\n<p>Running this will make the JVM look for the \u201cFoo\u201d class at the location &lt;classpath&gt;\/org\/company\/Foo.java. As you can see, if the classpath points to the wrong address, JVM will never be able to find the class that you are looking for, and hence throw the <code>could not find or load main class<\/code> error.<br><\/p>\n\n\n\n<p>Sometimes, the classpath might not contain all system classes that your program depends upon. This means that maybe you are trying to include a class from a package that you haven\u2019t downloaded or set-up yet. In that case too, you will face this error.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">The Class Has Been Declared In The Wrong Package<\/h3>\n\n\n\n<p>If the package written on top of your source code file does not point to the package\/module that the class has been declared in. Most IDEs can help you figure this out very easily by showing an error in the linting process. However, if it slips the eye, it will cause the above error.<br><\/p>\n\n\n\n<p>The best solution to this issue is to always check that the package name of a class points to the correct package. If you use an advanced IDE like IntelliJ or VSCode, make sure to enable linting for this issue.<br><\/p>\n\n\n\n<p>For instance, take the example of the following class stored at project\/src\/com\/foo\/bar:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>package com.foo.baz;\nclass Bar {\n  \/\/ Some code here\n}<\/pre><\/div>\n\n\n\n<p>As you can see, the package points to com\/foo\/baz while the class is actually stored in com\/foo\/bar. To fix this, you need to update the package statement to point to the right package:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>package com.foo.bar;\nclass Bar {\n  \/\/ Some code here\n}<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article, we took a look at what <code>Could not find or load main class<\/code> is in Java, and why it occurs. Then, we concluded our discussion by identifying some of the top ways to fix a <code>Could not find or load main class<\/code> error.<br><\/p>\n\n\n\n<p>If you are looking to write programs in Java, this error may pop up from time to time.&nbsp;<\/p>\n\n\n\n<p>While the error message might seem quite terrifying, it is not too difficult to solve. All you need to do is to check if the class that you are looking for is in the right location or not.<\/p>\n","protected":false},"excerpt":{"rendered":"When working with Java, the final execution of code happens via pre-compiled classes. Once you write a class in Java, the compiler converts your high-level source code into a low-level scheme called bytecode. For each class that you write, an instance of a pre-compiled bytecode is generated. This bytecode contains the low-level code that can&hellip;","protected":false},"author":113,"featured_media":29404,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17289],"tags":[],"class_list":{"0":"post-29403","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-java"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"Java","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.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Java: Could Not Find Or Load Main Class | Career Karma<\/title>\n<meta name=\"description\" content=\"If you write programs in Java, you must have stumbled across a &quot;could not find a main class&quot; error. Read along to find out why it happens, what does it indicate, and how to fix it!\" \/>\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\/java-could-not-find-main\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Java: Could Not Find Or Load Main Class\" \/>\n<meta property=\"og:description\" content=\"If you write programs in Java, you must have stumbled across a &quot;could not find a main class&quot; error. Read along to find out why it happens, what does it indicate, and how to fix it!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\" \/>\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=\"2021-03-01T17:52:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-03-29T11:03:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"768\" \/>\n\t<meta property=\"og:image:height\" content=\"908\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Kumar Harsh\" \/>\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=\"Kumar Harsh\" \/>\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:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\"},\"author\":{\"name\":\"Kumar Harsh\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400\"},\"headline\":\"Java: Could Not Find Or Load Main Class\",\"datePublished\":\"2021-03-01T17:52:36+00:00\",\"dateModified\":\"2021-03-29T11:03:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\"},\"wordCount\":782,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg\",\"articleSection\":[\"Java\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\",\"name\":\"Java: Could Not Find Or Load Main Class | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg\",\"datePublished\":\"2021-03-01T17:52:36+00:00\",\"dateModified\":\"2021-03-29T11:03:23+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400\"},\"description\":\"If you write programs in Java, you must have stumbled across a \\\"could not find a main class\\\" error. Read along to find out why it happens, what does it indicate, and how to fix it!\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg\",\"width\":768,\"height\":908,\"caption\":\"A white notebook on a MacBook\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Java\",\"item\":\"https:\/\/careerkarma.com\/blog\/java\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Java: Could Not Find Or Load Main Class\"}]},{\"@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\/c34979f56af7fa3dfafc6ab2aa4ac400\",\"name\":\"Kumar Harsh\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg\",\"caption\":\"Kumar Harsh\"},\"description\":\"Kumar is a young technical writer, covering topics like JavaScript, Python, Ruby and Web Performance. He is currently working towards a bachelors degree in Computer Science and Engineering at National Institute of Technology Patna. Along with writing, he has also worked in software development roles with several start-ups and corporations alike. He joined the Career Karma team in January 2021.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/kumar-harsh\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Java: Could Not Find Or Load Main Class | Career Karma","description":"If you write programs in Java, you must have stumbled across a \"could not find a main class\" error. Read along to find out why it happens, what does it indicate, and how to fix it!","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\/java-could-not-find-main\/","og_locale":"en_US","og_type":"article","og_title":"Java: Could Not Find Or Load Main Class","og_description":"If you write programs in Java, you must have stumbled across a \"could not find a main class\" error. Read along to find out why it happens, what does it indicate, and how to fix it!","og_url":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-03-01T17:52:36+00:00","article_modified_time":"2021-03-29T11:03:23+00:00","og_image":[{"width":768,"height":908,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg","type":"image\/jpeg"}],"author":"Kumar Harsh","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Kumar Harsh","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/"},"author":{"name":"Kumar Harsh","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400"},"headline":"Java: Could Not Find Or Load Main Class","datePublished":"2021-03-01T17:52:36+00:00","dateModified":"2021-03-29T11:03:23+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/"},"wordCount":782,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg","articleSection":["Java"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/","url":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/","name":"Java: Could Not Find Or Load Main Class | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg","datePublished":"2021-03-01T17:52:36+00:00","dateModified":"2021-03-29T11:03:23+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/c34979f56af7fa3dfafc6ab2aa4ac400"},"description":"If you write programs in Java, you must have stumbled across a \"could not find a main class\" error. Read along to find out why it happens, what does it indicate, and how to fix it!","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/03\/tracy-adams-TEemXOpR3cQ-unsplash.jpg","width":768,"height":908,"caption":"A white notebook on a MacBook"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/java-could-not-find-main\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Java","item":"https:\/\/careerkarma.com\/blog\/java\/"},{"@type":"ListItem","position":3,"name":"Java: Could Not Find Or Load Main Class"}]},{"@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\/c34979f56af7fa3dfafc6ab2aa4ac400","name":"Kumar Harsh","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Kumar-Harsh-150x150.jpg","caption":"Kumar Harsh"},"description":"Kumar is a young technical writer, covering topics like JavaScript, Python, Ruby and Web Performance. He is currently working towards a bachelors degree in Computer Science and Engineering at National Institute of Technology Patna. Along with writing, he has also worked in software development roles with several start-ups and corporations alike. He joined the Career Karma team in January 2021.","url":"https:\/\/careerkarma.com\/blog\/author\/kumar-harsh\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29403","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\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29403"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29403\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/29404"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29403"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29403"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29403"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}