Skip to content

Commit c88a4cc

Browse files
committed
Remove format for double helper functions
We can omit the format for the double-precision floating point type
1 parent 442bab2 commit c88a4cc

File tree

1 file changed

+1
-1
lines changed
  • firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type

1 file changed

+1
-1
lines changed

firebase-vertexai/src/main/kotlin/com/google/firebase/vertexai/type/Schema.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ internal constructor(
105105
@JvmName("numDouble")
106106
@JvmOverloads
107107
public fun double(description: String? = null, nullable: Boolean = false): Schema =
108-
Schema(description = description, nullable = nullable, type = "NUMBER", format = "double")
108+
Schema(description = description, nullable = nullable, type = "NUMBER")
109109

110110
/**
111111
* Returns a [Schema] for a single-precision floating-point number.

0 commit comments

Comments
 (0)