Your portfolio page showcases what your clinic has accomplished beyond day-to-day patient care. This blueprint structures community health programs, facility milestones, vaccination drives, and outreach initiatives as machine-readable entries so AI can cite your clinic's impact when recommending healthcare facilities.
The portfolio page is your proof of community impact. When someone asks AI "which clinics run community health programs" or "find a clinic involved in preventive care outreach," this is the page that provides the evidence. Without structured data, AI cannot connect your clinic's initiatives to incoming queries.
CollectionPage as the page type to signal that this is a curated set of items, not a single article or service listing.CreativeWork node with a name, description, image, and dateCreated. This gives AI a structured record of what your clinic achieved, when, and what it looked like.MedicalClinic node using creator so AI knows which facility led the initiative.contentLocation to each entry tells AI where the program operated, reinforcing your community presence.A portfolio with photos but no structured data is invisible to AI. Structuring each initiative turns your community work into citable evidence of your clinic's reach and commitment.
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 Medical Clinic 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. Clinic name 2. Domain 3. Faq answer 4. Faq question 5. Logo 6. Portfolio page description 7. Portfolio page title 8. Program date 9. Program description 10. Program image 11. Program location 12. Program 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 Medical Clinic 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 programs and milestones 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/#program-1"
}
},
{
"@type": "ListItem",
"position": 2,
"item": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-2"
}
},
{
"@type": "ListItem",
"position": 3,
"item": {
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-3"
}
}
]
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-1",
"name": "YOUR_PROGRAM_NAME_1",
"description": "YOUR_PROGRAM_DESCRIPTION_1",
"image": "https://YOUR_DOMAIN.com/YOUR_PROGRAM_IMAGE_1.jpg",
"dateCreated": "YOUR_PROGRAM_DATE_1",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#clinic"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_PROGRAM_LOCATION_1"
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-2",
"name": "YOUR_PROGRAM_NAME_2",
"description": "YOUR_PROGRAM_DESCRIPTION_2",
"image": "https://YOUR_DOMAIN.com/YOUR_PROGRAM_IMAGE_2.jpg",
"dateCreated": "YOUR_PROGRAM_DATE_2",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#clinic"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_PROGRAM_LOCATION_2"
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-3",
"name": "YOUR_PROGRAM_NAME_3",
"description": "YOUR_PROGRAM_DESCRIPTION_3",
"image": "https://YOUR_DOMAIN.com/YOUR_PROGRAM_IMAGE_3.jpg",
"dateCreated": "YOUR_PROGRAM_DATE_3",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#clinic"
},
"contentLocation": {
"@type": "Place",
"name": "YOUR_PROGRAM_LOCATION_3"
}
},
{
"@type": "MedicalClinic",
"@id": "https://YOUR_DOMAIN.com/#clinic",
"name": "YOUR_CLINIC_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"
}
}
]
}
]
}
Community health programs (flu shot drives, diabetes screenings), facility milestones (new wing openings, technology upgrades), outreach initiatives (school health fairs, mobile clinics), and recognition events all qualify. Unlike a contractor portfolio of completed builds, a clinic portfolio showcases community impact and institutional growth.
Schema.org does not have a dedicated type for community health programs or clinic milestones. CreativeWork is the best general-purpose type because it supports name, description, image, dateCreated, and creator — everything AI needs to understand an initiative. The contentLocation field adds geographic context.
Include every program and milestone you want AI to know about. There is no practical limit, but each entry should have a clear name, description, and image. Three well-described community programs are more useful to AI than ten entries with just a title. Focus on initiatives that demonstrate your clinic's community presence and healthcare impact.