1234567891011121314151617181920212223242526272829303132(**************************************************************************)(* *)(* Copyright 2018-2023 OCamlPro *)(* *)(* All rights reserved. This file is distributed under the terms of the *)(* GNU Lesser General Public License version 2.1, with the special *)(* exception on linking described in the file LICENSE. *)(* *)(**************************************************************************)typekind=PARAM_INT|PARAM_STRING|PARAM_BOOLtypet={param_id:string;param_name:stringoption;param_descr:stringoption;param_type:kind;param_required:bool;param_examples:stringlist;param_schema:Json_schema.schemaoption;}letmakeparam_type?name?descr?(required=false)?(examples=[])?schemaparam_id={param_id;param_name=name;param_descr=descr;param_type;param_required=required;param_examples=examples;param_schema=schema}letstring=makePARAM_STRINGletint=makePARAM_INTletbool=makePARAM_BOOL