Unified.to · Schema

TaskProject

TaskProject schema from Unified.to API

IntegrationsUnified API

Properties

Name Type Description
id string
created_at string
updated_at string
name string
parent_id string
user_ids object
group_ids object
description string
has_tasks boolean
has_children boolean
metadata object
raw object
View JSON Schema on GitHub

JSON Schema

unified-to-task-project-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-project-schema.json",
  "title": "TaskProject",
  "description": "TaskProject 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"
    },
    "parent_id": {
      "type": "string"
    },
    "user_ids": {
      "$ref": "#/components/schemas/property_TaskProject_user_ids"
    },
    "group_ids": {
      "$ref": "#/components/schemas/property_TaskProject_group_ids"
    },
    "description": {
      "type": "string"
    },
    "has_tasks": {
      "type": "boolean"
    },
    "has_children": {
      "type": "boolean"
    },
    "metadata": {
      "$ref": "#/components/schemas/property_TaskProject_metadata"
    },
    "raw": {
      "type": "object",
      "additionalProperties": true
    }
  }
}