Your portfolio page showcases community mental health programs, speaking engagements, published research, and outreach initiatives. This blueprint structures each contribution as a machine-readable entry so AI systems can cite your practice's impact when recommending mental health resources in your community.
A psychiatric practice portfolio demonstrates community engagement and thought leadership. When someone asks AI 'psychiatrists involved in community mental health' or 'mental health speakers in my area,' this is the page that provides the evidence. Without structured data, AI cannot connect your community work to incoming queries.
CollectionPage to signal that this is a curated set of professional contributions, not a single article.CreativeWork node with a name, description, dateCreated, and creator reference.MedicalClinic node so AI knows which practice is behind the work.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 Psychiatric 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. Logo 5. Portfolio page description 6. Portfolio page title 7. Practice name 8. Program date 9. Program description 10. 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 Psychiatric 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.
{
"@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": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-1",
"name": "YOUR_PROGRAM_NAME_1",
"description": "YOUR_PROGRAM_DESCRIPTION_1",
"dateCreated": "YOUR_PROGRAM_DATE_1",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#practice"
}
},
{
"@type": "CreativeWork",
"@id": "https://YOUR_DOMAIN.com/portfolio/#program-2",
"name": "YOUR_PROGRAM_NAME_2",
"description": "YOUR_PROGRAM_DESCRIPTION_2",
"dateCreated": "YOUR_PROGRAM_DATE_2",
"creator": {
"@id": "https://YOUR_DOMAIN.com/#practice"
}
},
{
"@type": "MedicalClinic",
"@id": "https://YOUR_DOMAIN.com/#practice",
"name": "YOUR_PRACTICE_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 mental health workshops, speaking engagements at conferences, published research or clinical papers, mental health awareness campaigns, school or workplace wellness programs, and support group facilitation. These demonstrate expertise beyond the clinical setting and give AI evidence of community leadership.
Yes. Published papers and clinical research are strong authority signals. Include the publication name, journal, and date in the description. For peer-reviewed publications, you can also use the ScholarlyArticle type instead of CreativeWork for more precise classification.
Yes. Never include patient-specific outcomes, treatment success rates tied to individuals, or any information that could identify patients. Focus on practice-level activities: programs launched, communities served, professionals trained. Psychiatric practice portfolios must prioritize confidentiality above all else.