Schema to describe how the clinical parameters values will look like.
No Additional PropertiesA boolean scalar (corresponds to bool
in Python). Note that we are able to convert string values to boolean using the following rule: value.lower() in ['1', 'true', 'yes', 'ok']
. Other types will be converted using bool(...)
.
A numerical scalar (corresponds to int
or float
in Python).
A single string scalar (corresponds to str
in Python). For convenience, we will use the first item of a sequence of strings containing exactly 1 item. Instances of str, int, bool, float
will be converted to strings using str(...)
. Other types will raise a TypeError
.
Array of strings (corresponds to Sequence[str]
in Python). For convenience, scalars of str, int, bool, float
will be converted automatically to an array with 1 item using the list(str(...))
.
A file URL to the location containing the file.
No Additional PropertiesThe original URL provided by the Onform provider. Can also be s3://
, gs://
or Stitch stitch://upload_id
.
The filename component from the url
path.
Must be at least 1
characters long
The filename suffix component (i.e., file extension) from the url
path.
^(\.[a-z0-9]+)?$
The date-time representation in ISO format.
A time representation in %H:%M
ISO format.