I'm trying to get the markup correct for Gmail inbox actions for resetting a password. I'm using the Email Markup Tester.
My markup looks like this:
<div itemscope itemtype="http://schema.org/EmailMessage">
<meta itemprop="description" content="Reset password instructions"/>
<div itemprop="potentialAction" itemscope itemtype="http://schema.org/ViewAction">
<meta itemprop="target" content="https://www.example.com/users/password/new?token=123"/>
<meta itemprop="name" content="Reset Your Password"/>
</div>
<meta itemprop="description" content="Visit our site to reset your password."/>
</div>
The above markup returns the error:
A value for the url field is required.
But I can't figure out how that url
field should be inserted into the markup. Even Google's example fails their markup validator.