mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
15 lines
358 B
JSON
15 lines
358 B
JSON
|
{
|
||
|
"title": "User Country",
|
||
|
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
||
|
"type": "object",
|
||
|
"required": [
|
||
|
"country"
|
||
|
],
|
||
|
"properties": {
|
||
|
"country": {
|
||
|
"type": "string",
|
||
|
"title": "Country",
|
||
|
"default": "UK"
|
||
|
}
|
||
|
}
|
||
|
}
|