Datos estructurados del tema: todas las publicaciones declaradas como "mainEntityOfPage"

En el modelo de datos estructurados solo debe haber un objeto declarado como mainEntity / mainEntityOfPage.
Ver “mainEntity” - Información de fondo - Modelo de datos - schema.org

Ahora mismo cada publicación individual está declarada como mainEntityOfPage.

Google ve cada página (= url) como su propio contexto. Por lo tanto, es posible declarar una publicación por cada url como mainEntity – por ejemplo:

  • https://DOMAIN/t/SLUG/43: la entidad principal es #post_1
  • https://DOMAIN/t/SLUG/43?page=2: la entidad principal es uno de #post_10 a #post_19
  • https://DOMAIN/t/SLUG/43?page=3: la entidad principal es uno de #post_20 a #post_29
  • […]

Ver también la discusión sobre schema.org en “paginación de ItemLists” y Google: pagination for ItemList · Issue #1714 · schemaorg/schemaorg · GitHub

  • pagination for ItemList · Issue #1714 · schemaorg/schemaorg · GitHub
  • pagination for ItemList · Issue #1714 · schemaorg/schemaorg · GitHub

El extracto anterior de la documentación para desarrolladores de Google podría estar desactualizado, ya que actualmente falta: General Structured Data Guidelines | Google Search Central  |  Documentation  |  Google for Developers

¿No se relaciona esto con el uso de: DiscussionForumPosting - Schema.org Type

Usamos esto para cada publicación, parece que solo deberíamos usarlo para la primera publicación y luego usar Comment - Schema.org Type para el resto.

De esa manera, nos deshacemos de todos los títulos repetidos, la paginación y el resto de las cosas que no encajan bien.

A Google puede que no le importen realmente los subtipos como DiscussionForumPosting y los mapee al tipo ancestro Article en su lugar.
Al hacer esto, Discourse podría parecerse más a un blog con Articles más Comments desde la perspectiva de Google.

Quizás otra forma es aclarar las relaciones entre DiscussionForumPostings:
por ejemplo, usando about - Schema.org Property para declarar la publicación principal dentro de cada respuesta.

post_1 (mainEntityOfPage)
|
+-- post_2 (about post_1)
|
+-- post_3 (about post_1)
|   |
|   + post_4 (about post_3)
|   + post_6 (about post_3)
|
+ post_5 (about post_1)

Hay una discusión sobre cómo usar DiscussionForumPosting:

Una opinión - ver: We have DiscussionForumPosting but no DiscussionForum... · Issue #125 · schemaorg/suggestions-questions-brainstorming · GitHub

La descripción de DisccussionForumPosting es “Una publicación en un foro de discusión”.

Un foro típico se compone de categorías. Las categorías contienen foros, y un foro contiene temas. Un tema contiene 1 o más publicaciones de foro.

La descripción parece indicar que este esquema es para una publicación individual en un foro, pero el ejemplo parece mostrar que es para un tema que puede tener múltiples publicaciones de foro de múltiples autores.

Me encontré con un modelo de datos estructurados funcional (= Google genera fragmentos enriquecidos) para publicaciones de foros en la naturaleza: XenForo

Vista móvil de los resultados de búsqueda de Google (SERP)

Vista de escritorio de los resultados de búsqueda de Google (SERP)

Detalles técnicos

Por ejemplo: https://www.audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/

Código HTML muy reducido:

<!DOCTYPE html>
<html>
    <head>
        <title>Auriculares y la curva objetivo de Harman | Audio Science Review (ASR) Forum</title>
        […]
    </head>
    <body>
        <script type="application/ld+json">
            {
                "@context": "https://schema.org",
                "@type": "DiscussionForumPosting",
                "@id": "https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/",
                "headline": "Auriculares y la curva objetivo de Harman",
                "articleBody": "Recientemente empecé a experimentar con la ecualización de mis auriculares (APO+Peace). He estado trabajando en esto con dos de mis auriculares, el Hifiman Ananda y el Denon AH-D7200. Con ambos, creo que el perfil objetivo de Harman suena como...",
                "articleSection": "Reseñas de auriculares y amplificadores para auriculares",
                "author": {
                    "@type": "Person",
                    "name": "spittiz"
                },
                "datePublished": "2020-11-27T20:59:17+00:00",
                "dateModified": "2022-11-14T12:49:45+00:00",
                "image": "https://audiosciencereview.com/forum/data/avatars/h/6/6175.jpg?1606506178",
                "interactionStatistic": {
                    "@type": "InteractionCounter",
                    "interactionType": "https://schema.org/ReplyAction",
                    "userInteractionCount": 353
                },
                "publisher": {
                    "@type": "Organization",
                    "name": "Audio Science Review (ASR) Forum",
                    "logo": {
                        "@type": "ImageObject",
                        "url": "https://www.audiosciencereview.com/forum%20resources/Two-line%20ASR%20Logo-new.png"
                    }
                },
                "mainEntityOfPage": {
                    "@type": "WebPage",
                    "@id": "https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/"
                }
            }
        </script>

        <h1>Auriculares y la curva objetivo de Harman</h1>

        <ul>
            <li>
                <a href="/forum/index.php?members/spittiz.6175/" itemprop="name">spittiz</a>
            </li>
            <li>
                <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/">
                    <time datetime="2020-11-27T20:59:17+0000" title="27 de nov. de 2020 a las 20:59">27 de nov. de 2020</time>
                </a>
            </li>
        </ul>

        <nav>
            <ul>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/">1</a></li>
                […]
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-18">18</a></li>
            </ul>
        </nav>

        <!-- Publicación de apertura del tema -->
        <article id="js-post-582475">
            <section itemscope itemtype="https://schema.org/Person"></section>
            <header>
                <time datetime="2020-11-27T20:59:17+0000" title="27 de nov. de 2020 a las 20:59" itemprop="datePublished">27 de nov. de 2020</time>
            </header>
            <article>
                [texto de la publicación]
            </article>
        </article>

        <!-- Primera respuesta -->
        <article id="js-post-582631">
            <section itemscope itemtype="https://schema.org/Person">[…]</section>
            <header>
                <time datetime="2020-11-28T01:50:59+0000" title="28 de nov. de 2020 a las 01:50" itemprop="datePublished">28 de nov. de 2020</time>
            </header>
            <article>
                <blockquote>
                    [texto de la cita]
                </blockquote>
                [texto de la publicación]
            </article>
            <time datetime="2020-11-28T02:03:35+0000" title="28 de nov. de 2020 a las 02:03" itemprop="dateModified">28 de nov. de 2020</time>
        </article>

        <article id="js-post-582634">[…]</article>

        […]

        <article id="js-post-584460">[…]</article>

        <article id="js-post-584505">[…]</article>
    </body>
</html>
Código HTML reducido (haz clic aquí para abrir)
<!DOCTYPE html>
<html>
    <head>
        <title>Auriculares y la curva objetivo de Harman | Audio Science Review (ASR) Forum</title>

        <meta name="description" content="Recientemente empecé a experimentar con la ecualización de mis auriculares (APO+Peace). He estado trabajando en esto con dos de mis auriculares, el Hifiman Ananda y..." />
        <meta property="og:description" content="Recientemente empecé a experimentar con la ecualización de mis auriculares (APO+Peace). He estado trabajando en esto con dos de mis auriculares, el Hifiman Ananda y el Denon AH-D7200. Con ambos, creo que el perfil objetivo de Harman suena como una porquería. Especialmente con el Ananda es como tirar a..." />
        <meta property="twitter:description" content="Recientemente empecé a experimentar con la ecualización de mis auriculares (APO+Peace). He estado trabajando en esto con dos de mis auriculares, el Hifiman Ananda y el Denon AH-D7200. Con ambos..." />

        <meta property="og:url" content="https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/" />
        <link rel="canonical" href="https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/" />

        <link rel="next" href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-2" />

        <meta property="og:site_name" content="Audio Science Review (ASR) Forum" />
        <meta property="og:type" content="website" />
        <meta property="twitter:card" content="summary" />

        <meta property="og:title" content="Auriculares y la curva objetivo de Harman" />
        <meta property="twitter:title" content="Auriculares y la curva objetivo de Harman" />

        <meta property="og:image" content="https://www.audiosciencereview.com/forum%20resources/Two-line%20ASR%20Logo-new.png" />
        <meta property="twitter:image" content="https://www.audiosciencereview.com/forum%20resources/Two-line%20ASR%20Logo-new.png" />

    </head>
    <body>
        <script type="application/ld+json">
            {
                "@context": "https://schema.org",
                "@type": "DiscussionForumPosting",
                "@id": "https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/",
                "headline": "Auriculares y la curva objetivo de Harman",
                "articleBody": "Recientemente empecé a experimentar con la ecualización de mis auriculares (APO+Peace). He estado trabajando en esto con dos de mis auriculares, el Hifiman Ananda y el Denon AH-D7200. Con ambos, creo que el perfil objetivo de Harman suena como...",
                "articleSection": "Reseñas de auriculares y amplificadores para auriculares",
                "author": {
                    "@type": "Person",
                    "name": "spittiz"
                },
                "datePublished": "2020-11-27T20:59:17+00:00",
                "dateModified": "2022-11-14T12:49:45+00:00",
                "image": "https://audiosciencereview.com/forum/data/avatars/h/6/6175.jpg?1606506178",
                "interactionStatistic": {
                    "@type": "InteractionCounter",
                    "interactionType": "https://schema.org/ReplyAction",
                    "userInteractionCount": 353
                },
                "publisher": {
                    "@type": "Organization",
                    "name": "Audio Science Review (ASR) Forum",
                    "logo": {
                        "@type": "ImageObject",
                        "url": "https://www.audiosciencereview.com/forum%20resources/Two-line%20ASR%20Logo-new.png"
                    }
                },
                "mainEntityOfPage": {
                    "@type": "WebPage",
                    "@id": "https://audiosciencereview.com/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/"
                }
            }
        </script>

        <header>
            […]
        </header>

        <nav>
            <ul itemscope itemtype="https://schema.org/BreadcrumbList">
                <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                    <a href="/forum/index.php" itemprop="item">
                    <span itemprop="name">Foros</span>
                    </a>
                    <meta itemprop="position" content="1" />
                </li>
                <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                    <a href="/forum/index.php#audio-audio-audio.40" itemprop="item">
                    <span itemprop="name">Audio, audio, ¡audio!</span>
                    </a>
                    <meta itemprop="position" content="2" />
                </li>
                <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                    <a href="/forum/index.php?forums/headphones-and-headphone-amplifier-reviews.57/" itemprop="item">
                    <span itemprop="name">Reseñas de auriculares y amplificadores para auriculares</span>
                    </a>
                    <meta itemprop="position" content="3" />
                </li>
            </ul>
        </nav>

        <h1>Auriculares y la curva objetivo de Harman</h1>

        <ul>
            <li>
                <a href="/forum/index.php?members/spittiz.6175/" itemprop="name">spittiz</a>
            </li>
            <li>
                <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/"><time datetime="2020-11-27T20:59:17+0000" title="27 de nov. de 2020 a las 20:59">27 de nov. de 2020</time></a>
            </li>
        </ul>

        <nav>
            <ul>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/">1</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-2">2</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-3">3</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-18">18</a></li>
            </ul>
        </nav>

        <article id="js-post-582475">
            <section itemscope itemtype="https://schema.org/Person">
                <a href="/forum/index.php?members/spittiz.6175/">
                <img src="/forum/data/avatars/m/6/6175.jpg?1606506178" alt="spittiz" width="96" height="96" itemprop="image" /> 
                </a>
                <h4><a href="/forum/index.php?members/spittiz.6175/" itemprop="name">spittiz</a></h4>
                <h5 itemprop="jobTitle">Miembro</h5>
                <dl>
                    <dt>Fecha de registro</dt>
                    <dd>7 de feb. de 2019</dd>
                </dl>
                <dl>
                    <dt>Mensajes</dt>
                    <dd>14</dd>
                </dl>
                <dl>
                    <dt>Me gusta</dt>
                    <dd>12</dd>
                </dl>
            </section>
            <header>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582475" rel="nofollow">
                        <time datetime="2020-11-27T20:59:17+0000" title="27 de nov. de 2020 a las 20:59" itemprop="datePublished">27 de nov. de 2020</time>
                        </a>
                    </li>
                </ul>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582475"
                            rel="nofollow">
                        </a>
                    </li>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582475" rel="nofollow">
                        #1
                        </a>
                    </li>
                </ul>
            </header>
            <article>
                [texto de la publicación]
            </article>
            <footer>
                <span>Reacciones:</span>
                <a href="/forum/index.php?posts/582475/reactions" rel="nofollow"><bdi>tmtomh</bdi>, <bdi>yigitboy</bdi>, <bdi>Frank Dernie</bdi> y 2 más</a>
            </footer>
        </article>

        <article id="js-post-582631">
            <section itemscope itemtype="https://schema.org/Person">
                <a href="/forum/index.php?members/dreyfus.6150/">
                <img src="/forum/data/avatars/m/6/6150.jpg?1601328956" alt="Dreyfus" width="96" height="96" itemprop="image" /> 
                </a>
                <h4><a href="/forum/index.php?members/dreyfus.6150/" itemprop="name">Dreyfus</a></h4>
                <h5 itemprop="jobTitle">Miembro activo</h5>
                <dl>
                    <dt>Fecha de registro</dt>
                    <dd>7 de feb. de 2019</dd>
                </dl>
                <dl>
                    <dt>Mensajes</dt>
                    <dd>234</dd>
                </dl>
                <dl>
                    <dt>Me gusta</dt>
                    <dd>287</dd>
                </dl>
                <dl>
                    <dt>Ubicación</dt>
                    <dd>
                        <a href="/forum/index.php?misc/location-info&amp;location=Germany" rel="nofollow noreferrer" target="_blank">Alemania</a>
                    </dd>
                </dl>
            </section>
            <header>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582631" rel="nofollow">
                        <time datetime="2020-11-28T01:50:59+0000" title="28 de nov. de 2020 a las 01:50" itemprop="datePublished">28 de nov. de 2020</time>
                        </a>
                    </li>
                </ul>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582631"
                            rel="nofollow">
                        </a>
                    </li>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-582631" rel="nofollow">
                        #2
                        </a>
                    </li>
                </ul>
            </header>
            <article>
                <blockquote>
                    <a href="/forum/index.php?goto/post&amp;id=582475"
                        rel="nofollow">spittiz dijo:</a>
                    [texto de la cita]
                </blockquote>
                [texto de la publicación]
                <blockquote>
                    <a href="/forum/index.php?goto/post&amp;id=582475"
                        rel="nofollow">spittiz dijo:</a>
                    [texto de la cita]
                </blockquote>
                [texto de la publicación]
            </article>
            <time datetime="2020-11-28T02:03:35+0000" title="28 de nov. de 2020 a las 02:03" itemprop="dateModified">28 de nov. de 2020</time>
            <footer>
                <span>Reacciones:</span>
                <a href="/forum/index.php?posts/582631/reactions" rel="nofollow"><bdi>Presently42</bdi>, <bdi>Ilkless</bdi>, <bdi>oivavoi</bdi> y 3 más</a>
            </footer>
        </article>

        <article id="js-post-582634">[…]</article>
        […]
        <article id="js-post-584460">[…]</article>

        <article id="js-post-584505">
            <section itemscope itemtype="https://schema.org/Person">
                <a href="/forum/index.php?members/feelas.22359/">
                <img src="/forum/data/avatars/m/22/22359.jpg?1612728223" alt="Feelas" width="96" height="96" itemprop="image" /> 
                </a>
                <h4><a href="/forum/index.php?members/feelas.22359/" itemprop="name">Feelas</a></h4>
                <h5 itemprop="jobTitle">Miembro senior</h5>
                <dl>
                    <dt>Fecha de registro</dt>
                    <dd>20 de nov. de 2020</dd>
                </dl>
                <dl>
                    <dt>Mensajes</dt>
                    <dd>376</dd>
                </dl>
                <dl>
                    <dt>Me gusta</dt>
                    <dd>307</dd>
                </dl>
            </section>
            <header>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-584505" rel="nofollow">
                        <time datetime="2020-11-30T08:37:59+0000" title="30 de nov. de 2020 a las 08:37" itemprop="datePublished">30 de nov. de 2020</time>
                        </a>
                    </li>
                </ul>
                <ul>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-584505"
                            rel="nofollow">
                        </a>
                    </li>
                    <li>
                        <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/post-584505" rel="nofollow">
                        #20
                        </a>
                    </li>
                </ul>
            </header>
            <article>
                <blockquote>
                    <a href="/forum/index.php?goto/post&amp;id=584460"
                        rel="nofollow">Senior NEET Engineer dijo:</a>
                    [texto citado]
                </blockquote>
                [texto de la publicación]
            </article>
            <footer></footer>
        </article>

        <nav>
            <ul>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/">1</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-2">2</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-3">3</a></li>
                <li><a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-18">18</a></li>
            </ul>
            <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-2">Siguiente</a>
            <a href="/forum/index.php?threads/headphones-and-the-harman-target-curve.17914/page-18" title="Última"><span>Última</span></a>
        </nav>

        <div>
            <h3>Temas similares</h3>
            <div>
                <div>
                    […]
                    <div>
                        <a href="/forum/index.php?threads/usound-target-curve-for-iems.35086/">Curva objetivo de USound para IEMs</a>
                        <ul>[…]</ul>
                    </div>
                    […]
                </div>
                <div>
                    […]
                    <div>
                        <a href="/forum/index.php?threads/my-hrtf-target-vs-harman-target.36255/">Mi objetivo HRTF frente al objetivo de Harman</a>
                        <ul>[…]</ul>
                    </div>
                    […]
                </div>
                <div>
                    <a href="/forum/index.php?members/dazerdoreal.52898/">
                    <span role="img">D</span> 
                    </a>
                    <div>
                        <a href="/forum/index.php?threads/the-iem-harman-target-2019-sounds-off-to-me-is-it-just-me.38113/">El objetivo Harman para IEMs de 2019 me suena «raro». ¿Es solo a mí?</a>
                        <ul>
                            <li><a href="/forum/index.php?members/dazerdoreal.52898/" itemprop="name">Dazerdoreal</a></li>
                            <li><a href="/forum/index.php?threads/the-iem-harman-target-2019-sounds-off-to-me-is-it-just-me.38113/" rel="nofollow"><time datetime="2022-10-08T17:06:16+0100" title="8 de oct. de 2022 a las 17:06">8 de oct. de 2022</time></a></li>
                            <li><a href="/forum/index.php?forums/headphone-iem-reviews-discussions.58/">Reseñas y debates sobre auriculares e IEMs</a></li>
                        </ul>
                        <span>
                        <a href="/forum/index.php?threads/the-iem-harman-target-2019-sounds-off-to-me-is-it-just-me.38113/page-2">2</a>
                        <a href="/forum/index.php?threads/the-iem-harman-target-2019-sounds-off-to-me-is-it-just-me.38113/page-3">3</a>
                        </span>
                    </div>
                    <div title="Puntuación de reacción al primer mensaje: 1">
                        <dl>
                            <dt>Respuestas</dt>
                            <dd>52</dd>
                        </dl>
                        <dl>
                            <dt>Vistas</dt>
                            <dd>4K</dd>
                        </dl>
                    </div>
                    <div>
                        <a href="/forum/index.php?threads/the-iem-harman-target-2019-sounds-off-to-me-is-it-just-me.38113/latest" rel="nofollow"><time datetime="2022-11-16T05:05:28+0000" title="16 de nov. de 2022 a las 05:05">Hoy a las 05:05</time></a>
                        <a href="/forum/index.php?members/aperiodic.7528/" itemprop="name">Aperiodic</a>
                    </div>
                    <a href="/forum/index.php?members/aperiodic.7528/">
                    <span role="img">A</span> 
                    </a>
                </div>
                <div>
                    […]
                    <div>
                        <a href="/forum/index.php?threads/sloped-neutral-target-curves-for-headphones-and-iems.36532/">¿Curvas objetivo «neutrales inclinadas» para auriculares e IEMs?</a>
                        <ul>[…]</ul>
                    </div>
                    […]
                </div>
                <div>
                    […]
                    <div>
                        <a href="/forum/index.php?threads/looking-for-bt-anc-over-ear-with-hardware-eq.36328/">Busco auriculares supraaurales con BT/ANC y «ecualización por hardware»</a>
                        <ul>[…]</ul>
                    </div>
                    […]
                </div>
            </div>
        </div>

        <ul itemscope itemtype="https://schema.org/BreadcrumbList">
            <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                <a href="/forum/index.php" itemprop="item">
                <span itemprop="name">Foros</span>
                </a>
                <meta itemprop="position" content="1" />
            </li>
            <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                <a href="/forum/index.php#audio-audio-audio.40" itemprop="item">
                <span itemprop="name">Audio, audio, ¡audio!</span>
                </a>
                <meta itemprop="position" content="2" />
            </li>
            <li itemprop="itemListElement" itemscope itemtype="https://schema.org/ListItem">
                <a href="/forum/index.php?forums/headphones-and-headphone-amplifier-reviews.57/" itemprop="item">
                <span itemprop="name">Reseñas de auriculares y amplificadores para auriculares</span>
                </a>
                <meta itemprop="position" content="3" />
            </li>
        </ul>

        <footer>
            […]
        </footer>
    </body>
</html>