1

Before I ask I would like to mention that I have searched for solution...

I am trying to build Goggle's AMP page. I used their template and tested it with Chrome's Developer Tools, however, in Google's own Structured Data Testing Tool I get an error and two warnings. I'm stuck trying to figure this thing out. Here's my code and below is a screen capture of the errors I see.

<script type="application/ld+json">
  {
    "@context": "http://schema.org",
    "@type": "NewsArticle",
    "headline": "Remote Card Sorting and Prioritization Matrix Tools for usability testing and information architecture.",
    "datePublished": "2016-10-08T12:02:41Z",
    "dateModified": "2016-11-05T12:02:41Z",
    "author": "usabiliTEST",
    "image": [
      "/i/usabilitestLogo.png"
    ],
    "publisher": "usabiliTEST"
  }
</script>

How can this be fixed? What am I still missing?

enter image description here

santa
  • 12,234
  • 49
  • 155
  • 255

1 Answers1

3

Image needs to be an 'Image Object'.

"image": {
  "@type": "ImageObject",
  "url": "https://google.com/thumbnail1.jpg",
  "height": 800,
  "width": 800
},

I answered a similar question here.

Community
  • 1
  • 1
Shannon Young
  • 1,536
  • 1
  • 17
  • 26
  • I think Google test tool is broken. Webmaster tool says no errors, but the tool is all over the place. – santa Nov 09 '16 at 16:21