Enum GeminiSchemaDataFormat
- Namespace
- Uralstech.UGemini.Models.Generation.Schema
Defines the format of schema data. Based on the OpenAPI Specification v3.0.3.
public enum GeminiSchemaDataFormat
- Extension Methods
Fields
[EnumMember(Value = "byte")] Base64Bytes = 6A base64 encoded string of bytes. Not officially supported by the Gemini API.
[EnumMember(Value = "binary")] Binary = 7A string of any sequence of octets. Not officially supported by the Gemini API.
[EnumMember(Value = "date")] Date = 8Date string as defined by full-date - RFC 3339. Not officially supported by the Gemini API.
[EnumMember(Value = "date-time")] DateTime = 9Date and time string as defined by date-time - RFC 3339. Not officially supported by the Gemini API.
[EnumMember(Value = "double")] Double = 2Equivalent to double.
[EnumMember(Value = "enum")] Enum = 5A string enum value.
[EnumMember(Value = "float")] Float = 1Equivalent to float.
[EnumMember(Value = "int32")] Int = 3Equivalent to int.
[EnumMember(Value = "int64")] Long = 4Equivalent to long.
Unspecified = 0Unspecified, don't use.