Workspace
workspace-task
workspace-task
{
"subject": {"title": "Title", "type": "string"},
"content": {"title": "Content", "type": "string"},
"completed_date": {"title": "Completed Date", "type": "string", "format": "date-time"},
"due_date": {"title": "Due Date", "type": "string", "format": "date-time"},
"status": {"title": "Status", "type": "string"},
}
Example Object:
{
"subject": "Meeting with Client",
"content": "Prepare presentation and finalize agenda.",
"completed_date": "2024-02-27 14:30:00",
"due_date": "2024-03-03 09:00:00",
"status": "In Progress"
}
workspace-user
workspace-user
{
"active": {"title": "Account Activity Status", "type": "boolean"},
"last_used": {"title": "Date of Last Use", "type": "string", "format": "date-time"},
"time_of_creation": {"format": "date-time", "title": "Time of Account Creation", "type": "string"},
"username": {"title": "Username", "type": "string"}
}
Example Object:
{
"active": true,
"last_used": "2024-02-28 08:00:00",
"time_of_creation": "2023-01-15 12:30:00",
"username": "john_doe"
}
Updated 6 months ago