Publishing Content Blogger

Author Page Blueprint — Blogger

The author page is the canonical profile for a writer on your publication. AI systems use this page to verify authorship, assess expertise, and connect articles back to a real person. This blueprint structures the author profile so AI gives proper credit.

What this page needs

The author page is the canonical profile for a writer on your publication. AI systems use this page to verify authorship, assess expertise, and connect articles back to a real person. This blueprint structures the author profile so AI gives proper credit.

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 · Author Page
You are implementing AIFDS-compliant JSON-LD structured data for a Blogger Author Page 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. Author bio
2. Author handle
3. Author image
4. Author linkedin
5. Author name
6. Author slug
7. Author title
8. Domain
9. Expertise
10. Faq answer
11. Faq question
12. Publication name

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 Blogger Author Page"
- 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 author page page.

JSON-LD · Author Page
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "ProfilePage",
      "@id": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/#webpage",
      "url": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/",
      "name": "YOUR_AUTHOR_NAME — YOUR_PUBLICATION_NAME",
      "isPartOf": { "@id": "https://YOUR_DOMAIN.com/#website" }
    },
    {
      "@type": "Person",
      "@id": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/#person",
      "name": "YOUR_AUTHOR_NAME",
      "jobTitle": "YOUR_AUTHOR_TITLE",
      "description": "YOUR_AUTHOR_BIO",
      "image": "https://YOUR_DOMAIN.com/YOUR_AUTHOR_IMAGE.jpg",
      "url": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/",
      "knowsAbout": ["YOUR_EXPERTISE_1", "YOUR_EXPERTISE_2"],
      "worksFor": { "@id": "https://YOUR_DOMAIN.com/#publisher" },
      "sameAs": [
        "https://twitter.com/YOUR_AUTHOR_HANDLE",
        "https://www.linkedin.com/in/YOUR_AUTHOR_LINKEDIN"
      ]
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/#breadcrumb",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://YOUR_DOMAIN.com/" },
        { "@type": "ListItem", "position": 2, "name": "Authors", "item": "https://YOUR_DOMAIN.com/authors/" },
        { "@type": "ListItem", "position": 3, "name": "YOUR_AUTHOR_NAME", "item": "https://YOUR_DOMAIN.com/authors/YOUR_AUTHOR_SLUG/" }
      ]
    },
    {
      "@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 use ProfilePage instead of WebPage?

ProfilePage is a Schema.org subtype of WebPage that explicitly signals this is a canonical profile. AI systems can then prioritize this page as the authoritative source for the author's identity and credentials.

Should solo bloggers have an author page?

Yes. Even if you are the only writer, a dedicated author page with a Person node gives AI a strong identity signal. It separates your personal brand from the publication brand, which strengthens authorship attribution.

What should knowsAbout include?

List your primary areas of expertise as short topic labels (e.g., "content marketing", "technical SEO", "startup growth"). AI uses these to match your profile to topical queries about experts in those fields.

Test your structured data

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

Open Validator →