22 lines
509 B
JSON
22 lines
509 B
JSON
{
|
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
"$id": "https://www.suruatoel.xyz/codes/protime/activity.json",
|
|
"title": "Activity",
|
|
"description": "An activity entry",
|
|
"type": "object",
|
|
"properties": {
|
|
"id": {
|
|
"description": "",
|
|
"type": "string",
|
|
"format": "uuid"
|
|
},
|
|
"title": {
|
|
"description": "",
|
|
"type": "string"
|
|
}
|
|
},
|
|
"required": [
|
|
"id",
|
|
"title"
|
|
]
|
|
}
|