{ "$schema": "https://json-schema.org/draft/2020-12/schema", "title": "Task", "type": "object", "properties": { "globalId": { "type": "integer" }, "id": { "type": "integer" }, "contentId": { "type": "integer" }, "status": { "type": "string" }, "title": { "type": "string" }, "description": { "type": "string" }, "body": { "type": "string" }, "creator": { "type": "string" }, "assignee": { "type": "string" }, "completeUser": { "type": "string" }, "createDate": { "type": "integer" }, "dueDate": { "type": "integer" }, "updateDate": { "type": "integer" }, "completeDate": { "type": "integer" } } }