Values.CreateModelRequestSourceCreates a new Model.
type nonrec t = {apiId : string;The API identifier.
*)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:??? ->
apiId:string ->
name:StringWithLengthBetween1And128.t ->
schema:StringWithLengthBetween0And32K.t ->
unit ->
t