@@ -167,7 +167,7 @@ public final class Schema: Sendable {
167167 /// - Parameters:
168168 /// - description: An optional description of what the string should contain or represent; may
169169 /// use Markdown format.
170- /// - title: An optional human-readable name/summary for the object schema.
170+ /// - title: An optional human-readable name/summary for the schema.
171171 /// - nullable: If `true`, instructs the model that it *may* generate `null` instead of a
172172 /// string; defaults to `false`, enforcing that a string value is generated.
173173 /// - format: An optional modifier describing the expected format of the string. Currently no
@@ -204,7 +204,7 @@ public final class Schema: Sendable {
204204 /// - values: The list of string values that may be generated by the model.
205205 /// - description: An optional description of what the `values` contain or represent; may use
206206 /// Markdown format.
207- /// - title: An optional human-readable name/summary for the object schema.
207+ /// - title: An optional human-readable name/summary for the schema.
208208 /// - nullable: If `true`, instructs the model that it *may* generate `null` instead of one of
209209 /// the strings specified in `values`; defaults to `false`, enforcing that one of the string
210210 /// values is generated.
@@ -233,7 +233,7 @@ public final class Schema: Sendable {
233233 /// - Parameters:
234234 /// - description: An optional description of what the number should contain or represent; may
235235 /// use Markdown format.
236- /// - title: An optional human-readable name/summary for the object schema.
236+ /// - title: An optional human-readable name/summary for the schema.
237237 /// - nullable: If `true`, instructs the model that it may generate `null` instead of a number;
238238 /// defaults to `false`, enforcing that a number is generated.
239239 /// - minimum: If specified, instructs the model that the value should be greater than or
@@ -261,7 +261,7 @@ public final class Schema: Sendable {
261261 /// - Parameters:
262262 /// - description: An optional description of what the number should contain or represent; may
263263 /// use Markdown format.
264- /// - title: An optional human-readable name/summary for the object schema.
264+ /// - title: An optional human-readable name/summary for the schema.
265265 /// - nullable: If `true`, instructs the model that it may return `null` instead of a number;
266266 /// defaults to `false`, enforcing that a number is returned.
267267 /// - minimum: If specified, instructs the model that the value should be greater than or
@@ -296,7 +296,7 @@ public final class Schema: Sendable {
296296 /// - Parameters:
297297 /// - description: An optional description of what the integer should contain or represent; may
298298 /// use Markdown format.
299- /// - title: An optional human-readable name/summary for the object schema.
299+ /// - title: An optional human-readable name/summary for the schema.
300300 /// - nullable: If `true`, instructs the model that it may return `null` instead of an integer;
301301 /// defaults to `false`, enforcing that an integer is returned.
302302 /// - format: An optional modifier describing the expected format of the integer. Currently the
@@ -328,7 +328,7 @@ public final class Schema: Sendable {
328328 /// - Parameters:
329329 /// - description: An optional description of what the boolean should contain or represent; may
330330 /// use Markdown format.
331- /// - title: An optional human-readable name/summary for the object schema.
331+ /// - title: An optional human-readable name/summary for the schema.
332332 /// - nullable: If `true`, instructs the model that it may return `null` instead of a boolean;
333333 /// defaults to `false`, enforcing that a boolean is returned.
334334 public static func boolean( description: String ? = nil , title: String ? = nil ,
@@ -347,7 +347,7 @@ public final class Schema: Sendable {
347347 /// - items: The `Schema` of the elements that the array will hold.
348348 /// - description: An optional description of what the array should contain or represent; may
349349 /// use Markdown format.
350- /// - title: An optional human-readable name/summary for the object schema.
350+ /// - title: An optional human-readable name/summary for the schema.
351351 /// - nullable: If `true`, instructs the model that it may return `null` instead of an array;
352352 /// defaults to `false`, enforcing that an array is returned.
353353 /// - minItems: Instructs the model to produce at least the specified minimum number of elements
@@ -400,7 +400,7 @@ public final class Schema: Sendable {
400400 /// generated JSON string. See ``propertyOrdering`` for details.
401401 /// - description: An optional description of what the object should contain or represent; may
402402 /// use Markdown format.
403- /// - title: An optional human-readable name/summary for the object schema.
403+ /// - title: An optional human-readable name/summary for the schema.
404404 /// - nullable: If `true`, instructs the model that it may return `null` instead of an object;
405405 /// defaults to `false`, enforcing that an object is returned.
406406 public static func object( properties: [ String : Schema ] , optionalProperties: [ String ] = [ ] ,
0 commit comments