웹 브라우저에서 마이크로데이터와 RDFa의 새로운 요소는 무시되기 때문에 웹 페이지를 정기적으로 방문하는 방문자는 새로운 변경 사항을 찾을 수 없다.
질문에서 이미 설명했는데, HTML 페이지의 메타 태그에 포함된 정보는 사용자가 볼 수 없습니다. 이런 의미에서 메타 태그에 업데이트된 정보가 있어도, 사용자는 알 수 없다는 의미입니다.
HTML에 메타데이터를 표시하는 방법이 조금씩 차이가 있습니다. 웹 브라우저도 표준을 어느 정도 (?) 지원하는지 여부에 따라 데이터를 읽고 처리하는 방식이 다를 수 있습니다. 웹 환경에서 우리가 얘기하는 표준은 대부분 'Standard’가 아닌 'Recommendation’일 수 있습니다. W3C는 표준보다 권고안이라고 합니다. 즉, 의무적으로? 강제로 하는 것이 아니라 권고한다는 의미인데, 웹에서 표준에 가까운 역할을 합니다.
이런 맥락으로 보면, RDFa, JSON-LD는 권고안이고, 마이크로데이터는 오픈 커뮤니티에서 자유롭게 사용하는 방식입니다. 아래 링크를 보면, 구글은 JSON-LD를 주로 사용하고 있다고 합니다 (크롬에선 JSON-LD가 처리가 잘 되겟죠). 익스플로러나 다른 브라우저에서 이런 부분이 처리되는지 확인해 볼 필요가 있습니다.
The Microdata approach was originally the recommended one for SEO purposes, but Google’s JSON-LD support has improved in the past few years and now it is their recommended approach when possible.
JSON-LD: JavaScript notation embedded in a tag in the page head or body. The markup is not interleaved with the user-visible text, which makes nested data items easier to express. Also, Google can read JSON-LD data when it is dynamically injected into the page’s contents, such as by JavaScript code or embedded widgets in your content management system.
Microdata: An open-community HTML specification used to nest structured data within HTML content. Like RDFa, it uses HTML tag attributes to name the properties you want to expose as structured data. It is typically used in the page body, but can be used in the head.
RDFa: An HTML5 extension that supports linked data by introducing HTML tag attributes that correspond to the user-visible content that you want to describe for search engines. RDFa is commonly used in both the head and body sections of the HTML page.
P.S: Google recommends using JSON-LD for structured data whenever possible.