sample-process-models/misc/shared/enumerations/enumeration-JSONSchema.json

19 lines
389 B
JSON

{
"title": "Enumberations",
"description": "Items to display in a dropdown",
"type": "object",
"required": [
"addValue",
"addLabel"
],
"properties": {
"addValue": {
"type": "string",
"title": "Abbreviated code, this will be stored and used in script code later"
},
"addLabel": {
"type": "string",
"title": "Full name which will be diplayed in dropdown"
}
}
}