User: daniel.h.funk@gmail.com clicked save for playground/dan/webinar/1-approval-two-eyes/vacation-request-schema.json

This commit is contained in:
sartography-automated-committer 2024-01-25 19:07:07 +00:00
parent 8fd9b44617
commit af09263053
2 changed files with 12 additions and 2 deletions

View File

@ -1,11 +1,17 @@
{ {
"title": "Text Area", "title": "Date",
"description": "A larger resizable area to enter longer text. (field name will be 'bio')", "description": "Create a date field with a date picker (delivery_date).",
"type": "object", "type": "object",
"properties": { "properties": {
"bio": { "bio": {
"type": "string", "type": "string",
"title": "Bio" "title": "Bio"
},
"delivery_date": {
"type": "string",
"format": "date",
"title": "Preferred Delivery Date",
"validationErrorMessage": "Date must be today's date or later"
} }
} }
} }

View File

@ -1,5 +1,9 @@
{ {
"bio": { "bio": {
"ui:widget": "textarea" "ui:widget": "textarea"
},
"delivery_date": {
"ui:widget": "date",
"ui:help": "Specify the preferred delivery date for this service/product"
} }
} }