{ "$schema": "http://json-schema.org/draft-07/schema#", "$id": "https://raw.githubusercontent.com/api-evangelist/labguru/main/json-schema/TaskBaseRequest.json", "title": "TaskBaseRequest", "type": "object", "required": [ "token" ], "properties": { "token": { "type": "string", "example": "YOUR TOKEN IS HERE" }, "item": { "type": "object", "required": [ "name" ], "properties": { "name": { "type": "string", "description": "The name of the Task" }, "start_date": { "type": "string", "format": "date", "description": "Start Date (yyyy-mm-dd)" }, "assigned_to": { "type": "integer", "description": "id of assigner" }, "description": { "type": "string", "description": "Description of the task" }, "owner_id": { "type": "integer", "description": "id of the owner - by default it's your member id" }, "notify_at": { "type": "string", "format": "date", "description": "notification date & time (yyyy-mm-dd)" } } } } }