26 lines
435 B
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"
|
|
}
|
|
}
|
|
} |