What are structured data errors recorded in Google Search Console?

このサイトを検索 | Search this site
,Google
Sashimi300x169.jpg
What are structured data errors recorded in Google Search Console?
Thank you for accessing.

This article has been removed.

The content of this blog can be searched by keyword.

Use the search window in the sidebar or at the top. Alternatively, please translate the original article using Google or other means.

Please find alternative content.



Remnants of articles that had been published

Structured data errors and causes

Google Search Console> How it looks in search> Structured data

When viewing structured data in Google Search Console, there were errors in 272 items. What on earth is this?

Structured data

What is structured data?

Structured data is what tagged the search engines and other crawlers to understand what information written in HTML means.

The Awesome Inc. template of Blogger that we are using has the following description.

  • class = 'hentry'
  • http://schema.org/BlogPosting

This declares that the HTML syntax generated by the Awesome Inc. template conforms to the structured data standard: schema.org, syntax: microformats.org (hentry). Search engines and crawlers look for the corresponding field, meta tag and index.

schema.org

Google, yahoo !, a leading Microsoft search engine company are collaborating and the number of values is being expanded every day.

microformats.org

Since Google recommends Microdata, hentry attribute seems to be described.

Cause of structured data error

The Awesome Inc. template is considered to be missing fields and meta tags that are required for schema.org, microformats.org.

What are the adverse effects of structured data errors?

We see the view that there is no adverse effect of structured data errors, but Google's explanation says that using structured data can incorporate rich features into search results.
Errors in structured data do not usually adversely affect Google crawling, indexing, ranking. You can leave it alone and ignore it.
Google Product Forum

Google is pursuing the following benefits.

In Google search, if you understand the content of the page or if you explicitly specify additional information in the page code using structured data, you can incorporate rich features into the search results.
Google Developers

Is repair necessary?

By writing the web page with the minimum HTML tag, the browser can understand the syntax and display it.

Structured data is a standard established for search engines and crawlers, and it is considered that there is no effect on SEO even if a structured data error has occurred, so the necessity of restoration is considered to be low I will.

Users of Awesome Inc. templates are all supposed to have structured errors, so it's a good idea to wait until the template is available.

As a practical matter, in order to repair the structured data error, we have to modify the template, taking the Awesome Inc. template as an example, from the HTML code with more than 3,000 lines we specify the location to be appended to the standard It is necessary to add corresponding field and markup. Hurdles are expensive for those who have never written HTML.

Example of repairing structured data errors

I attempted to repair as I was curious whether it could completely deter the detection of structured errors.

The following is a trial and error note.

Template backup

Back up the Awesome Inc. template before entering the repair work. The way to do is as follows.

  1. Blogger> Themes> HTML editing
  2. Click on HTML to activate it
  3. Use Ctrl + A to select the whole, then press Ctrl + c to copy
  4. Paste into text editor with Ctrl + v
  5. Save it after naming it
  6. end

Passive coping method

By deleting attribute information on schema.org, microformats.org (hentry), no error will be detected. However, the possibility that the search engine incorrectly recognizes the posted content remains.

Specifically, searching hentry with Awesome Inc. template hits the following syntax, so delete all attributes related to schema.org and hentry.
Before correction:
<div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>

Revised:
<div class='post uncustomized-post-template' >

Field name to be excluded from detection

Required fields, errors in recommended fields are no longer detected. Vocabulary and description of syntax are deleted, which is a natural result
Field name
Required fieldauthor, datePublished, headline, publisher
Recommended FielddateModified, mainEntityOfPage
hentry related error

Google specific errors are handled individually

Google specific errors
image_urlFor BlogPosting objects the property image_url is not recognized by Google.

Workaround

Searching templates with image_url hits in two places, so rename to image.
Before correction:
<meta expr:content='data:post.thumbnailUrl' itemprop='image_url'/>
<meta expr:content='data:post.firstImageUrl' itemprop='image_url'/>
Revised:
<meta expr:content='data:post.thumbnailUrl' itemprop='image'/>
<meta expr:content='data:post.firstImageUrl' itemprop='image'/>

Aggressive repair methods

Schema.org, microformats.org (hentry) It is a way to add meta tags missing from the template, leaving the attribute as it is.

The following procedure is limited to the Awesome Inc. template, but there is a possibility that it can be applied to Blogger users.

Find places to add

Blogger> Themes> HTML editing

  1. Show template HTML
  2. Search with hentry

In our Awesome Inc. template it was found on line 2019. I think that you can find it with a slightly younger line number if you have an initial template.

Add structured data (schema) from the next line of tag with hentry attribute.

What tags will you add?

Add the field that Google Search Console detected errors. In our environment all errors are no longer detected by the following description.

Additional example

Copy is not recommended as the following code contains information specific to this site.
<div class='post hentry uncustomized-post-template' itemprop='blogPost' itemscope='itemscope' itemtype='http://schema.org/BlogPosting'>
<!-- 追記ここから -->
<div style='display:none'>
<meta content='data:post.link : data:post.url' expr:itemid='data:post.link' itemType='https://schema.org/WebPage' itemprop='mainEntityOfPage' itemscope='itemscope'/>
<!-- 公開日の定義 -->
  <span class='published' itemprop='datePublished'><data:post.timestampISO8601/></span>
<!-- 更新日の定義 -->
  <span class='updated' itemprop='dateModified'><data:post.lastUpdatedISO8601/></span>
<!-- authorの定義 -->
  <span itemprop='author'><data:post.author/></span>
<!-- nameの定義 -->
  <span itemprop='name'><data:post.author/></span>
<!-- headlineの定義 -->
  <span itemprop='headline'><data:post.title/></span>
<!-- publisherの定義 -->
  <div itemprop='publisher' itemscope='itemscope' itemtype='https://schema.org/Organization'>
    <span itemprop='name'><data:blog.title/></span>
    <span itemprop='logo' itemscope='itemscope' itemtype='https://schema.org/ImageObject'>
      <span itemprop='url'>https://kzstock.blogspot.com/</span>
          <meta content='horizontal' itemprop='width'/>
          <meta content='vertical' itemprop='width'/>
      </span> 
  </div>
<!-- imageの定義 -->
<div itemprop='image' itemscope='' itemtype='https://schema.org/ImageObject'>
  <img alt='3' height='3' src='https://kzstock.blogspot.com/' width='3'/>
  <meta content='https://kzstock.blogspot.com/' itemprop='url'/>
  <meta content='3' itemprop='width'/>
  <meta content='3' itemprop='height'/>
</div>
</div>

<!-- 追記おわり -->

What is schema.org?

Q: Why do I need to add markup? What will I get from then? How is the data used?
Search engines use markup on the page in various ways. With these projects, you can display the content more clearly in the search results. Not all types of information on schema.org are displayed in search results. You can find specific uses by referring to the documents of each company, but you can expect that more data will be used more over time. In addition, since markups are publicly accessible from your web page, other organizations can find new ways of interest as well.
Q: Do I need to mark up all the properties?
It is OK to mark up only some properties of the item. Markup is not a choice whether it's all or not. However, marking up as much content as possible helps the search engine use your information to present the page in the most useful way to the user. As a general rule, please mark up only the content that is displayed to the user who visited the web page, and not mark up the content on the hidden div or other hidden page elements.
FAQ - schema.org

 Ninja
  1. How to avoid the problem that Synaptics Mouse 19.0.19.13 is detected repeatedly by Windows Update
  2. Can I delete the MATS folder?
  3. If the uninstall process stops, try using Microsoft easy fix
  4. Delete unknown account in local user profile | Windows 7
  5. How to delete an unknown account
  6. Installing and using YouTube Video Downloader
  7. Summary of measures against videos that cannot be downloaded
  8. The Fukuoka University NTP server will stop!
  9. How to set up a public NTP server on your PC
  10. Tab Explorer with QTTabBar
  11. EagleGet Installation Procedure v2.0.4.30 Stable
  12. [Code: 80072EE2] Windows Update
  13. GIMP Installation Procedure v2.10.14
  14. Chrome error code 0x80070005
  15. Checking for updates ... Windows Update
  16. Eagleget spy module
  17. How to remove suspicious service bundled with EagleGet
  18. What generic keys might be used for a free Windows 10 upgrade?
  19. [3/3] Alchohol 52% FE SFA removal procedure
  20. How to change Chrome autoplay-policy to block autoplay conditions for videos
  21. 5KPLAYER.com software...!
  22. What to try when UMDF does not show up in Windows Service
  23. Loseless cut m4a with Audio MP3 Editor
  24. Free Audio Converter software found to register services without permission
  25. How to fix Runtime Error that interferes with CubePDF installation
  26. Remove SOME SETTINGS ARE MANAGED BY THE ORGANIZATION
  27. How to install Anti-Adblock Killer
  28. What is the relationship between Nano Defender and ad blockers?
  29. How to slim down a bloated DataStore folder
  30. If you can not change the default app, check the registry | for Windows 7
  31. What to do when Chrome repeatedly asks you to restart it when you update it
  32. How to repair MP3 files to restore normal time display
  33. Revival! Stream Recorder
  34. Be careful of option check when installing EagleGet
  35. Things to try when the start menu stops responding
  36. The rank of all professional shogi players is confirmed
  37. Checkpoint when the Amazon Fire TV Stick Wi-Fi link is broken
  38. What is the identity of User_Feed_Synchronization in the Task Scheduler?
  39. Can I press [Yes] for the DCOM configuration warning caused by igfxSDK.exe?
  40. How to use FilterProxy (Android local proxy server)
  41. Keyboard Indicator Release Information v1.6.2.0
  42. How to hide Administrator from the sign-in screen
  43. [Robin] Steps to downgrade from Android 7.0 to 6.0.1
  44. How to remove the traces of Wondershare Player
  45. DPI setting when using WinShot on Windows 10
  46. Snipping Tool feature comparison (Windows 10 and 7)
  47. How to use DISM and SFC
  48. IrfanView 4.51 installation procedure
  49. How to deal with the problem that JPG/PNG association is reset after IrfanView update
  50. What are structured data errors recorded in Google Search Console?
  51. 【Anti-WebMinor】Block mining scripts such as Bitcoin
  52. What to do if you can not copy and paste in Google Sheets
  53. Instructions for installing TClock Light
  54. How to get the Ruler Bar to work
  55. How to disable Thunderbird 72-byte line breaks
  56. How to Remove Xbox App from Windows 10
  57. How to remove Spotify
  58. How to switch from Feedly to Inoreader
  59. How to delete remnants of notification area icon
  60. How to create a batch file that deletes suspicious services registered by EagleGet
  61. Screen capture anytime with Snip & Sketch
  62. There is a case that the UNKNOWN ACCOUNT of the registry key should not be deleted.
  63. Proxomitron - Ad cut with local proxy
  64. Raziko is back on Google Play! | Raziko 1.2.0267
  65. How to change the background of the login screen to Black (black)
  66. en[EVENT2484] Tile Database Corruption
  67. What is the cause of the Google Spreadsheet, Server Error Occurred...?
  68. Radicutter (β) v0.9.2 Area free deletion, but v0.9.1 APK can be downloaded
  69. How to disable Google Update
  70. MPC-BE 1.5.2.3148 beta Installation Procedure
  71. Revo Uninstaller Free New installation
  72. How to create a shortcut to launch Local Group Policy Editor
  73. Google Play store error code 944, occurred during Chrome update
  74. MPC-BE v1.5.2.3445 beta Release information
  75. How to change Wi-Fi access point to pay-per-use connection
  76. What to do if Windows Explorer ,Add current location to favorites, does not work
  77. How to customize Thunderbird destination from 3 lines to 2 lines
  78. Initialize Thunderbird using Profile Manager
  79. How to initialize Thunderbird or remove it completely
  80. How to custom install Thunderbird
  81. How to remove debris from Windows Update files | Windows 7
  82. How to Disable Notebook Keyboard (i8042prt)
  83. How to completely remove OneDrive
  84. How to choose what happens when you click a PDF link in Chrome 65
  85. How to stop the dialog for cooperation in collecting incorrect conversion data (MS-IME)
  86. Procedure to disable navigation start sound
  87. en[EVENT10016] DCOM Error: RuntimeBroker {9CA88EE3-...}
  88. How to use a TV as a second monitor for your PC
  89. SpeedyFox: Software specializing in one-click optimization of SQLite
  90. I think that home apps compatible with Robin are Google Now launchers
  91. MPC-HC project suspension, MPC-BE project continuation
  92. Precautions for Thunderbird+IMAP
  93. How to restart the Explorer process 2 pattern
  94. How to select the display to display the taskbar
  95. Registry file specifications
  96. DiffBrowser:Software that extracts and displays the updated part of the Web
  97. CCleaner v 5.38 customized installation
  98. Lhaplus installation procedure
  99. How to insert a sequential number at the beginning of a line in Clibor
  100. PsTools | Microsoft genuine tool that can be used for offline authentication of Windows 10

タイトル:What are structured data errors recorded in Google Search Console?:SC2
Windowsランキング 将棋ランキング スマホ・携帯ランキング にほんブログ村 IT技術ブログ ライフハックへ にほんブログ村 その他趣味ブログ 将棋へ

このサイトを検索 | Search this site