mirror of
https://github.com/sartography/sample-process-models.git
synced 2025-02-25 14:15:14 +00:00
62 lines
1.2 KiB
JSON
62 lines
1.2 KiB
JSON
{
|
|
"definitions": {
|
|
"currencyEnum": {
|
|
"title": "Currency",
|
|
"type": "string",
|
|
"anyOf": [
|
|
"options_from_task_data_var:category_enum_list"
|
|
]
|
|
}
|
|
},
|
|
|
|
"title": "datetest",
|
|
"description": "",
|
|
"properties": {
|
|
"start_date": {
|
|
"type": "string",
|
|
"title": "start date",
|
|
"format": "date",
|
|
"minimumDate": "today"
|
|
},
|
|
"the_not_date": {
|
|
"title": "the NOT date",
|
|
"$ref": "#/definitions/currencyEnum",
|
|
"default": "travel",
|
|
"readOnly": true
|
|
},
|
|
"end_date": {
|
|
"type": "string",
|
|
"title": "end date",
|
|
"format": "date",
|
|
"minimumDate": "field:start_date,field:event_date"
|
|
},
|
|
"event_date": {
|
|
"type": "string",
|
|
"title": "event date",
|
|
"format": "date",
|
|
"minimumDate": "field:start_date"
|
|
}
|
|
},
|
|
"required": [],
|
|
"dependencies": {
|
|
"the_not_date": {
|
|
"properties": {
|
|
"the_not_date": {
|
|
"enum": [
|
|
"travel"
|
|
]
|
|
},
|
|
"item": {
|
|
"items": {
|
|
"properties": {
|
|
"sub_category": {
|
|
"type": "string",
|
|
"title": "Sub Category"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |