Module Values.DatasetSource

The structure for a Dataset.

Sourcetype nonrec t = {
  1. datasetId : DatasetId.t option;
    (*

    An identifier for a Dataset.

    *)
  2. datasetArn : DatasetArn.t option;
    (*

    The ARN identifier of the Dataset.

    *)
  3. datasetTitle : DatasetTitle.t option;
    (*

    Display title for a Dataset.

    *)
  4. kind : DatasetKind.t option;
    (*

    The format in which Dataset data is structured. TABULAR – Data is structured in a tabular format. NON_TABULAR – Data is structured in a non-tabular format.

    *)
  5. datasetDescription : DatasetDescription.t option;
    (*

    Description for a Dataset.

    *)
  6. ownerInfo : DatasetOwnerInfo.t option;
    (*

    Contact information for a Dataset owner.

    *)
  7. createTime : TimestampEpoch.t option;
    (*

    The timestamp at which the Dataset was created in FinSpace. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  8. lastModifiedTime : TimestampEpoch.t option;
    (*

    The last time that the Dataset was modified. The value is determined as epoch time in milliseconds. For example, the value for Monday, November 1, 2021 12:00:00 PM UTC is specified as 1635768000000.

    *)
  9. schemaDefinition : SchemaUnion.t option;
    (*

    Definition for a schema on a tabular Dataset.

    *)
  10. alias : AliasString.t option;
    (*

    The unique resource identifier for a Dataset.

    *)
}
Sourceval make : ?datasetId:??? -> ?datasetArn:??? -> ?datasetTitle:??? -> ?kind:??? -> ?datasetDescription:??? -> ?ownerInfo:??? -> ?createTime:??? -> ?lastModifiedTime:??? -> ?schemaDefinition:??? -> ?alias:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of TimestampEpoch.t | `String of DatasetId.t | `Structure of (string * [> `String of OwnerName.t | `Structure of (string * [> `List of [> `String of ColumnName.t | `Structure of (string * [> `Enum of string | `String of ColumnName.t ]) list ] 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