2023-12-14 13:11:22 +00:00
{
"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"
2023-12-14 13:11:52 +00:00
} ,
2023-12-14 13:11:44 +00:00
"lastName" : {
2023-12-14 13:11:39 +00:00
"type" : "string" ,
2023-12-14 13:11:50 +00:00
"title" : "Last name" ,
2023-12-14 13:11:39 +00:00
"default" : "Chuck"
2023-12-14 13:13:30 +00:00
} ,
2023-12-14 13:13:43 +00:00
"phoneNumber" : {
2023-12-14 13:13:30 +00:00
"type" : "string" ,
2023-12-14 13:13:54 +00:00
"title" : "Phone Number" ,
2023-12-14 13:14:11 +00:00
"default" : "540-457-0024"
2023-12-14 13:11:39 +00:00
}
2023-12-14 13:11:22 +00:00
}
}