Unified.to · Schema

TaskTask

TaskTask schema from Unified.to API

IntegrationsUnified API

Properties

Name Type Description
id string
created_at string
updated_at string
name string
project_id string
parent_id string
completed_at string
status string
notes string
due_at string
priority string
assigned_user_ids object
creator_user_id string
follower_user_ids object
group_ids object
tags object
url string
attachment_ids object
metadata object
has_children boolean
raw object
View JSON Schema on GitHub

JSON Schema

unified-to-task-task-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/json-schema/unified-to-task-task-schema.json",
  "title": "TaskTask",
  "description": "TaskTask schema from Unified.to API",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "created_at": {
      "type": "string",
      "format": "date-time"
    },
    "updated_at": {
      "type": "string",
      "format": "date-time"
    },
    "name": {
      "type": "string"
    },
    "project_id": {
      "type": "string"
    },
    "parent_id": {
      "type": "string"
    },
    "completed_at": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string",
      "enum": [
        "OPENED",
        "IN_PROGRESS",
        "COMPLETED"
      ],
      "x-speakeasy-unknown-values": "allow"
    },
    "notes": {
      "type": "string"
    },
    "due_at": {
      "type": "string",
      "format": "date-time"
    },
    "priority": {
      "type": "string"
    },
    "assigned_user_ids": {
      "$ref": "#/components/schemas/property_TaskTask_assigned_user_ids"
    },
    "creator_user_id": {
      "type": "string"
    },
    "follower_user_ids": {
      "$ref": "#/components/schemas/property_TaskTask_follower_user_ids"
    },
    "group_ids": {
      "$ref": "#/components/schemas/property_TaskTask_group_ids"
    },
    "tags": {
      "$ref": "#/components/schemas/property_TaskTask_tags"
    },
    "url": {
      "type": "string"
    },
    "attachment_ids": {
      "$ref": "#/components/schemas/property_TaskTask_attachment_ids"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_TaskTask_metadata"
    },
    "has_children": {
      "type": "boolean"
    },
    "raw": {
      "type": "object",
      "additionalProperties": true
    }
  }
}