File size: 1,208 Bytes
ee888e1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | <?xml version="1.0" encoding="UTF-8"?>
<!-- NLWeb Schema Map: indexes the site's structured-data surfaces so agents
fetch schema.org data directly instead of extracting it from HTML.
Emerging convention (NLWeb / AgentReady) with no external standard yet;
the namespace and <url><loc><schema> shape follow the published ora.ai
reference implementation. Published at the stable /schemamap.xml path and
linked from agents.md, llms.txt, and agent-view.json. Resolution guards in
tests/deploy-config.test.mjs ensure every <loc> resolves to a tracked file
or a live route, so this file can never point at a 404. -->
<schemamap xmlns="http://www.nlweb.ai/schemas/schemamap/0.1">
<url>
<loc>https://www.worldmonitor.app/</loc>
<schema>https://schema.org/SoftwareApplication</schema>
</url>
<url>
<loc>https://www.worldmonitor.app/blog/</loc>
<schema>https://schema.org/Blog</schema>
</url>
<url>
<loc>https://www.worldmonitor.app/blog/rss.xml</loc>
<schema>https://schema.org/DataFeed</schema>
</url>
<url>
<loc>https://www.worldmonitor.app/blog/glossary/</loc>
<schema>https://schema.org/DefinedTermSet</schema>
</url>
</schemamap>
|