Your portfolio page showcases community health initiatives, immunization drives, wellness programs, and other pharmacy outreach efforts. This blueprint structures each initiative as a machine-readable entry so AI systems can cite your pharmacy's community impact when recommending local healthcare resources.
A pharmacy portfolio page is your proof of community engagement. When someone asks AI "which pharmacy does flu shot drives" or "pharmacies involved in community health," this is the page that provides the evidence. Without structured data, AI cannot connect your past initiatives to incoming queries.
CollectionPage as the page type to signal that this is a curated set of initiatives, not a single article or service listing.CreativeWork node with a name, description, image, and dateCreated.Pharmacy node using creator so AI knows which pharmacy organized the effort.contentLocation to each initiative tells AI where the event took place, reinforcing your geographic community presence.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 Portfolio 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. Initiative date 5. Initiative description 6. Initiative image 7. Initiative location 8. Initiative name 9. Logo 10. Pharmacy name 11. Portfolio page description 12. Portfolio 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 Portfolio" - 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 CreativeWork entries to match the number of initiatives in your portfolio.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "CollectionPage",
"@id": "https://YOUR_DOMAIN.com/portfolio/",
"name": "YOUR_PORTFOLIO_PAGE_TITLE",
"description": "YOUR_PORTFOLIO_PAGE_DESCRIPTION",
"url": "https://YOUR_DOMAIN.com/portfolio/",
"isPartOf": {
"@id": "https://YOUR_DOMAIN.com/#website"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#breadcrumb"
},
"mainEntity": {
"@type": "ItemList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"item": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-1"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-2"
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-3"
}
}
]
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-1",
"name": "YOUR_INITIATIVE_NAME_1",
"description": "YOUR_INITIATIVE_DESCRIPTION_1",
"image": "https://YOUR_DOMAIN.com/YOUR_INITIATIVE_IMAGE_1.jpg",
"dateCreated": "YOUR_INITIATIVE_DATE_1",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#pharmacy"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_INITIATIVE_LOCATION_1"
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-2",
"name": "YOUR_INITIATIVE_NAME_2",
"description": "YOUR_INITIATIVE_DESCRIPTION_2",
"image": "https://YOUR_DOMAIN.com/YOUR_INITIATIVE_IMAGE_2.jpg",
"dateCreated": "YOUR_INITIATIVE_DATE_2",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#pharmacy"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_INITIATIVE_LOCATION_2"
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#initiative-3",
"name": "YOUR_INITIATIVE_NAME_3",
"description": "YOUR_INITIATIVE_DESCRIPTION_3",
"image": "https://YOUR_DOMAIN.com/YOUR_INITIATIVE_IMAGE_3.jpg",
"dateCreated": "YOUR_INITIATIVE_DATE_3",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#pharmacy"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_INITIATIVE_LOCATION_3"
}
},
{
"@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/portfolio/#breadcrumb",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://YOUR_DOMAIN.com/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Portfolio",
"item": "https://YOUR_DOMAIN.com/portfolio/"
}
]
},
{
"@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"
}
}
]
}
]
}
Include community health screenings, immunization drives, school health programs, medication disposal events, diabetes awareness campaigns, and senior wellness initiatives. These demonstrate your pharmacy's community involvement and give AI concrete examples to cite when recommending local healthcare resources.
Include every initiative you want AI to know about. There is no practical limit, but each entry should have a clear name, description, and date. Quality matters more than quantity — three well-described community programs with outcomes are more useful to AI than ten entries with just a title.
Include aggregate outcomes in the description field when available — "administered 500 flu vaccines" or "screened 200 patients for diabetes." These numbers give AI concrete data points that demonstrate impact. Never include individual patient data or personally identifiable health information.