Module Values.ComputationModelDataBindingUsageSummarySource

A summary of how a specific data binding is used across computation models. This tracks dependencies between data sources and computation models, allowing you to understand the impact of changes to data sources.

Sourcetype nonrec t = {
  1. computationModelIds : ComputationModelIdList.t option;
    (*

    The list of computation model IDs that use this data binding. This allows identification of all computation models affected by changes to the referenced data source.

    *)
  2. matchedDataBinding : MatchedDataBinding.t option;
    (*

    The data binding matched by the filter criteria. Contains details about specific data binding values used by the computation models.

    *)
}
Sourceval make : ?computationModelIds:??? -> ?matchedDataBinding:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of ID.t ] list | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `String of ID.t ]) 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