2024-02-16 11:01: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" : [
2024-02-16 11:02:51 +00:00
"partNumber" ,
2024-02-16 11:02:55 +00:00
"serialNumber"
2024-02-16 11:01:22 +00:00
] ,
"properties" : {
2024-02-16 11:03:09 +00:00
"partNumber" : {
"type" : "string" ,
2024-02-16 11:03:19 +00:00
"title" : "Part Number" ,
2024-02-16 11:03:09 +00:00
"default" : "12345"
} ,
2024-02-16 11:04:00 +00:00
"serialNumber" : {
"type" : "string" ,
"title" : "Serial Number" ,
"default" : "01"
} ,
2024-02-16 11:04:06 +00:00
"confirmationNumber" : {
2024-02-16 11:01:22 +00:00
"type" : "string" ,
2024-02-16 11:04:14 +00:00
"title" : "Confirmation Number" ,
2024-02-16 11:04:19 +00:00
"default" : "1234"
2024-02-16 11:04:26 +00:00
} ,
2024-02-16 11:04:47 +00:00
"partDesignation" : {
2024-02-16 11:04:27 +00:00
"type" : "string" ,
2024-02-16 11:04:38 +00:00
"title" : "Part Designation" ,
2024-02-16 11:06:54 +00:00
"default" : "Test Part"
2024-02-16 11:04:27 +00:00
}
2024-02-16 11:01:22 +00:00
}
}