NLWeb Schema.org Grounding
Before writing code
Fetch live references:
- Fetch https://schema.org/ for the canonical Schema.org vocabulary.
- Fetch https://github.com/nlweb-ai/NLWeb/blob/main/config/site_types.xml in the live repo for the exact list of supported Schema.org types and the tool inheritance tree per type.
- Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-prompts.md for how per-type prompts and
<returnStruc> shapes work.
- Web-search
schema.org JSON-LD validator — Google's Rich Results Test is a quick way to validate before ingest.
- Check
AskAgent/python/methods/recipe_substitution.py, accompaniment.py, compare_items.py for examples of how type-specific tools consume the schema_object.
Conceptual Architecture
Why Schema.org Matters to NLWeb
NLWeb's defining design choice: results carry their full Schema.org object back to the agent. Unlike a generic RAG system that returns text chunks, NLWeb returns structured JSON-LD — so an agent receiving a Recipe result gets ingredients, cookTime, nutrition, recipeYield, not just a paragraph of text. This is what makes NLWeb results agent-actionable.
R.V. Guha (NLWeb's author) co-created Schema.org for exactly this reason — the data was already structured; NLWeb finally exposes it to agents.
Schema.org Types NLWeb Knows About
site_types.xml enumerates the types with per-type tool / prompt overrides. Common types (verify the live file):
| Type |
Use Case |
Type-Specific Tools |
Recipe |
Cooking sites |
recipe_substitution, accompaniment |
Product |
E-commerce |
compare_items, item_details |
Movie / TVSeries |
Streaming/reviews |
compare_items |
Event |
Calendars, ticketing |
item_details |
Article / NewsArticle / BlogPosting |
News, blogs |
summarize-mode default |
RealEstate / Apartment / House |
Listings |
item_details, compare |
Course |
EdTech |
item_details |
Restaurant / LocalBusiness |
Maps, directories |
accompaniment, item_details |
Book |
Catalogs |
compare, item_details |
Person / Organization |
Profiles |
item_details |
NLWeb falls back to a default tool set for any Schema.org type not explicitly enumerated.
JSON-LD Embedding Patterns
Schema.org JSON-LD is typically embedded in HTML via a <script type="application/ld+json"> tag:
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Recipe",
"name": "Classic Tomato Soup",
"url": "https://example.com/recipes/tomato-soup",
"image": "https://example.com/images/tomato-soup.jpg",
"author": { "@type": "Person", "name": "Jane Doe" },
"datePublished": "2025-09-12",
"description": "A simple weeknight tomato soup.",
"recipeIngredient": ["6 ripe tomatoes", "1 onion", "..."],
"recipeInstructions": [...],
"nutrition": { "@type": "NutritionInformation", "calories": "200" },
"cookTime": "PT30M",
"recipeYield": "4 servings"
}
</script>
NLWeb's URL-list ingest path extracts this directly. The richer the JSON-LD, the more useful the result.
The schema_object Field in Responses
Every NLWeb result contains:
{
"url": "...",
"name": "...",
"site": "...",
"score": 0.87,
"description": "...",
"schema_object": { /* the full JSON-LD as ingested */ }
}
Agents can pattern-match on schema_object.@type to render appropriately, extract specific properties (e.g., offers.price for products), or chain to a follow-up tool call.
sites.xml and Per-Site Registration
In addition to config_nlweb.yaml's sites: allowlist, the demo data ships with a sites.xml-style registry tying site names to crawl sources and Schema.org type defaults. Check the live repo for the current registration convention — this is an area that's been evolving.
Schema.org Required Fields by Type (high-signal subset)
| Type |
Always include |
| Recipe |
name, url, image, recipeIngredient, recipeInstructions, cookTime, recipeYield |
| Product |
name, url, image, description, offers (price, priceCurrency, availability) |
| Article |
headline, url, image, author, datePublished, description, articleBody (or summary) |
| Event |
name, url, startDate, location, description |
| Movie |
name, url, image, director, datePublished, genre, description |
| RealEstate |
name, url, image, address, numberOfRooms, floorSize, price |
The fewer fields populated, the worse the result quality — especially for mode=generate answers.
Per-Type Prompt and Tool Inheritance
site_types.xml defines a tree:
- Root prompts apply to all types
- Per-type overrides specialize ranking, summarization, and tool selection
This is mixed-mode programming in action — small, type-aware LLM calls drive the response.
Implementation Guidance
Auditing an Existing Site
Before ingest:
- Visit a representative page and view source — look for
<script type="application/ld+json">.
- Validate with Google's Rich Results Test or Schema.org validator.
- Confirm the
@type is one NLWeb's site_types.xml knows about — if not, results still work but use default prompts.
Authoring JSON-LD for NLWeb
- Always set
@context: "https://schema.org" — NLWeb's parser keys off this.
- Always include
url — it's the deduplication key across retrieval backends.
- Use specific subtypes (e.g.,
Recipe not CreativeWork) so type-specific tools activate.
- Embed images and dates — agents use them for rendering and freshness checks.
- Nest related objects with
@type discriminators (e.g., author as Person, offers as Offer).
Validating Schema Quality Post-Ingest
After loading, hit a result and inspect schema_object:
curl 'http://localhost:8000/ask?query=quick+dinners&site=recipes&streaming=false&mode=list' | jq '.results[0].schema_object'
If schema_object is missing key fields, fix the source HTML — not NLWeb's config.
Adding a New Schema.org Type
If you want a custom domain (say, Podcast episodes) with type-specific tools:
- Add a
<site_type> entry in site_types.xml referencing your @type value.
- Define type-specific prompts in
prompts.xml (or inherit defaults).
- Optionally write a handler in
methods/ (see nlweb-tools-framework).
- Reload and re-test.
Mapping Non-Schema.org Sources
If your source isn't JSON-LD (CSV, proprietary API), map fields to Schema.org at ingest time, not query time. Update rss2schema.py or write a small adapter that emits Schema.org JSON before calling db_load. The richer the mapping, the better the agent experience.
Common Pitfalls
@type is missing or non-Schema.org — results work but type-specific tools never fire.
url is relative — breaks deduplication; always emit absolute URLs.
- Date format is non-ISO —
datePublished: "2025-09-12" works; "Sept 12, 2025" does not.
offers is a bare string instead of an Offer object — agents lose the price field.
- Description is too short / too generic — ranking suffers because retrieval relies on description embeddings.
Always validate JSON-LD with an external tool before assuming ingest will work — silent parser failures are common.
1---2name: nlweb-schema-org-grounding3description: Prepare and structure site content as Schema.org JSON-LD for NLWeb ingestion — covers the supported types (Recipe, Product, Movie, Event, Article, RealEstate, Course, etc.), per-type behavior in NLWeb's tool routing, JSON-LD embedding patterns in HTML, sites.xml registration, and how the `schema_object` flows through ranking back to agent results. Use when authoring or auditing the structured data on a site that will be exposed via NLWeb.4---56# NLWeb Schema.org Grounding78## Before writing code910**Fetch live references**:111. Fetch https://schema.org/ for the canonical Schema.org vocabulary.122. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/config/site_types.xml in the live repo for the **exact list of supported Schema.org types** and the tool inheritance tree per type.133. Fetch https://github.com/nlweb-ai/NLWeb/blob/main/docs/nlweb-prompts.md for how per-type prompts and `<returnStruc>` shapes work.144. Web-search `schema.org JSON-LD validator` — Google's Rich Results Test is a quick way to validate before ingest.155. Check `AskAgent/python/methods/recipe_substitution.py`, `accompaniment.py`, `compare_items.py` for examples of how type-specific tools consume the `schema_object`.1617## Conceptual Architecture1819### Why Schema.org Matters to NLWeb2021NLWeb's defining design choice: **results carry their full Schema.org object back to the agent**. Unlike a generic RAG system that returns text chunks, NLWeb returns structured JSON-LD — so an agent receiving a `Recipe` result gets `ingredients`, `cookTime`, `nutrition`, `recipeYield`, not just a paragraph of text. This is what makes NLWeb results *agent-actionable*.2223R.V. Guha (NLWeb's author) co-created Schema.org for exactly this reason — the data was already structured; NLWeb finally exposes it to agents.2425### Schema.org Types NLWeb Knows About2627`site_types.xml` enumerates the types with per-type tool / prompt overrides. Common types (verify the live file):2829| Type | Use Case | Type-Specific Tools |30|------|----------|---------------------|31| `Recipe` | Cooking sites | recipe_substitution, accompaniment |32| `Product` | E-commerce | compare_items, item_details |33| `Movie` / `TVSeries` | Streaming/reviews | compare_items |34| `Event` | Calendars, ticketing | item_details |35| `Article` / `NewsArticle` / `BlogPosting` | News, blogs | summarize-mode default |36| `RealEstate` / `Apartment` / `House` | Listings | item_details, compare |37| `Course` | EdTech | item_details |38| `Restaurant` / `LocalBusiness` | Maps, directories | accompaniment, item_details |39| `Book` | Catalogs | compare, item_details |40| `Person` / `Organization` | Profiles | item_details |4142NLWeb falls back to a default tool set for any Schema.org type not explicitly enumerated.4344### JSON-LD Embedding Patterns4546Schema.org JSON-LD is typically embedded in HTML via a `<script type="application/ld+json">` tag:4748```html49<script type="application/ld+json">50{51 "@context": "https://schema.org",52 "@type": "Recipe",53 "name": "Classic Tomato Soup",54 "url": "https://example.com/recipes/tomato-soup",55 "image": "https://example.com/images/tomato-soup.jpg",56 "author": { "@type": "Person", "name": "Jane Doe" },57 "datePublished": "2025-09-12",58 "description": "A simple weeknight tomato soup.",59 "recipeIngredient": ["6 ripe tomatoes", "1 onion", "..."],60 "recipeInstructions": [...],61 "nutrition": { "@type": "NutritionInformation", "calories": "200" },62 "cookTime": "PT30M",63 "recipeYield": "4 servings"64}65</script>66```6768NLWeb's URL-list ingest path extracts this directly. The richer the JSON-LD, the more useful the result.6970### The `schema_object` Field in Responses7172Every NLWeb result contains:7374```json75{76 "url": "...",77 "name": "...",78 "site": "...",79 "score": 0.87,80 "description": "...",81 "schema_object": { /* the full JSON-LD as ingested */ }82}83```8485Agents can pattern-match on `schema_object.@type` to render appropriately, extract specific properties (e.g., `offers.price` for products), or chain to a follow-up tool call.8687### sites.xml and Per-Site Registration8889In addition to `config_nlweb.yaml`'s `sites:` allowlist, the demo data ships with a `sites.xml`-style registry tying site names to crawl sources and Schema.org type defaults. Check the live repo for the current registration convention — this is an area that's been evolving.9091### Schema.org Required Fields by Type (high-signal subset)9293| Type | Always include |94|------|----------------|95| Recipe | name, url, image, recipeIngredient, recipeInstructions, cookTime, recipeYield |96| Product | name, url, image, description, offers (price, priceCurrency, availability) |97| Article | headline, url, image, author, datePublished, description, articleBody (or summary) |98| Event | name, url, startDate, location, description |99| Movie | name, url, image, director, datePublished, genre, description |100| RealEstate | name, url, image, address, numberOfRooms, floorSize, price |101102The fewer fields populated, the worse the result quality — especially for `mode=generate` answers.103104### Per-Type Prompt and Tool Inheritance105106`site_types.xml` defines a tree:107- Root prompts apply to all types108- Per-type overrides specialize ranking, summarization, and tool selection109110This is **mixed-mode programming** in action — small, type-aware LLM calls drive the response.111112## Implementation Guidance113114### Auditing an Existing Site115116Before ingest:1171. Visit a representative page and view source — look for `<script type="application/ld+json">`.1182. Validate with Google's Rich Results Test or Schema.org validator.1193. Confirm the `@type` is one NLWeb's `site_types.xml` knows about — if not, results still work but use default prompts.120121### Authoring JSON-LD for NLWeb122123- **Always set `@context: "https://schema.org"`** — NLWeb's parser keys off this.124- **Always include `url`** — it's the deduplication key across retrieval backends.125- **Use specific subtypes** (e.g., `Recipe` not `CreativeWork`) so type-specific tools activate.126- **Embed images and dates** — agents use them for rendering and freshness checks.127- **Nest related objects** with `@type` discriminators (e.g., `author` as `Person`, `offers` as `Offer`).128129### Validating Schema Quality Post-Ingest130131After loading, hit a result and inspect `schema_object`:132133```bash134curl 'http://localhost:8000/ask?query=quick+dinners&site=recipes&streaming=false&mode=list' | jq '.results[0].schema_object'135```136137If `schema_object` is missing key fields, fix the source HTML — not NLWeb's config.138139### Adding a New Schema.org Type140141If you want a custom domain (say, `Podcast` episodes) with type-specific tools:1421. Add a `<site_type>` entry in `site_types.xml` referencing your `@type` value.1432. Define type-specific prompts in `prompts.xml` (or inherit defaults).1443. Optionally write a handler in `methods/` (see `nlweb-tools-framework`).1454. Reload and re-test.146147### Mapping Non-Schema.org Sources148149If your source isn't JSON-LD (CSV, proprietary API), map fields to Schema.org **at ingest time**, not query time. Update `rss2schema.py` or write a small adapter that emits Schema.org JSON before calling `db_load`. The richer the mapping, the better the agent experience.150151### Common Pitfalls152153- **`@type` is missing or non-Schema.org** — results work but type-specific tools never fire.154- **`url` is relative** — breaks deduplication; always emit absolute URLs.155- **Date format is non-ISO** — `datePublished: "2025-09-12"` works; `"Sept 12, 2025"` does not.156- **`offers` is a bare string instead of an `Offer` object** — agents lose the price field.157- **Description is too short / too generic** — ranking suffers because retrieval relies on description embeddings.158159Always validate JSON-LD with an external tool before assuming ingest will work — silent parser failures are common.