You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| [title](./ai.schemashared.md#schemasharedtitle) |string|Thetitleoftheproperty. Thishelpsdocumenttheschema's purpose but does not typically constrain the generated value. It can subtly guide the model by clarifying the intent of a field. |
32
36
33
37
## SchemaShared.description
34
38
@@ -80,6 +84,26 @@ Optional. The items of the property.
80
84
items?: T;
81
85
```
82
86
87
+
## SchemaShared.maximum
88
+
89
+
The maximum value of a numeric type.
90
+
91
+
<b>Signature:</b>
92
+
93
+
```typescript
94
+
maximum?: number;
95
+
```
96
+
97
+
## SchemaShared.minimum
98
+
99
+
The minimum value of a numeric type.
100
+
101
+
<b>Signature:</b>
102
+
103
+
```typescript
104
+
minimum?: number;
105
+
```
106
+
83
107
## SchemaShared.nullable
84
108
85
109
Optional. Whether the property is nullable.
@@ -101,3 +125,23 @@ properties?: {
101
125
[k: string]: T;
102
126
};
103
127
```
128
+
129
+
## SchemaShared.propertyOrdering
130
+
131
+
A hint to the gemini model, suggesting the order in which the keys should appear in the generated JSON string.
132
+
133
+
<b>Signature:</b>
134
+
135
+
```typescript
136
+
propertyOrdering?:string[];
137
+
```
138
+
139
+
## SchemaShared.title
140
+
141
+
The title of the property. This helps document the schema's purpose but does not typically constrain the generated value. It can subtly guide the model by clarifying the intent of a field.
0 commit comments