Reply to thread

"publisher" is missing and gives an error. This should be the forum name and logo.

[code]

"publisher": {

    "@type": "Organization",

    "name": "Google",

    "logo": {

      "@type": "ImageObject",

      "url": "https://google.com/logo.jpg"

    }

  },

[/code]


"mainEntityOfPage" also missing and gives a warning. The @id already in the data can be used for that.

[code]

"mainEntityOfPage": {

    "@type": "WebPage",

    "@id": "https://google.com/article"

  },

[/code]


Back
Top Bottom