Organizations Services AccountingService

Blog Post Blueprint — Accounting Service

Blog posts are the content AI actually cites. When an accounting firm publishes articles on tax law changes, deduction strategies, or financial planning, structured data tells AI who wrote it, when it was published, and which firm stands behind it — turning a page of text into a quotable, attributable source.

What this page needs

Blog posts are the pages AI cites most often. When someone asks an AI for advice on a tax topic your firm has written about, these are the signals it looks for before quoting or linking your article:

Why these fields matter to AI

Each field in the template below serves a specific role in how AI systems discover, classify, and recommend your business.

Researched and tested by Minnesota AI

BlogPosting

headline
AI uses headline as the attribution title when citing content. Must match the H1 exactly — truncated or mismatched headlines create citation errors.
description
AI pulls this for summarization when citing the article. If absent AI guesses from page content, often inaccurately.
datePublished
AI deprioritizes undated content — it cannot assess freshness without a publish date. One of the most common missing fields on blog content.
dateModified
Signals the content is maintained and current. Without it AI cannot distinguish fresh content from abandoned posts.
author
Anonymous content gets lower AI citation confidence. Named authorship is a trust signal, especially for health, legal, and financial content.
publisher
AI uses publisher to assess source authority. Required for NewsArticle — strongly recommended for all content.
image
Required for NewsArticle. Affects citation in visual AI contexts and social sharing previews.

Person

name
Named humans increase citation confidence in high-liability niches. A faceless organization is harder for AI to recommend for law, medicine, or finance.
jobTitle
AI uses job title to classify expertise level and match the provider to credential-specific queries.
url
AI verifies real people exist through linkable profiles. Without a URL the Person node is an unverifiable claim.
sameAs
AI cross-references the person against external sources to confirm they exist. LinkedIn is the strongest signal for professional services.
hasCredentialconditional
AI cites credentials before recommending licensed professionals. Critical for law, medicine, finance, and regulated contracting.Only required for licensed professions (law, medicine, finance, contracting). If your industry does not issue a professional license, this field is not applicable.

Organization

name
Non-negotiable. AI cannot cite or recommend an unnamed entity.
url
AI needs a stable URL to attribute recommendations and route users correctly.
logo
Visual identity signal. AI uses logo presence to assess institutional legitimacy before recommending a service.

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 · Blog
You are implementing AIFDS-compliant JSON-LD structured data for a Accounting Service Blog 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 name
2. Author slug
3. Category
4. Domain
5. Faq answer
6. Faq question
7. Featured image
8. Firm name
9. Job title
10. Linkedin
11. Logo
12. Modified date
13. Post description
14. Post slug
15. Post title
16. Publish date
17. Word count

OPTIONAL — ask for these but proceed if I skip them:
1. hasCredential

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 Accounting Service Blog"
- 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 template covers a single blog post page on an accounting firm website.

JSON-LD · Blog Post
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "BlogPosting",
      "@id": "https://YOUR_DOMAIN.com/blog/YOUR_POST_SLUG/#article",
      "headline": "YOUR_POST_TITLE",
      "description": "YOUR_POST_DESCRIPTION",
      "datePublished": "YOUR_PUBLISH_DATE",
      "dateModified": "YOUR_MODIFIED_DATE",
      "author": {
        "@id": "https://YOUR_DOMAIN.com/#author"
      },
      "publisher": {
        "@id": "https://YOUR_DOMAIN.com/#organization"
      },
      "image": "https://YOUR_DOMAIN.com/YOUR_FEATURED_IMAGE.jpg",
      "articleSection": "YOUR_CATEGORY",
      "wordCount": YOUR_WORD_COUNT
    },
    {
      "@type": "Person",
      "@id": "https://YOUR_DOMAIN.com/#author",
      "name": "YOUR_AUTHOR_NAME",
      "jobTitle": "YOUR_JOB_TITLE",
      "url": "https://YOUR_DOMAIN.com/team/YOUR_AUTHOR_SLUG/",
      "sameAs": [
        "https://www.linkedin.com/in/YOUR_LINKEDIN"
      ],
      "hasCredential": {
        "@type": "EducationalOccupationalCredential",
        "credentialCategory": "CPA",
        "name": "Certified Public Accountant"
      }
    },
    {
      "@type": "Organization",
      "@id": "https://YOUR_DOMAIN.com/#organization",
      "name": "YOUR_FIRM_NAME",
      "url": "https://YOUR_DOMAIN.com",
      "logo": "https://YOUR_DOMAIN.com/YOUR_LOGO.png"
    },
    {
      "@type": "WebPage",
      "@id": "https://YOUR_DOMAIN.com/blog/YOUR_POST_SLUG/",
      "isPartOf": {
        "@id": "https://YOUR_DOMAIN.com/#website"
      },
      "breadcrumb": {
        "@id": "https://YOUR_DOMAIN.com/blog/YOUR_POST_SLUG/#breadcrumb"
      }
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/blog/YOUR_POST_SLUG/#breadcrumb",
      "itemListElement": [
        {
          "@type": "ListItem",
          "position": 1,
          "name": "Home",
          "item": "https://YOUR_DOMAIN.com/"
        },
        {
          "@type": "ListItem",
          "position": 2,
          "name": "Blog",
          "item": "https://YOUR_DOMAIN.com/blog/"
        },
        {
          "@type": "ListItem",
          "position": 3,
          "name": "YOUR_POST_TITLE",
          "item": "https://YOUR_DOMAIN.com/blog/YOUR_POST_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 is dateModified especially important for accounting blog posts?

Tax laws, deduction limits, and filing deadlines change every year. AI systems weight freshness heavily for financial and tax content. If your article about standard deductions was written in 2023 but the limits changed in 2024, AI needs dateModified to know whether the information is still current. Update the date every time you revise the article to reflect new regulations.

Should the author Person node include CPA credentials?

Yes, if the author holds a CPA license or other relevant credential. Including hasCredential on the author signals to AI that the content was written by a qualified professional, not a marketing copywriter. This is a strong trust signal for financial and tax content where accuracy matters and misinformation can cause real harm.

Should I use BlogPosting or Article for accounting content?

Use BlogPosting for regularly published content on your blog. Use Article for standalone guides or whitepapers that are not part of a chronological feed. Both carry the same core fields. For most accounting firm blogs that publish seasonal tax tips and financial advice, BlogPosting is the right choice.

Test your structured data

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

Open Validator →