-1

I have an Article schema for my structured data. I've three part of title like "Up title", "Main Title" and "Lead":

<section itemscope itemtype="http://schema.org/Article">
  <h2 itemprop="name">
     This is up title
  </h2>

  <h1 itemprop="headline">
     This is up title
  </h1>

  <h3 itemprop="about">
     This is lead
  </h3>

Which property should I use for each title?

And is there any limitation for using multiple of the same property like two or more headline in my example?

unor
  • 92,415
  • 26
  • 211
  • 360
Art Mary
  • 562
  • 4
  • 12

1 Answers1

1

Yes, you may use a property multiple times.

For Article, you have several options for the different kinds of names and titles:

Sometimes something is used as a title, but it’s actually something else (in addition), e.g. an additional title containing a section name (like "Sports", "Politics" etc.) could use articleSection, an additional title containing the topic the article is about (like "Bitcoin", "Programming" etc.) could use about.

Community
  • 1
  • 1
unor
  • 92,415
  • 26
  • 211
  • 360