User: asolano@emerson.com clicked save for playground/emerson/test/Test 1-schema.json

This commit is contained in:
sartography-automated-committer 2023-11-08 15:44:40 +00:00
parent 5c16958f28
commit 4a0c83d613
2 changed files with 12 additions and 2 deletions

View File

@ -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"
}
}
}

View File

@ -6,5 +6,9 @@
"ui:autocomplete": "family-name",
"ui:enableMarkdownInDescription": true,
"ui:description": "Make text **bold** or *italic*. Take a look at other options [here](https://probablyup.com/markdown-to-jsx/)."
},
"delivery_date": {
"ui:widget": "date",
"ui:help": "Specify the preferred delivery date for this service/product"
}
}