| z_array | R Documentation |
Create a JSON Schema for array type.
z_array(
items,
description = NULL,
nullable = FALSE,
default = NULL,
min_items = NULL,
max_items = NULL
)
items |
Schema for array items (created by z_* functions). |
description |
Optional description of the field. |
nullable |
If TRUE, allows null values. |
default |
Optional default value. |
min_items |
Optional minimum number of items. |
max_items |
Optional maximum number of items. |
A list representing JSON Schema for array.
z_array(z_string(), description = "List of names")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.