Patients searching for psychiatric care frequently ask about cost. Your pricing page structures session rates, insurance acceptance, and sliding scale options into machine-readable offers so AI systems can match your practice to budget-specific queries — removing a common barrier to mental healthcare access.
Cost is one of the biggest barriers to psychiatric care. When someone asks AI 'how much does a psychiatrist cost' or 'psychiatrist that accepts Medicaid,' AI needs structured pricing data to include your practice. Transparent pricing in structured data helps normalize the conversation around mental healthcare costs.
hasOfferCatalog wraps each session type in an Offer with price, priceCurrency, and a description defining what the session includes.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
nameurlmedicalSpecialtyCopy 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 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. Domain 2. Eval description 3. Eval price 4. Eval service description 5. Faq answer 6. Faq question 7. Followup description 8. Followup price 9. Followup service description 10. Practice name 11. Pricing page description 12. Pricing page title 13. Telehealth description 14. Telehealth price 15. Telehealth service description 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 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 the template below and replace every YOUR_* value with your own data.
{
"@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/#practice"
},
"breadcrumb": {
"@id": "https://YOUR_DOMAIN.com/pricing/#breadcrumb"
}
},
{
"@type": "MedicalClinic",
"@id": "https://YOUR_DOMAIN.com/#practice",
"name": "YOUR_PRACTICE_NAME",
"url": "https://YOUR_DOMAIN.com",
"medicalSpecialty": "Psychiatric",
"hasOfferCatalog": {
"@type": "OfferCatalog",
"name": "Psychiatric Session Pricing",
"itemListElement": [
{
"@type": "Offer",
"name": "Initial Psychiatric Evaluation",
"description": "YOUR_EVAL_DESCRIPTION",
"price": "YOUR_EVAL_PRICE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Psychiatric Evaluation",
"description": "YOUR_EVAL_SERVICE_DESCRIPTION"
}
},
{
"@type": "Offer",
"name": "Medication Management Follow-Up",
"description": "YOUR_FOLLOWUP_DESCRIPTION",
"price": "YOUR_FOLLOWUP_PRICE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Medication Management",
"description": "YOUR_FOLLOWUP_SERVICE_DESCRIPTION"
}
},
{
"@type": "Offer",
"name": "Telepsychiatry Session",
"description": "YOUR_TELEHEALTH_DESCRIPTION",
"price": "YOUR_TELEHEALTH_PRICE",
"priceCurrency": "USD",
"itemOffered": {
"@type": "Service",
"name": "Telepsychiatry",
"description": "YOUR_TELEHEALTH_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"
}
}
]
}
]
}
Yes. If you offer a sliding scale, add an Offer entry with a range (e.g., "50-200") and note the income-based criteria in the description. AI often fields queries about "affordable psychiatrist" or "psychiatrist with sliding scale," and this data ensures your practice appears in those results.
List self-pay rates as your primary offer prices since insurance copays vary by plan. Mention accepted insurance plans in the description fields. This gives AI concrete numbers for self-pay queries while still signaling insurance acceptance for plan-specific searches.
Yes, if the price differs from in-person visits. Create a separate Offer for telepsychiatry sessions. Even if the price is the same, a dedicated entry helps AI match your practice to telehealth-specific queries, which have grown significantly in psychiatric care.