diff --git a/website/pages/docs/json/schema.mdx b/website/pages/docs/json/schema.mdx index 755bde5465..a756d0d72b 100644 --- a/website/pages/docs/json/schema.mdx +++ b/website/pages/docs/json/schema.mdx @@ -139,7 +139,6 @@ If you write any comment on a property, it would fill the `IJsonSchema.descripti - `@hidden` - `@internal` - `@title {string}` - - `@default {value}` Let's see how those [type tags](../validators/tags/#type-tags), comment tags and description comments are working with example code. @@ -183,7 +182,6 @@ interface Special { * * @exclusiveMinimum 19 * @maximum 100 - * @default 30 */ number?: number; diff --git a/website/pages/docs/llm/schema.mdx b/website/pages/docs/llm/schema.mdx index 57a147d692..6589a31b13 100644 --- a/website/pages/docs/llm/schema.mdx +++ b/website/pages/docs/llm/schema.mdx @@ -452,7 +452,6 @@ If you write any comment on a property, it would fill the `IJsonSchema.descripti - `@hidden` - `@internal` - `@title {string}` - - `@default {value}` Let's see how those [type tags](../validators/tags/#type-tags), comment tags and description comments are working with example code. @@ -496,7 +495,6 @@ interface Special { * * @exclusiveMinimum 19 * @maximum 100 - * @default 30 */ number?: number; diff --git a/website/pages/docs/llm/strategy.mdx b/website/pages/docs/llm/strategy.mdx index 1d0b85aec1..4cc5abdd93 100644 --- a/website/pages/docs/llm/strategy.mdx +++ b/website/pages/docs/llm/strategy.mdx @@ -1042,7 +1042,6 @@ interface Special { * * @exclusiveMinimum 19 * @maximum 100 - * @default 30 */ number?: number; @@ -1160,7 +1159,6 @@ If you write any comment on a property, it would fill the `IJsonSchema.descripti - `@hidden` - `@internal` - `@title {string}` - - `@default {value}` Let's see how those [type tags](../validators/tags/#type-tags), comment tags and description comments are working with example code.