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

26 lines
435 B
JSON

{
"definitions": {
},
"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"
}
}
}