User: dan@sartography.com clicked save for examples/1-basic-concepts/understanding-data-part-1/simple-user-task-schema.json
This commit is contained in:
parent
c85c462e2b
commit
0bc656e7b8
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"title": "Text Field",
|
||||
"description": "A simple text field that is required, has a default value, sets a placeholder, includes a description. (field name will be 'firstname')",
|
||||
"title": "Date",
|
||||
"description": "Create a date field with a date picker (delivery_date).",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"firstName"
|
||||
|
@ -10,6 +10,12 @@
|
|||
"type": "string",
|
||||
"title": "FIRST NAME",
|
||||
"default": "Chuck"
|
||||
},
|
||||
"delivery_date": {
|
||||
"type": "string",
|
||||
"format": "date",
|
||||
"title": "Preferred Delivery Date",
|
||||
"validationErrorMessage": "Date must be today's date or later"
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue