Module Values_1.IcebergSchemaSource

Defines the schema structure for an Iceberg table, including field definitions, data types, and schema metadata.

Sourcetype nonrec t = {
  1. schemaId : Values_0.Integer.t option;
    (*

    The unique identifier for this schema version within the Iceberg table's schema evolution history.

    *)
  2. identifierFieldIds : IntegerList.t option;
    (*

    The list of field identifiers that uniquely identify records in the table, used for row-level operations and deduplication.

    *)
  3. type_ : IcebergStructTypeEnum.t option;
    (*

    The root type of the schema structure, typically "struct" for Iceberg table schemas.

    *)
  4. fields : IcebergStructFieldList.t;
    (*

    The list of field definitions that make up the table schema, including field names, types, and metadata.

    *)
}
Sourceval context_ : string
Sourceval make : ?schemaId:??? -> ?identifierFieldIds:??? -> ?type_:??? -> fields:IcebergStructFieldList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_0.Integer.t | `List of [> `Integer of Values_0.Integer.t | `Structure of (string * [> `Boolean of Values_0.Boolean.t | `Integer of Values_0.Integer.t | `String of Values_0.ColumnNameString.t | `Structure of 'a list ]) list ] list ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t