mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
21 lines
369 B
JSON
21 lines
369 B
JSON
{
|
|
"title": "Item Info",
|
|
"description": "Item details with Id and Name",
|
|
"type": "object",
|
|
"required": [
|
|
"itemId",
|
|
"itemName"
|
|
],
|
|
"properties": {
|
|
"itemId": {
|
|
"type": "string",
|
|
"title": "Item Id",
|
|
"default": "001"
|
|
},
|
|
"itemName": {
|
|
"type": "string",
|
|
"title": "Item name",
|
|
"default": "Item 001"
|
|
}
|
|
}
|
|
} |