I've been trying to figure out this riddle from a day now. Lets say that we have a TV Episode as following,
<main itemscope itemtype="https://schema.org/TVEpisode">
<h1>
<a itemprop="url" href="self.html">
Pokemon - <span itemprop="episodeNumber">88</span>
</a>
</h1>
<h2 itemprop="name">In the Pink</h2>
<p>Source: <span itemprop="partOfSeries">Pokemon</span>
<span itemprop="partOfSeason">Orange Islands</span>
</p>
</main>
Now the problem here is that I'm unable to add the 'sameAs' property of 'partOfSeries' here. If I add an anchor with 'sameAs' property inside 'partOfSeries', Google Structured-data Testing Tool says it cant find the sameAs property. And I don't know anyway else to do it. The same is correct for 'seasonNumber' which is a child of 'partOfSeason'. If you could help out with the 'potentialAction' property too, that would be awesome. Thank you