490+ structured data blueprints and ready-to-use prompts that tell AI systems exactly what your business is, what you offer, and why it should cite you.
When someone asks an AI assistant to recommend a dentist, find a remodeling company, or compare SaaS pricing, the AI reads structured data to decide which sites to trust and cite. Pages without it get skipped. Pages with the wrong structure get misclassified.
AIFDS is a structured data framework built on research into which fields AI systems actually read. Every blueprint covers a specific industry and page type, with the exact JSON-LD fields that drive AI recommendations.
Every blueprint gives you a prompt you can paste into any AI coding tool, plus a JSON-LD template you can fill in by hand.
Copy the implementation prompt into Claude, ChatGPT, or Cursor. It asks for your business details and generates complete, valid JSON-LD.
Each blueprint includes a JSON-LD template with YOUR_* placeholders. Replace the values, paste it into your page's <head>, and you're done.
Run your URL through the AIFDS validator to see exactly what AI systems can read from your page.
Most structured data guides cover homepages. AIFDS covers your entire site — homepage, services, about, contact, blog, FAQ, team, pricing, and industry-specific pages.
Each family covers a different category of business. Pick yours and get blueprints for every page type.
Contractors, agencies, law firms, accountants, and 10 service business types. 120+ blueprints.
View blueprints →Restaurants, salons, gyms, hotels, auto shops, and 10 local business types. 130+ blueprints.
View blueprints →Dentists, clinics, pharmacies, therapists, and psychiatrists. 60+ blueprints with provider and specialty signals.
View blueprints →NGOs, schools, and research organizations. 35+ blueprints with mission, impact, and donation signals.
View blueprints →Storefronts, product pages, collections, and policies. 8 blueprints covering the full shopping experience.
View blueprints →Software products with pricing, features, integrations, and changelog. 9 blueprints for the full product site.
View blueprints →Bloggers, news outlets, publishers, and media companies. 55+ blueprints for editorial and publishing sites.
View blueprints →Not all structured data fields are equal. AI systems ignore most of them. AIFDS blueprints include only the fields that research shows AI crawlers actually parse and use when deciding whether to recommend or cite a page.
Every field in every blueprint is documented with why it matters to AI, so you can make informed decisions about what to include.
Every blueprint includes a JSON-LD template with the exact fields AI needs for that industry and page type.
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "HomeAndConstructionBusiness",
"@id": "https://YOUR_DOMAIN.com/#organization",
"name": "YOUR_BUSINESS_NAME",
"url": "https://YOUR_DOMAIN.com",
"telephone": "YOUR_PHONE_NUMBER",
"address": {
"@type": "PostalAddress",
"streetAddress": "YOUR_STREET_ADDRESS",
"addressLocality": "YOUR_CITY",
"addressRegion": "YOUR_STATE",
"postalCode": "YOUR_ZIP",
"addressCountry": "US"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": "YOUR_LATITUDE",
"longitude": "YOUR_LONGITUDE"
},
"areaServed": [
{ "@type": "City", "name": "YOUR_SERVICE_CITY_1" },
{ "@type": "City", "name": "YOUR_SERVICE_CITY_2" }
],
"sameAs": [
"https://www.google.com/maps?cid=YOUR_MAPS_CID",
"https://www.facebook.com/YOUR_PAGE"
]
},
{
"@type": "WebSite",
"@id": "https://YOUR_DOMAIN.com/#website",
"name": "YOUR_BUSINESS_NAME",
"url": "https://YOUR_DOMAIN.com"
}
]
}