Skip to content

Commit 2b5ddb8

Browse files
committed
[Docs Site] New schema value for Support AI
1 parent f3245c6 commit 2b5ddb8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/schemas/base.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,13 @@ export const baseSchema = ({ image }: SchemaContext) =>
9797
.boolean()
9898
.optional()
9999
.describe(
100-
"If true, this property adds a `noindex` declaration to the page, which will tell internal / external search crawlers to ignore this page. Helpful for pages that are historically accurate, but no longer recommended, such as [Workers Sites](/workers/configuration/sites/).",
100+
"If true, this property adds a `noindex` declaration to the page, which will tell internal / external search crawlers to ignore this page. Helpful for pages that are historically accurate, but no longer recommended, such as [Workers Sites](/workers/configuration/sites/). Companion to the `chatbot_relevant` property.",
101+
),
102+
chatbot_relevant: z
103+
.boolean()
104+
.optional()
105+
.describe(
106+
"If false, this property will de-prioritize this page in the responses surfaced by Support AI. Helpful for pages that are historically accurate, but no longer recommended, such as [Workers Sites](/workers/configuration/sites/). Companion to the `noindex` property.",
101107
),
102108
sidebar,
103109
hideChildren: z

0 commit comments

Comments
 (0)