plugins/aem/edge-delivery-services-content-ops/skills/structured-data/SKILL.md
Generate JSON-LD structured data for AEM Edge Delivery Services pages. Analyzes page content and metadata to determine the appropriate schema.org types, extracts relevant properties, and produces validated JSON-LD snippets ready for implementation in head.html or scripts.js. Use when adding rich results support, improving search appearance, or auditing existing structured data.
npx skillsauth add adobe/skills structured-dataInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze AEM Edge Delivery Services page content, determine the most appropriate schema.org types, and generate complete JSON-LD snippets with all required and recommended properties filled from actual page content. Provides implementation guidance specific to the EDS architecture.
This skill fetches external web pages for analysis. When fetching:
.plain.html).In EDS, authored content lives in Google Docs or Microsoft Word. Structured data cannot be placed in the source document -- it must be added to the project code via one of two paths:
<head>. Use for site-wide schemas (Organization, WebSite with SearchAction).<meta> tags and injects <script type="application/ld+json"> at runtime.The metadata table is a two-column table at the bottom of the source document with key-value pairs (e.g., template, og:image, description, schema-type, author, publication-date).
Fetch the page at the URL the user provides. Retrieve both:
<meta> tags, <title>, and <head> content..plain.html -- to read the authored body content without site chrome. For root paths, use /index.plain.html.Determine the page type from content signals. See references/structured-data-reference.md for the content type signals table and metadata extraction sources.
If the content type is ambiguous, state your reasoning and suggest the most appropriate type.
Select the most specific schema.org type available. Consider adding BreadcrumbList based on URL path structure for any page.
Generate each type as a separate JSON-LD block. Fill every property from actual page content -- never use placeholder text. Omit properties where no data exists rather than guessing.
{
"@context": "https://schema.org",
"@type": "Article",
"headline": "Getting Started with Edge Delivery Services",
"description": "Learn how to build and deploy your first site with Adobe Edge Delivery Services using document-based authoring.",
"image": "https://www.example.com/media/eds-getting-started-hero.jpg",
"datePublished": "2026-03-10T08:00:00-05:00",
"dateModified": "2026-04-22T14:30:00-05:00",
"author": {
"@type": "Person",
"name": "Alicia Moreno",
"url": "https://www.example.com/authors/alicia-moreno"
},
"publisher": {
"@type": "Organization",
"name": "Example Corp",
"logo": {
"@type": "ImageObject",
"url": "https://www.example.com/media/example-corp-logo.png"
}
},
"mainEntityOfPage": {
"@type": "WebPage",
"@id": "https://www.example.com/blog/getting-started-with-eds"
}
}
Check that: required properties for the type are present (per Google's rich results requirements); all URLs are absolute; every value comes from actual page content; image paths exist on the site (check for /media/ paths in EDS); and content is consistent (headline matches the H1, description matches the meta description).
Report any issues and correct them. Recommend validating with Google's Rich Results Test after deployment.
Recommend head.html for site-wide schemas or scripts.js for page-specific schemas.
Place the JSON-LD directly in head.html at the repository root:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Organization",
"name": "Example Corp",
"url": "https://www.example.com",
"logo": "https://www.example.com/media/example-corp-logo.png"
}
</script>
Generate and inject JSON-LD at runtime based on page metadata:
function addStructuredData() {
const meta = (name) => document.querySelector(`meta[name="${name}"]`)?.content;
const schemaType = meta('schema-type');
if (!schemaType) return;
const jsonLd = {
'@context': 'https://schema.org',
'@type': schemaType,
headline: document.querySelector('h1')?.textContent,
description: meta('description'),
image: meta('og:image'),
datePublished: meta('publication-date'),
dateModified: meta('modified-date'),
author: meta('author') ? { '@type': 'Person', name: meta('author') } : undefined,
mainEntityOfPage: { '@type': 'WebPage', '@id': window.location.href },
};
// Remove undefined values
Object.keys(jsonLd).forEach((key) => jsonLd[key] === undefined && delete jsonLd[key]);
const script = document.createElement('script');
script.type = 'application/ld+json';
script.textContent = JSON.stringify(jsonLd);
document.head.appendChild(script);
}
addStructuredData();
Tell the user which approach fits their case and what metadata properties to add to their source document.
Present the complete, validated JSON-LD in a code block, ready to copy. If multiple types were generated, present each separately and label them.
State the implementation path (head.html vs scripts.js) and any metadata table additions the author should make.
If the page already has structured data (existing <script type="application/ld+json">), note what exists and whether the new snippet should replace or supplement it.
See references/structured-data-reference.md for troubleshooting common issues.
schema-type, author, publication-date) to drive structured data generation from within the document.tools
Use the run-workflow MCP to discover, compose, execute, publish, and save Adobe Firefly workflows. TRIGGER when: user asks what actions are available, what the MCP can do, how to process images/video/3D via workflow, wants to build/run/save/publish a workflow, OR pastes any workflow/batch/execution ID. BARE ID (UUID/workflowId/batchId) = INSPECT ONLY — call inspect_run, NEVER run_workflow_submit. ALWAYS call list_actions first for capability/discovery questions. DO NOT TRIGGER for direct Firefly API calls without MCP (use firefly-api-specs).
tools
Run predefined featured workflows via run-workflow MCP. TRIGGER when user names a featured workflow (retargeting, banners at scale, localization, packaging, banner advertising, etc.) or asks to run a known marketing/production workflow. Requires run-workflow MCP. ALWAYS call get_featured_workflow before compose_workflow. DO NOT TRIGGER for custom one-off workflows with no named template — use run-workflow skill.
tools
Migrate an Adobe Commerce App Builder project from the Integration Starter Kit or Checkout Starter Kit to the new App Management approach. Run from the root of the App Builder project to be migrated. Pass --auto to skip confirmation prompts (suitable for CI or batch use) — auto mode prints a summary of all Q&A questions answered with their defaults. Pass --doc-scan-only to scan README.md and env.dist for outdated content without modifying any files. Use when the user wants to migrate an App Builder project from the Integration Starter Kit or Checkout Starter Kit to the App Management approach, or mentions upgrading their Adobe Commerce extension architecture.
development
Add or modify webhook interceptors in an Adobe Commerce app. Use when the user wants to intercept Commerce operations to validate input, append data, or modify behavior — before or after execution. Requires a base app initialized with commerce-app-init.