36 lines
839 B
JSON
36 lines
839 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.suruatoel.xyz/codes/protime/time.json",
|
|
"title": "Time",
|
|
"description": "A time entry",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"description": "",
|
|
"type": "string",
|
|
"format": "uuid"
|
|
},
|
|
"project": {
|
|
"description": "",
|
|
"type": "string"
|
|
},
|
|
"activity": {
|
|
"description": "",
|
|
"type": "string"
|
|
},
|
|
"start": {
|
|
"description": "",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
},
|
|
"end": {
|
|
"description": "",
|
|
"type": "string",
|
|
"format": "date-time"
|
|
}
|
|
},
|
|
"required": [
|
|
"id",
|
|
"start"
|
|
]
|
|
}
|