2024-01-23 04:46:07 +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" : [
"name" ,
"x" ,
"y" ,
"z"
] ,
"properties" : {
"name" : {
"type" : "string" ,
"title" : "Item name"
} ,
"x" : {
2024-01-28 21:58:46 +00:00
"type" : "string" ,
2024-01-23 04:46:07 +00:00
"title" : "X"
} ,
"y" : {
2024-01-28 21:58:42 +00:00
"type" : "string" ,
2024-01-23 04:46:07 +00:00
"title" : "Y"
} ,
"z" : {
2024-01-28 21:58:35 +00:00
"type" : "string" ,
2024-01-23 04:46:07 +00:00
"title" : "Z"
2024-02-09 00:53:36 +00:00
} ,
2024-02-09 00:56:12 +00:00
"prop" : {
2024-02-09 00:53:11 +00:00
"type" : "array" ,
2024-02-09 00:57:42 +00:00
"title" : "prop" ,
2024-02-09 00:53:11 +00:00
"items" : {
"type" : "object" ,
2024-02-09 00:53:13 +00:00
"properties" : {
2024-02-09 00:54:18 +00:00
"p1" : {
2024-02-09 00:54:13 +00:00
"type" : "string" ,
2024-02-09 00:54:29 +00:00
"title" : "p1"
2024-02-09 00:54:13 +00:00
} ,
2024-02-09 00:54:21 +00:00
"p2" : {
2024-02-09 00:54:13 +00:00
"type" : "string" ,
2024-02-09 00:54:32 +00:00
"title" : "p2"
2024-02-09 00:54:13 +00:00
} ,
2024-02-09 00:54:24 +00:00
"p3" : {
2024-02-09 00:54:13 +00:00
"type" : "string" ,
2024-02-09 00:54:35 +00:00
"title" : "p3"
2024-02-09 00:54:13 +00:00
}
2024-02-09 00:53:24 +00:00
}
2024-02-09 00:53:28 +00:00
}
2024-02-09 00:53:33 +00:00
}
2024-01-23 04:46:07 +00:00
}
}