fenfisdi / cdslab_cmodels_api

cmodels API repo
GNU General Public License v3.0
0 stars 0 forks source link

Endpoint: parameters, parameters' units and parameters allowed range #41

Closed jearistiz closed 3 years ago

jearistiz commented 3 years ago

Create a GET request with the following request schema:

{
  simulation_id: ObjectId
}

and the following response schema:

{
  simulation_id: ObjectId,
  parameters: list[str],
  parameters_names: dict[str, str],
  parameters_units: dict[str, str]
  parameters_allowed_range: dict[str, list[float, float]]
}