{
  "_schema": "knowledge-base-article/v1",
  "title": "Schema.org Implementation for AI Discovery",
  "intro": "Best practices for adding Schema.org structured data to enable AI understanding of your website.",
  "sections": [
    {
      "heading": "Required Entity Types",
      "body": "<ul><li><code>Organization</code> — Your business or project identity</li><li><code>WebSite</code> — Site-level metadata and search action</li><li><code>WebPage</code> — Individual page context</li></ul>"
    },
    {
      "heading": "Recommended Entity Types",
      "body": "<ul><li><code>Service</code> — Your offerings and capabilities</li><li><code>Dataset</code> — Structured data resources</li><li><code>SoftwareApplication</code> — Tools and platforms</li><li><code>Brand</code> — Brand identity</li></ul>"
    },
    {
      "heading": "Implementation",
      "body": "<p>Use JSON-LD in <code>&lt;script type=\"application/ld+json\"&gt;</code> tags in the <code>&lt;head&gt;</code> section.</p><pre><code>{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"Organization\",\n  \"name\": \"Digital Karma Web\",\n  \"url\": \"https://www.digitalkarmaweb.com\",\n  \"description\": \"Open standard for AI-ready websites\"\n}</code></pre><p>Entity files can also be stored as standalone <code>.jsonld</code> files at <code>/entities/organization.jsonld</code> for direct AI agent consumption.</p>"
    }
  ],
  "seo": {
    "meta_title": "Schema.org Implementation | Knowledge Base | Digital Karma Web",
    "meta_description": "Best practices for adding Schema.org structured data markup to enable AI discovery and understanding of your website."
  }
}
