{"id":25535,"date":"2026-09-05T02:45:06","date_gmt":"2026-09-04T23:45:06","guid":{"rendered":"https:\/\/alienroad.com\/google-bilgi-bankasi\/software-app-softwareapplication-structured-data\/"},"modified":"2026-09-05T02:45:06","modified_gmt":"2026-09-04T23:45:06","slug":"software-app-softwareapplication-structured-data","status":"publish","type":"ar_kb","link":"https:\/\/alienroad.com\/google-bilgi-bankasi\/software-app-softwareapplication-structured-data\/","title":{"rendered":"Software app (SoftwareApplication) structured data"},"content":{"rendered":"<p>Mark up software application information in the body of a web page to better display your app<br \/>\n      details in Google Search results.<\/p>\n<p><img decoding=\"async\" class=\"screenshot\" src=\"https:\/\/alienroad.com\/wp-content\/uploads\/kb-gorsel\/g-cc8892e60108.png\" loading=\"lazy\"\n         alt=\"Software application rich result in Google Search results\"\/><\/p>\n<aside class=\"note\">\n      <b>Note<\/b>: The actual appearance in search results might be different. You can<br \/>\n      preview most features with the<br \/>\n      <a href=\"https:\/\/support.google.com\/webmasters\/answer\/7445569\" class=\"external-link\">Rich Results Test<\/a>.<br \/>\n    <\/aside>\n<h2 id=\"add-structured-data\" tabindex=\"-1\">\n    How to add structured data<br \/>\n  <\/h2>\n<p>\n    Structured data is a standardized format for providing information about a page and classifying the page<br \/>\n    content. If you&#8217;re new to structured data, you can learn more about<br \/>\n    <a href=\"https:\/\/alienroad.com\/google-bilgi-bankasi\/structured-data-intro\/\">how structured data works<\/a>.\n    <\/p>\n<p>\n    Here&#8217;s an overview of how to build, test, and release structured data.<\/p>\n<ol>\n<li>Add the <a href=\"#structured-data-type-definitions\">required properties<\/a>. Based on the<br \/>\n      format you&#8217;re using, learn where to <a href=\"https:\/\/alienroad.com\/google-bilgi-bankasi\/structured-data-intro\/#format-placement\">insert structured data on the page<\/a>.<\/p>\n<aside class=\"note\">\n      <b>Using a CMS?<\/b> It may be easier to use a plugin that&#8217;s integrated into your CMS.<br \/>\n      <br \/>\n      <b>Using JavaScript?<\/b> Learn how to<br \/>\n      <a href=\"https:\/\/alienroad.com\/google-bilgi-bankasi\/generate-structured-data-with-javascript\/\">generate structured data with JavaScript<\/a>.<\/aside>\n<\/li>\n<li>Follow the <a href=\"#guidelines\">guidelines<\/a>.<\/li>\n<li>Validate your code using the<br \/>\n      <a href=\"https:\/\/search.google.com\/test\/rich-results\" class=\"external-link\">Rich Results Test<\/a><br \/>\n      and fix any critical errors. Consider also fixing any non-critical issues that may be flagged<br \/>\n      in the tool, as they can help improve the quality of your structured data (however, this isn&#8217;t necessary to be eligible for rich results). <\/li>\n<li>Deploy a few pages that include your structured data and use the <a href=\"https:\/\/support.google.com\/webmasters\/answer\/9012289\" class=\"external-link\">URL Inspection tool<\/a> to test how Google sees the page. Be sure that your page is<br \/>\n      accessible to Google and not blocked by a robots.txt file, the <code>noindex<\/code> tag, or<br \/>\n      login requirements. If the page looks okay, you can<br \/>\n      <a href=\"https:\/\/alienroad.com\/google-bilgi-bankasi\/recrawl-request\/\" class=\"external-link\">ask Google to recrawl your URLs<\/a>.<\/p>\n<aside class=\"note\"><b>Note<\/b>: Allow time for re-crawling and re-indexing. Remember that it<br \/>\n      may take several days after publishing a page for Google to find and crawl it.<\/aside>\n<\/li>\n<li>To keep Google informed of future changes, we recommend that you<br \/>\n      <a href=\"https:\/\/alienroad.com\/google-bilgi-bankasi\/build-submit-sitemap\/\" class=\"external-link\">submit a sitemap<\/a>. You can automate this with the<br \/>\n      <a href=\"https:\/\/developers.google.com\/webmaster-tools\/v1\/sitemaps\" class=\"external-link\">Search Console Sitemap API<\/a>.<\/li>\n<\/ol>\n<h2 id=\"examples\" tabindex=\"-1\">Examples<\/h2>\n<section class=\"kd-tabbed-horz\" id=\"horzTab\">\n<article class=\"selected\">\n<header>JSON-LD<\/header>\n<p>Here&#8217;s an example of a software app in JSON-LD:<\/p>\n<form method=\"post\" target=\"_blank\" action=\"https:\/\/search.google.com\/test\/rich-results?utm_campaign=devsite&#038;utm_medium=jsonld&#038;utm_source=software-app\"><input type=\"submit\" value=\"Try it out in the Rich Results Test\" \/><textarea name=\"code_snippet\" style=\"display:none\">&lt;html&gt;<br \/>\n  &lt;head&gt;<br \/>\n    &lt;title&gt;Angry Birds&lt;\/title&gt;<br \/>\n    &lt;script type=&#8221;application\/ld+json&#8221;&gt;<br \/>\n    {<br \/>\n      &#8220;@context&#8221;: &#8220;https:\/\/schema.org&#8221;,<br \/>\n      &#8220;@type&#8221;: &#8220;SoftwareApplication&#8221;,<br \/>\n      &#8220;name&#8221;: &#8220;Angry Birds&#8221;,<br \/>\n      &#8220;operatingSystem&#8221;: &#8220;ANDROID&#8221;,<br \/>\n      &#8220;applicationCategory&#8221;: &#8220;GameApplication&#8221;,<br \/>\n      &#8220;aggregateRating&#8221;: {<br \/>\n        &#8220;@type&#8221;: &#8220;AggregateRating&#8221;,<br \/>\n        &#8220;ratingValue&#8221;: 4.6,<br \/>\n        &#8220;ratingCount&#8221;: 8864<br \/>\n      },<br \/>\n      &#8220;offers&#8221;: {<br \/>\n        &#8220;@type&#8221;: &#8220;Offer&#8221;,<br \/>\n        &#8220;price&#8221;: 1.00,<br \/>\n        &#8220;priceCurrency&#8221;: &#8220;USD&#8221;<br \/>\n      }<br \/>\n    }<br \/>\n    &lt;\/script&gt;<br \/>\n  &lt;\/head&gt;<br \/>\n  &lt;body&gt;<br \/>\n  &lt;\/body&gt;<br \/>\n&lt;\/html&gt;<\/textarea><\/form>\n<p><\/p>\n<div><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Learn how to add software application schema to a web page so you can better display your app details in Google Search.<\/p>\n","protected":false},"menu_order":109,"template":"","meta":{"footnotes":""},"ar_kb_kategori":[679],"ar_kb_etiket":[],"class_list":["post-25535","ar_kb","type-ar_kb","status-publish","has-post-thumbnail","hentry","ar_kb_kategori-feature-guides"],"_links":{"self":[{"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/ar_kb\/25535","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/ar_kb"}],"about":[{"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/types\/ar_kb"}],"version-history":[{"count":0,"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/ar_kb\/25535\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/media\/27565"}],"wp:attachment":[{"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/media?parent=25535"}],"wp:term":[{"taxonomy":"ar_kb_kategori","embeddable":true,"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/ar_kb_kategori?post=25535"},{"taxonomy":"ar_kb_etiket","embeddable":true,"href":"https:\/\/alienroad.com\/wp-json\/wp\/v2\/ar_kb_etiket?post=25535"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}