changedInput schema / properties / slug / description
Previous value: -"Kebab-case slug, as listed by `list_topics` or `search`. Examples: `content-security-policy`, `meta-robots`, `llms-txt`."New value: +"Kebab-case slug, as listed by `list_topics` or `search`. Matched case-insensitively, with close-match suggestions on miss. Examples: `content-security-policy`, `meta-robots`, `llms-txt`."
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "category": {
+ "enum": [
+ "foundations",
+ "seo",
+ "accessibility",
+ "security",
+ "well-known",
+ "agent-readiness",
+ "performance",
+ "privacy",
+ "resilience",
+ "i18n"
+ ],
+ "type": "string"
+ },
+ "markdown": {
+ "description": "The full page as Markdown with YAML frontmatter.",
+ "type": "string"
+ },
+ "mdUrl": {
+ "description": "Raw Markdown URL.",
+ "type": "string"
+ },
+ "relatedSlugs": {
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "slug": {
+ "type": "string"
+ },
+ "sources": {
+ "description": "Primary-source citations for this page.",
+ "items": {
+ "properties": {
+ "publisher": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "url": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "title",
+ "url"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "status": {
+ "enum": [
+ "required",
+ "recommended",
+ "optional",
+ "avoid"
+ ],
+ "type": "string"
+ },
+ "summary": {
+ "type": "string"
+ },
+ "title": {
+ "type": "string"
+ },
+ "updated": {
+ "description": "ISO 8601 timestamp of the last content update, or null.",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "url": {
+ "description": "Canonical HTML URL.",
+ "type": "string"
+ }
+ },
+ "required": [
+ "slug",
+ "title",
+ "category",
+ "status",
+ "url",
+ "mdUrl",
+ "summary",
+ "markdown"
+ ],
+ "type": "object"
+}