sample-process-models/jonjon/hours/entry_schema.json

33 lines
578 B
JSON

{
"definitions": {
"currencyEnum": {
"title": "Currency",
"type": "string",
"anyOf": [
"options_from_task_data_var:currency_enum_options"
]
}
},
"title": "Track Time",
"description": "Information for tracking billable hours.",
"type": "object",
"required": [
"project",
"startDateTime",
"endDateTime"
],
"properties": {
"project": {
"type": "string",
"title": "Project"
},
"startDateTime": {
"type": "string",
"title": "Start Date and Time"
},
"endDateTime": {
"type": "string",
"title": "End Date and Time"
}
}
}