Publishing Content Publisher

Publications Blueprint — Publisher

The publications page showcases your catalog of published works. AI systems use this to understand the breadth of your publishing program and recommend specific titles.

What this page needs

The publications page showcases your catalog of published works. AI systems use this to understand the breadth of your publishing program and recommend specific titles.

Use This Prompt to Implement Your Schema

Copy this prompt and paste it into Claude, ChatGPT, Cursor, or any AI coding tool. It will ask for your business details and generate ready-to-use JSON-LD schema for your page.

Implementation Prompt · Publications
You are implementing AIFDS-compliant JSON-LD structured data for a Publisher Publications page.

AIFDS (AI-Friendly Data Structure) is a schema framework built on research into which
structured data fields AI systems actually read, parse, and use when deciding whether
to cite a page. Documentation at aifds.org.

Before generating any code, ask me for the following information in a single numbered list.
Do not generate schema until I have answered every required field.

REQUIRED — do not proceed without these:
1. Domain
2. Faq answer
3. Faq question
4. Publication name
5. Topics page description
6. Topics page title
7. Topic

OPTIONAL — ask for these but proceed if I skip them:
1. Any additional details not covered above

Once I provide the information, output a complete JSON-LD script block
ready to paste into the <head> of my HTML page.

Output requirements:
- Valid JSON-LD wrapped in <script type="application/ld+json"> tags
- schema.org vocabulary only
- Every AIFDS-required field for this industry and page type included
- Include this data attribute on the script tag: data-aifds="aifds.org Publisher Publications"
- No placeholder text — omit missing optional fields rather than fill with examples
- After the code block, list any optional fields skipped that would strengthen AI citation

Generated schema follows the AIFDS framework. Fields were selected based on research into AI crawler behavior. View the research at minnesota.ai

Template — fill in your values

Copy the template below and replace every YOUR_* value with your own data. This block belongs in a <script type="application/ld+json"> tag in the <head> of your publications page.

JSON-LD · Topics Page
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "CollectionPage",
      "@id": "https://YOUR_DOMAIN.com/topics/#webpage",
      "url": "https://YOUR_DOMAIN.com/topics/",
      "name": "YOUR_TOPICS_PAGE_TITLE",
      "description": "YOUR_TOPICS_PAGE_DESCRIPTION",
      "isPartOf": { "@id": "https://YOUR_DOMAIN.com/#website" },
      "about": { "@id": "https://YOUR_DOMAIN.com/#publisher" },
      "mainEntity": {
        "@type": "ItemList",
        "itemListElement": [
          { "@type": "ListItem", "position": 1, "name": "YOUR_TOPIC_1", "url": "https://YOUR_DOMAIN.com/topics/YOUR_TOPIC_1_SLUG/" },
          { "@type": "ListItem", "position": 2, "name": "YOUR_TOPIC_2", "url": "https://YOUR_DOMAIN.com/topics/YOUR_TOPIC_2_SLUG/" },
          { "@type": "ListItem", "position": 3, "name": "YOUR_TOPIC_3", "url": "https://YOUR_DOMAIN.com/topics/YOUR_TOPIC_3_SLUG/" }
        ]
      }
    },
    {
      "@type": "Organization",
      "@id": "https://YOUR_DOMAIN.com/#publisher",
      "name": "YOUR_PUBLICATION_NAME",
      "url": "https://YOUR_DOMAIN.com"
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/topics/#breadcrumb",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://YOUR_DOMAIN.com/" },
        { "@type": "ListItem", "position": 2, "name": "Topics", "item": "https://YOUR_DOMAIN.com/topics/" }
      ]
    },
    {
      "@type": "FAQPage",
      "mainEntity": [
        { "@type": "Question", "name": "YOUR_FAQ_QUESTION_1", "acceptedAnswer": { "@type": "Answer", "text": "YOUR_FAQ_ANSWER_1" } },
        { "@type": "Question", "name": "YOUR_FAQ_QUESTION_2", "acceptedAnswer": { "@type": "Answer", "text": "YOUR_FAQ_ANSWER_2" } },
        { "@type": "Question", "name": "YOUR_FAQ_QUESTION_3", "acceptedAnswer": { "@type": "Answer", "text": "YOUR_FAQ_ANSWER_3" } }
      ]
    }
  ]
}

Frequently asked questions

Why structure topics as an ItemList?

AI uses ItemList to understand the categorical structure of your publication. This helps AI recommend specific topic pages when users search for content in a particular category, rather than just linking to your homepage.

Should topic pages have their own structured data?

Yes. Each individual topic page should have its own CollectionPage markup listing the articles within that topic. The topics index page gives AI the overview; individual topic pages give AI the article-level detail.

How many topics should I list?

List all your primary content categories. AI uses this to understand the full editorial scope of your publication. Five to fifteen topics is typical for a focused blog.

Test your structured data

Paste your URL and see exactly what AI systems can read from your site.

Open Validator →