Publishing Content Blogger

Pricing Blueprint — Blogger

The pricing page tells AI about your subscription plans, membership tiers, or advertising rates. This blueprint structures pricing data so AI can answer questions like 'how much does a subscription cost' or 'do they offer a free tier.'

What this page needs

The pricing page tells AI about your subscription plans, membership tiers, or advertising rates. This blueprint structures pricing data so AI can answer questions like 'how much does a subscription cost' or 'do they offer a free tier.'

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 · Pricing
You are implementing AIFDS-compliant JSON-LD structured data for a Blogger Pricing 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. Free tier description
5. Free tier name
6. Monthly price
7. Paid tier description
8. Paid tier name
9. Pricing page title
10. Subscription description
11. Subscription 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 Pricing"
- 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 pricing page.

JSON-LD · Pricing Page
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "WebPage",
      "@id": "https://YOUR_DOMAIN.com/pricing/#webpage",
      "url": "https://YOUR_DOMAIN.com/pricing/",
      "name": "YOUR_PRICING_PAGE_TITLE",
      "isPartOf": { "@id": "https://YOUR_DOMAIN.com/#website" },
      "about": { "@id": "https://YOUR_DOMAIN.com/#publisher" }
    },
    {
      "@type": "Product",
      "name": "YOUR_SUBSCRIPTION_NAME",
      "description": "YOUR_SUBSCRIPTION_DESCRIPTION",
      "brand": { "@id": "https://YOUR_DOMAIN.com/#publisher" },
      "offers": [
        {
          "@type": "Offer",
          "name": "YOUR_FREE_TIER_NAME",
          "price": "0",
          "priceCurrency": "USD",
          "description": "YOUR_FREE_TIER_DESCRIPTION"
        },
        {
          "@type": "Offer",
          "name": "YOUR_PAID_TIER_NAME",
          "price": "YOUR_MONTHLY_PRICE",
          "priceCurrency": "USD",
          "description": "YOUR_PAID_TIER_DESCRIPTION",
          "priceSpecification": {
            "@type": "UnitPriceSpecification",
            "billingDuration": "P1M"
          }
        }
      ]
    },
    {
      "@type": "BreadcrumbList",
      "@id": "https://YOUR_DOMAIN.com/pricing/#breadcrumb",
      "itemListElement": [
        { "@type": "ListItem", "position": 1, "name": "Home", "item": "https://YOUR_DOMAIN.com/" },
        { "@type": "ListItem", "position": 2, "name": "Pricing", "item": "https://YOUR_DOMAIN.com/pricing/" }
      ]
    },
    {
      "@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

Should free blogs include a pricing page?

Only if you have premium content, a newsletter subscription, or accept advertising. If your blog is entirely free, this page is not necessary. Focus on pages that reflect your actual business model.

How should I structure advertising rates?

Use Offer nodes with descriptive names like "Sponsored Post" or "Banner Ad" and include pricing details. AI can then surface your publication when advertisers search for placement opportunities.

Should I include both monthly and annual pricing?

Yes. Use separate Offer nodes for each billing cycle with UnitPriceSpecification to indicate the duration. AI can then compare your pricing across billing periods.

Test your structured data

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

Open Validator →