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 = 6
A base64 encoded string of bytes. Not officially supported by the Gemini API.
[EnumMember(Value = "binary")] Binary = 7
A string of any sequence of octets. Not officially supported by the Gemini API.
[EnumMember(Value = "date")] Date = 8
Date string as defined by full-date - RFC 3339. Not officially supported by the Gemini API.
[EnumMember(Value = "date-time")] DateTime = 9
Date and time string as defined by date-time - RFC 3339. Not officially supported by the Gemini API.
[EnumMember(Value = "double")] Double = 2
Equivalent to double.
[EnumMember(Value = "enum")] Enum = 5
A string enum value.
[EnumMember(Value = "float")] Float = 1
Equivalent to float.
[EnumMember(Value = "int32")] Int = 3
Equivalent to int.
[EnumMember(Value = "int64")] Long = 4
Equivalent to long.
Unspecified = 0
Unspecified, don't use.