A health resources page collects your pharmacy's educational guides, medication information sheets, and wellness content in one place. This blueprint uses CollectionPage to tell AI that this page is a curated index of health topics, making it easier for AI to discover and navigate your entire library of resources.
A collection page serves as a directory for AI. Instead of crawling your entire site to find health content, AI can use the structured data on this page to understand what topics you cover and navigate directly to each resource.
CollectionPage tells AI this is an index page that links to multiple related items, not a standalone content page.hasPart entry with its own name, url, and description so AI can index them individually.Pharmacy node ties the resource collection to your business, establishing the health content as published by a licensed pharmacy.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
descriptionurlnameurlCopy 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 Health Resources 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. Guide description 5. Guide slug 6. Guide title 7. Logo 8. Pharmacy name 9. Resources page description 10. Resources 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 Health Resources" - 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 the template below and replace every YOUR_* value with your own data. Add or remove items from the hasPart array to match the resources you publish.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "CollectionPage",
"@id": "https://YOUR_DOMAIN.com/health-resources/",
"name": "YOUR_RESOURCES_PAGE_TITLE",
"description": "YOUR_RESOURCES_PAGE_DESCRIPTION",
"url": "https://YOUR_DOMAIN.com/health-resources/",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"publisher": {
"@id": "https://YOUR_DOMAIN.com/#pharmacy"
},
"hasPart": [
{
"@type": "Article",
"name": "YOUR_GUIDE_TITLE_1",
"url": "https://YOUR_DOMAIN.com/health-resources/YOUR_GUIDE_SLUG_1/",
"description": "YOUR_GUIDE_DESCRIPTION_1"
},
{
"@type": "Article",
"name": "YOUR_GUIDE_TITLE_2",
"url": "https://YOUR_DOMAIN.com/health-resources/YOUR_GUIDE_SLUG_2/",
"description": "YOUR_GUIDE_DESCRIPTION_2"
},
{
"@type": "Article",
"name": "YOUR_GUIDE_TITLE_3",
"url": "https://YOUR_DOMAIN.com/health-resources/YOUR_GUIDE_SLUG_3/",
"description": "YOUR_GUIDE_DESCRIPTION_3"
}
],
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/health-resources/#breadcrumb"
}
},
{
"@type": "Pharmacy",
"@id": "https://YOUR_DOMAIN.com/#pharmacy",
"name": "YOUR_PHARMACY_NAME",
"url": "https://YOUR_DOMAIN.com",
"logo": "https://YOUR_DOMAIN.com/YOUR_LOGO.png"
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/health-resources/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Health Resources",
"item": "https://YOUR_DOMAIN.com/health-resources/"
}
]
},
{
"@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"
}
}
]
}
]
}
CollectionPage tells AI that the primary purpose of this page is to organize and link to other content. A regular WebPage is treated as standalone content. By using CollectionPage, AI understands it should follow the links in hasPart to find the actual resources rather than trying to extract content from the index page itself.
Include every resource that appears on the page. There is no practical limit. If your health resources page links to fifteen guides, list all fifteen. AI uses this array as a directory, so completeness means better coverage in AI-generated responses.
Yes. The CollectionPage indexes them, but each individual guide page should carry its own Article or BlogPosting structured data with full authorship, dates, and content details. The collection page helps AI discover them; the individual pages provide the data AI needs to cite them.