The patient forms page helps new patients prepare before their first visit. When someone asks "what do I need to bring to my first dental appointment?" or "where can I download new patient forms?", AI pulls from the structured data here. This blueprint makes your intake process machine-readable.
Patient forms are a common pre-visit search. Structured data on this page lets AI direct patients to your forms and tell them what to expect, reducing no-shows and improving the first-visit experience.
DownloadAction or URL for each form gives AI a direct path to your downloadable documents.Dentist entity ensures AI links these forms to your practice.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 Dentist Patient Forms 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. Insurance form 5. Medical history form 6. Practice name 7. Registration form 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 Dentist Patient Forms" - 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. This block belongs in a <script type="application/ld+json"> tag in the <head> of your patient forms page.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "Dentist",
"@id": "https://YOUR_DOMAIN.com/#practice",
"name": "YOUR_PRACTICE_NAME",
"url": "https://YOUR_DOMAIN.com",
"potentialAction": [
{
"@type": "DownloadAction",
"name": "New Patient Registration Form",
"target": "https://YOUR_DOMAIN.com/forms/YOUR_REGISTRATION_FORM.pdf"
},
{
"@type": "DownloadAction",
"name": "Medical History Form",
"target": "https://YOUR_DOMAIN.com/forms/YOUR_MEDICAL_HISTORY_FORM.pdf"
},
{
"@type": "DownloadAction",
"name": "Insurance Verification Form",
"target": "https://YOUR_DOMAIN.com/forms/YOUR_INSURANCE_FORM.pdf"
}
]
},
{
"@type": "WebPage",
"@id": "https://YOUR_DOMAIN.com/patient-forms/#webpage",
"url": "https://YOUR_DOMAIN.com/patient-forms/",
"name": "Patient Forms — YOUR_PRACTICE_NAME",
"description": "Download new patient registration, medical history, and insurance forms before your first visit.",
"isPartOf": { "@id": "https://YOUR_DOMAIN.com/#website" },
"about": { "@id": "https://YOUR_DOMAIN.com/#practice" }
},
{
"@type": "BreadcrumbList",
"@id": "https://YOUR_DOMAIN.com/patient-forms/#breadcrumb",
"itemListElement": [
{ "@type": "ListItem", "position": 1, "name": "Home", "item": "https://YOUR_DOMAIN.com/" },
{ "@type": "ListItem", "position": 2, "name": "Patient Forms", "item": "https://YOUR_DOMAIN.com/patient-forms/" }
]
},
{
"@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"
}
}
]
}
]
}
Use DownloadAction for PDF forms patients download and print. If your forms are completed online, use a standard URL in the page content. The DownloadAction specifically tells AI there is a file to download, which is useful when patients ask "can I fill out forms before my visit?"
Yes. "New patient forms" and "dental forms download" are common searches from people who have already chosen a dentist and are preparing for their first visit. Structured data on this page ensures AI can guide these patients to exactly what they need.
Include a brief list in the page description — items like photo ID, insurance card, and completed forms. While Schema.org does not have a dedicated "bring to appointment" property, AI reads page content and this metadata helps it answer practical pre-visit questions.