Last Updated: 2026-01-19 Site: https://www.aledlie.com
This directory contains all Schema.org structured data documentation for The Parlor.
Is it a blog post?
|
+-- Technical guide/tutorial? --------> TechArticle
| (implementation docs, how-tos)
|
+-- Data analysis/expert analysis? ---> AnalysisNewsArticle
| (performance reports, case studies)
|
+-- Step-by-step instructions? -------> HowTo
| (numbered steps, clear outcome)
|
+-- Personal story/opinion? ----------> BlogPosting (default)
Add schema_type to your front matter:
---
title: "Your Post Title"
date: 2026-01-19
schema_type: TechArticle # or AnalysisNewsArticle, HowTo
schema_dependencies: "Ruby 3.x, Jekyll 4.x" # TechArticle only
schema_proficiency: "Intermediate" # TechArticle only
---See IMPLEMENTATION-GUIDE.md for complete front matter templates.
| Document | Purpose | When to Use |
|---|---|---|
| IMPLEMENTATION-GUIDE.md | How to implement schemas | Adding/modifying schema markup |
| TESTING-AND-MONITORING.md | Testing and monitoring | Validating changes, checking Search Console |
| SITE_SCHEMA_ANALYSIS.md | Complete site analysis | Understanding current implementation |
The site uses a unified knowledge graph with 5 core entities:
| Entity | @id | Description |
|---|---|---|
| Person | https://www.aledlie.com#person |
Author (Alyshia Ledlie) |
| WebSite | https://www.aledlie.com#website |
Main website |
| Blog | https://www.aledlie.com#blog |
Blog section |
| Integrity Studios | ...#organization |
Organization entity |
| InventoryAI.io | ...#organization |
Organization entity |
Located in _includes/:
Core:
unified-knowledge-graph-schema.html- Main knowledge graph (included on all pages)breadcrumb-schema.html- Breadcrumb navigationwebpage-schema.html- Generic webpage
Content-Specific:
post-schema.html- BlogPosting (default for posts)tech-article-schema.html- TechArticleanalysis-article-schema.html- AnalysisNewsArticlehow-to-schema.html- HowTo
Page-Specific:
about-page-schema.html- About/ProfilePageproject-schema.html- Project pagesreport-schema.html- Report pages
- Google Rich Results Test: https://search.google.com/test/rich-results
- Schema.org Validator: https://validator.schema.org/
- JSON-LD Playground: https://json-ld.org/playground/
- Google Search Console: https://search.google.com/search-console
# Build and serve locally
bundle exec jekyll serve
# View page source, find JSON-LD
# Copy to JSON-LD Playground or Rich Results TestBest for: Technical guides, tutorials, implementation docs
schema_type: TechArticle
schema_dependencies: "Prerequisites needed"
schema_proficiency: "Beginner|Intermediate|Advanced"
schema_section: "Category"
schema_about: "Main subject"Best for: Performance analysis, data-driven articles, expert commentary
schema_type: AnalysisNewsArticle
schema_about: "Subject of analysis"
schema_dateline: "Context, Date"
schema_section: "Category"
schema_backstory: "Why article was created"Best for: Step-by-step tutorials, installation guides
schema_type: HowTo
schema_total_time: "PT30M" # ISO 8601 duration
schema_tools:
- "Tool 1"
- "Tool 2"
schema_steps:
- name: "Step 1"
text: "Instructions"_includes/seo.html
|
+-- unified-knowledge-graph-schema.html (always)
|
+-- page.schema_type?
| |
| +-- TechArticle -------> tech-article-schema.html
| +-- AnalysisNewsArticle -> analysis-article-schema.html
| +-- HowTo -------------> how-to-schema.html
| +-- (default) ---------> post-schema.html (for posts)
|
+-- breadcrumb-schema.html (if breadcrumbs enabled)
+-- webpage-schema.html
All entity identifiers use URL hash fragments:
https://www.aledlie.com#person - Person entity
https://www.aledlie.com#website - WebSite entity
https://www.aledlie.com#blog - Blog entity
https://www.aledlie.com/post-url#blogposting - Individual posts
Historical analysis and reference documents are in archives/:
blog-enhancement-analysis.md- Original blog schema analysisimplementation-complete.md- Initial implementation completion notesentity-analysis/- Page-specific entity analysis (about, blog, vita)
These are kept for reference but are not actively maintained.
- Schema.org: https://schema.org/
- Google Structured Data: https://developers.google.com/search/docs/appearance/structured-data
- Momentic Marketing @id Guide: https://momenticmarketing.com/blog/id-schema-for-seo-llms-knowledge-graphs
- Main CLAUDE.md:
/CLAUDE.md- Project overview and instructions - Schema includes:
/_includes/- Actual template files
If you encounter issues:
- Validate with Rich Results Test first
- Check
TESTING-AND-MONITORING.mdfor troubleshooting - Review
IMPLEMENTATION-GUIDE.mdfor correct usage - Inspect source code in
_includes/schema files