Skip to content

Commit 2935415

Browse files
committed
Fix for links
1 parent e9ae465 commit 2935415

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

docs-devsite/ai.schema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ export declare abstract class Schema implements SchemaInterface
3636
| [maxItems](./ai.schema.md#schemamaxitems) | | number | The maximum number of items (elements) in a schema of type [SchemaType.ARRAY](./ai.md#schematypearray_enummember)<!-- -->. |
3737
| [minItems](./ai.schema.md#schemaminitems) | | number | The minimum number of items (elements) in a schema of type [SchemaType.ARRAY](./ai.md#schematypearray_enummember)<!-- -->. |
3838
| [nullable](./ai.schema.md#schemanullable) | | boolean | Optional. Whether the property is nullable. Defaults to false. |
39-
| [type](./ai.schema.md#schematype) | | [SchemaType](./ai.md#schematype) | Optional. The type of the property. [SchemaType](./ai.md#schematype)<!-- -->. This can only be undefined when using <code>anyOf</code> schemas, which do not have an explicit type in the . |
39+
| [type](./ai.schema.md#schematype) | | [SchemaType](./ai.md#schematype) | Optional. The type of the property. [SchemaType](./ai.md#schematype)<!-- -->. This can only be undefined when using <code>anyOf</code> schemas, which do not have an explicit type in the [OpenAPI specification](https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type)<!-- -->. |
4040
4141
## Methods
4242
@@ -139,7 +139,7 @@ nullable: boolean;
139139
140140
## Schema.type
141141
142-
Optional. The type of the property. [SchemaType](./ai.md#schematype)<!-- -->. This can only be undefined when using `anyOf` schemas, which do not have an explicit type in the .
142+
Optional. The type of the property. [SchemaType](./ai.md#schematype)<!-- -->. This can only be undefined when using `anyOf` schemas, which do not have an explicit type in the [OpenAPI specification](https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type)<!-- -->.
143143
144144
<b>Signature:</b>
145145

docs-devsite/ai.schemainterface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ export interface SchemaInterface extends SchemaShared<SchemaInterface>
2323
2424
| Property | Type | Description |
2525
| --- | --- | --- |
26-
| [type](./ai.schemainterface.md#schemainterfacetype) | [SchemaType](./ai.md#schematype) | The type of the property. this can only be undefined when using <code>anyof</code> schemas, which do not have an explicit type in the . |
26+
| [type](./ai.schemainterface.md#schemainterfacetype) | [SchemaType](./ai.md#schematype) | The type of the property. this can only be undefined when using <code>anyof</code> schemas, which do not have an explicit type in the [OpenAPI Specification](https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type)<!-- -->. |
2727
2828
## SchemaInterface.type
2929
30-
The type of the property. this can only be undefined when using `anyof` schemas, which do not have an explicit type in the .
30+
The type of the property. this can only be undefined when using `anyof` schemas, which do not have an explicit type in the [OpenAPI Specification](https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type)<!-- -->.
3131
3232
<b>Signature:</b>
3333

packages/ai/src/requests/schema-builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export abstract class Schema implements SchemaInterface {
3535
/**
3636
* Optional. The type of the property. {@link
3737
* SchemaType}. This can only be undefined when using `anyOf` schemas, which do not have an
38-
* explicit type in the {@link OpenAPI specification | https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type}.
38+
* explicit type in the {@link https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type | OpenAPI specification}.
3939
*/
4040
type?: SchemaType;
4141
/** Optional. The format of the property.

packages/ai/src/types/schema.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export interface SchemaRequest extends SchemaShared<SchemaRequest> {
114114
export interface SchemaInterface extends SchemaShared<SchemaInterface> {
115115
/**
116116
* The type of the property. this can only be undefined when using `anyof` schemas,
117-
* which do not have an explicit type in the {@link OpenAPI specification | https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type}.
117+
* which do not have an explicit type in the {@link https://swagger.io/docs/specification/v3_0/data-models/data-types/#any-type | OpenAPI Specification}.
118118
*/
119119
type?: SchemaType;
120120
}

0 commit comments

Comments
 (0)