Module Values_1.EntityConfigurationSource

Configuration that defines how to interact with a specific data entity through the REST API, including its access patterns and schema definition.

Sourcetype nonrec t = {
  1. sourceConfiguration : SourceConfiguration.t option;
    (*

    The source configuration that defines how to make requests to access this entity's data through the REST API.

    *)
  2. schema : FieldDefinitionMap.t option;
    (*

    The schema definition for this entity, including field names, types, and other metadata that describes the structure of the data.

    *)
}
Sourceval make : ?sourceConfiguration:??? -> ?schema:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of FieldDefinitionMapKeyString.t ] * [> `Structure of (string * [> `Enum of string | `String of Values_0.String_.t ]) list ]) list | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `Boolean of bool | `Enum of string | `List of [> `String of string ] list | `String of string ]) list ] list | `String of PathString.t | `Structure of (string * [> `String of JsonPathString.t | `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of Values_0.ConnectorPropertyKey.t | `Structure of (string * [> `String of JsonPathString.t ]) list ]) 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