Module Values.FormInputSource

The details of a metadata form.

Sourcetype nonrec t = {
  1. formName : FormName.t;
    (*

    The name of the metadata form.

    *)
  2. typeIdentifier : FormTypeIdentifier.t option;
    (*

    The ID of the metadata form type.

    *)
  3. typeRevision : RevisionInput.t option;
    (*

    The revision of the metadata form type.

    *)
  4. content : FormInputContentString.t option;
    (*

    The content of the metadata form.

    *)
}
Sourceval context_ : string
Sourceval make : ?typeIdentifier:??? -> ?typeRevision:??? -> ?content:??? -> formName:FormName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of FormName.t ]) 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