The Schema page lets you inspect the exact JSON-LD structured data that AEO God Mode outputs for any post or page on your site. Use it to verify your schema before publishing, debug issues, and review what data AI systems and search engines see.
Accessing the Schema Preview
- Go to AEO God Mode > Schema in your WordPress admin sidebar
- This opens the Schema page at
admin.php?page=aeo-god-mode#/schema - Select a published post or page from the dropdown
What the Preview Shows
The schema preview calls the REST API endpoint /aeo-god-mode/v1/schema/{post_id} and displays:
Schema Types Generated
For a typical blog post, you’ll see multiple schema blocks:
- Article with headline, datePublished, dateModified, author, publisher, wordCount, articleSection, image, description, and URL
- BreadcrumbList with the navigation path from Home through category to the post
- Person for the post author, including name, URL, and avatar
If the post content contains FAQ-style question/answer pairs, you’ll also see FAQPage schema. If it contains step-by-step instructions under an appropriate heading, HowTo schema appears.
Field-Level Detail
Each schema type shows all its properties. For Article schema, this includes:
@type: “Article”headline: The post titledatePublished/dateModified: ISO 8601 format datesauthor: Person object with name and URLpublisher: Organization object with name and logowordCount: Actual word count of the post contentarticleSection: Primary category nameimage: Featured image object (URL, width, height)description: Post excerpt or auto-generated summaryinLanguage: Site language codemainEntityOfPage/isPartOf: WebPage referencesspeakable: CSS selectors (only if speakable is enabled in Settings)
Schema Validation
AEO God Mode includes a validation endpoint at /aeo-god-mode/v1/validate/{post_id}. On the Schema page:
- Select a post
- Click the validation button
- The tool checks for common issues like missing required fields, empty values, or duplicate schema types
There’s also a bulk validation option via /aeo-god-mode/v1/validate/bulk that lets you check multiple posts at once.
Manual Schema Overrides
If the auto-detected schema needs adjustment for a specific post:
- Select the post on the Schema page
- Edit the schema fields directly
- Save your changes
Overrides are stored in post meta as asgm_schema_override and take priority over the auto-detection engine. The REST endpoint /aeo-god-mode/v1/schema/{post_id} accepts POST requests to save overrides.
Checking Schema on the Live Site
To verify schema output on a published page:
- Visit the page in your browser
- Right-click and select “View Page Source”
- Search for
application/ld+json - You’ll see the schema blocks wrapped in
tags
Each schema type is output as a separate JSON-LD block in the page , injected at priority 1 on the wp_head hook.
Troubleshooting
Preview shows empty schema:
- Make sure the Schema module is enabled in Settings
- Check that the post is published (not a draft)
- If another SEO plugin handles that schema type, AEO God Mode defers to it
Schema doesn't match preview:
- Clear any page cache (object cache, CDN, or caching plugin)
- The preview always shows live data; cached pages may show older schema