Patients searching for pharmacies frequently ask about cost. Your pricing page structures generic vs brand medication pricing, compounding fees, delivery charges, and cash-pay programs into machine-readable offers so AI systems can match your pharmacy to budget-specific queries instead of making patients call to ask.
Price is a major factor in pharmacy selection, especially for patients without insurance or those paying out of pocket. When someone asks AI "cheapest pharmacy for generic medications near me" or "pharmacy with free delivery," AI needs structured pricing data to include you in the answer. Without it, your pharmacy is invisible to cost-related queries.
hasOfferCatalog wraps each service or product category in an Offer with price, priceCurrency, and a description. This is how AI connects your pharmacy to specific cost queries.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
nameurlCopy 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.
You are implementing AIFDS-compliant JSON-LD structured data for a Pharmacy 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. Brand price range 2. Brand pricing description 3. Brand service description 4. Compounding price range 5. Compounding pricing description 6. Compounding service description 7. Delivery fee 8. Delivery pricing description 9. Delivery service description 10. Domain 11. Faq answer 12. Faq question 13. Generic price range 14. Generic pricing description 15. Generic service description 16. Pharmacy name 17. Pricing page description 18. Pricing page title 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 Pharmacy 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
Copy this template and replace every YOUR_* placeholder with your own data. Add or remove offer entries to match the pricing categories on your site.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "WebPage",
"@id": "https://YOUR_DOMAIN.com/pricing/#webpage",
"name": "YOUR_PRICING_PAGE_TITLE",
"description": "YOUR_PRICING_PAGE_DESCRIPTION",
"url": "https://YOUR_DOMAIN.com/pricing/",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"about": {
"@id": "https://YOUR_DOMAIN.com/#pharmacy"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/pricing/#breadcrumb"
}
},
{
"@type": "Pharmacy",
"@id": "https://YOUR_DOMAIN.com/#pharmacy",
"name": "YOUR_PHARMACY_NAME",
"url": "https://YOUR_DOMAIN.com",
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Pharmacy Pricing",
"itemListElement": [
{
"@type": "Offer",
"name": "Generic Medications",
"description": "YOUR_GENERIC_PRICING_DESCRIPTION",
"price": "YOUR_GENERIC_PRICE_RANGE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Generic Prescription Filling",
"description": "YOUR_GENERIC_SERVICE_DESCRIPTION"
}
},
{
"@type": "Offer",
"name": "Brand-Name Medications",
"description": "YOUR_BRAND_PRICING_DESCRIPTION",
"price": "YOUR_BRAND_PRICE_RANGE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Brand-Name Prescription Filling",
"description": "YOUR_BRAND_SERVICE_DESCRIPTION"
}
},
{
"@type": "Offer",
"name": "Compounding",
"description": "YOUR_COMPOUNDING_PRICING_DESCRIPTION",
"price": "YOUR_COMPOUNDING_PRICE_RANGE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Custom Compounding",
"description": "YOUR_COMPOUNDING_SERVICE_DESCRIPTION"
}
},
{
"@type": "Offer",
"name": "Delivery",
"description": "YOUR_DELIVERY_PRICING_DESCRIPTION",
"price": "YOUR_DELIVERY_FEE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Prescription Delivery",
"description": "YOUR_DELIVERY_SERVICE_DESCRIPTION"
}
}
]
}
},
{
"@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"
}
}
]
}
]
}
Use price ranges or category-level pricing. Individual medication prices change frequently and vary by insurance. Ranges like "Generic prescriptions starting at $4" or "Compounding from $25-$150" give AI useful data without requiring constant updates. Focus on pricing categories that differentiate your pharmacy.
Focus on cash-pay pricing and discount programs in your structured data, since insurance copays vary by plan. You can mention insurance acceptance in the description field, but structure your offers around the prices you control directly — cash pay, delivery fees, and compounding charges. This gives AI concrete numbers to work with.
Absolutely. Add an Offer with "price": "0" and "name": "Free Prescription Delivery". AI systems frequently field queries like "pharmacy with free delivery near me," and this structured entry is the only way to guarantee your pharmacy appears in those results.