Layer 1: Schema.org
Standard structured data on an AI subdomain. Works today with no platform adoption required.
Make your website discoverable, understandable, and actionable by AI systems
LLM-LD (Large Language Model Linked Data) is a specification for structuring your website's information so that AI systems and agents can understand your business. JSON-LD is for search engines. LLM-LD is for AI.
AI crawlers visit your site every day. They find HTML designed for humans, not machines. They scrape your HTML, parse your nav menus, and try to figure out what your business does. They get it wrong. They miss your services, your locations, your differentiators.
Structured data tells AI systems exactly what you do, who you serve, where you operate, and what actions to recommend. When someone asks an AI about your industry, it has everything it needs to recommend you accurately and in context.
/.well-known/llm-index.json containing everything AI needs.A minimal llm-index.json for a dental practice:
{
"@context": ["https://schema.org", "https://llmld.org/v1"],
"@type": "llmld:AIWebsite",
"llmld:summary": {
"one_liner": "Family dental practice in Springfield, IL",
"key_facts": [
"Accepting new patients",
"Open Saturdays",
"Most insurance accepted"
]
},
"llmld:actions": {
"primary": [{"name": "Book Appointment", "url": "https://acmedental.com/book"}]
}
}That is it. One file.