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:
sartography-automated-committer 2024-02-14 20:56:07 +00:00
parent a7d6333571
commit ce52149923
1 changed files with 15 additions and 1 deletions

View File

@ -1 +1,15 @@
{}
{
"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')",
"type": "object",
"required": [
"firstName"
],
"properties": {
"firstName": {
"type": "string",
"title": "First name",
"default": "Chuck"
}
}
}