Values.CreateModelInputSourceRepresents the input parameters for a CreateModel request.
type nonrec t = {contentType : StringWithLengthBetween1And256.t option;The content-type for the model, for example, "application/json".
*)description : StringWithLengthBetween0And1024.t option;The description of the model.
*)name : StringWithLengthBetween1And128.t;The name of the model. Must be alphanumeric.
*)schema : StringWithLengthBetween0And32K.t;The schema for the model. For application/json models, this should be JSON schema draft 4 model.
*)}val make :
?contentType:??? ->
?description:??? ->
name:StringWithLengthBetween1And128.t ->
schema:StringWithLengthBetween0And32K.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string * [> `String of StringWithLengthBetween1And256.t ]) list ]