| z_number | R Documentation |
Create a JSON Schema for number (floating point) type.
z_number(
description = NULL,
nullable = FALSE,
default = NULL,
minimum = NULL,
maximum = NULL
)
description |
Optional description of the field. |
nullable |
If TRUE, allows null values. |
default |
Optional default value. |
minimum |
Optional minimum value. |
maximum |
Optional maximum value. |
A list representing JSON Schema for number.
z_number(description = "Temperature value", minimum = -100, maximum = 100)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.