{
  "service": "agiled",
  "displayName": "Agiled",
  "categories": [
    "Productivity",
    "Data"
  ],
  "authTypes": [
    "api_key"
  ],
  "auth": [
    {
      "type": "api_key",
      "label": "API Token",
      "placeholder": "AGILED_API_TOKEN",
      "description": "Agiled API token sent as the api_token query parameter. Create or view it in Settings > API Settings in your Agiled account: https://my.agiled.app/developers.",
      "extraFields": [
        {
          "key": "brand",
          "label": "Account URL",
          "inputType": "text",
          "required": true,
          "secret": false,
          "placeholder": "https://your-company.agiled.app",
          "description": "Your Agiled account URL sent in the Brand header. Copy it from the browser address bar after signing in to your Agiled workspace."
        }
      ]
    }
  ],
  "homepageUrl": "https://agiled.app",
  "actions": [
    {
      "id": "agiled.create_contact",
      "service": "agiled",
      "name": "create_contact",
      "description": "Create an Agiled CRM contact.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "first_name": {
            "type": "string",
            "minLength": 1,
            "description": "Contact first name."
          },
          "last_name": {
            "type": "string",
            "minLength": 1,
            "description": "Contact last name."
          },
          "email": {
            "type": "string",
            "minLength": 1,
            "description": "Contact email address."
          },
          "role": {
            "type": "string",
            "minLength": 1,
            "description": "Contact role, such as Client, Lead, or Prospect."
          },
          "phone": {
            "type": "string",
            "minLength": 1,
            "description": "Contact phone number."
          },
          "job_title": {
            "type": "string",
            "minLength": 1,
            "description": "Contact job title."
          },
          "facebook": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Facebook profile URL."
          },
          "linkedin": {
            "type": "string",
            "minLength": 1,
            "description": "Contact LinkedIn profile URL."
          },
          "twitter": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Twitter profile URL."
          },
          "skype": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Skype username."
          },
          "note": {
            "type": "string",
            "minLength": 1,
            "description": "Contact note."
          },
          "tags": {
            "type": "string",
            "minLength": 1,
            "description": "Comma-separated contact tags."
          },
          "account_id": {
            "type": "string",
            "minLength": 1,
            "description": "Related Agiled account ID."
          },
          "owner_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Sales agent or owner ID."
          },
          "source_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "CRM source ID."
          },
          "status_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "CRM status ID."
          },
          "next_follow_up": {
            "type": "string",
            "minLength": 1,
            "description": "Whether the contact needs a next follow-up."
          },
          "last_contacted": {
            "type": "string",
            "minLength": 1,
            "description": "Date the contact was last contacted."
          },
          "addresses": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address type."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "country": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address country."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "state": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address state."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "city": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address city."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "postal_code": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address postal code."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "address1": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "First address line."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "address2": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Second address line."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "Agiled CRM address object."
            },
            "description": "Contact addresses."
          },
          "custom_fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Custom field key."
                },
                "value": {
                  "description": "Custom field value."
                }
              },
              "additionalProperties": true,
              "description": "Agiled custom field key-value object."
            },
            "description": "Contact custom field values."
          }
        },
        "additionalProperties": false,
        "required": [
          "first_name"
        ],
        "description": "Request body for creating or updating an Agiled CRM contact."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contact": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled contact ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "first_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact first name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "last_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact last name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact email address."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "phone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "job_title": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact job title."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "role": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact role such as Client, Lead, or Prospect."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "account_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Related Agiled account ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "owner_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Sales agent or owner ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "source_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM source ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM status ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled CRM contact object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled contact response."
      }
    },
    {
      "id": "agiled.create_project",
      "service": "agiled",
      "name": "create_project",
      "description": "Create an Agiled project.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "project_name": {
            "type": "string",
            "minLength": 1,
            "description": "Project name."
          },
          "project_summary": {
            "type": "string",
            "minLength": 1,
            "description": "Project summary."
          },
          "start_date": {
            "type": "string",
            "minLength": 1,
            "description": "Project start date using the company's configured date format."
          },
          "deadline": {
            "type": "string",
            "minLength": 1,
            "description": "Project deadline using the company's configured date format."
          },
          "notes": {
            "type": "string",
            "minLength": 1,
            "description": "Project notes."
          },
          "category_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Project category ID."
          },
          "feedback": {
            "type": "string",
            "minLength": 1,
            "description": "Project feedback."
          },
          "manual_time_log": {
            "type": "integer",
            "description": "Whether manual time logging is enabled, usually 1 or 0."
          },
          "client_view_task": {
            "type": "integer",
            "description": "Whether the client can view tasks, usually 1 or 0."
          },
          "allow_client_notification": {
            "type": "integer",
            "description": "Whether client notifications are allowed, usually 1 or 0."
          },
          "completion_percent": {
            "type": "integer",
            "description": "Project completion percentage."
          },
          "project_budget": {
            "type": "number",
            "description": "Project budget."
          },
          "currency_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Currency ID."
          },
          "client_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Related client ID."
          },
          "hours_allocated": {
            "type": "integer",
            "description": "Hours allocated to the project."
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Project status."
          }
        },
        "additionalProperties": false,
        "required": [
          "project_name",
          "start_date",
          "status"
        ],
        "description": "Request body for creating an Agiled project."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "project": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_summary": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project summary."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "deadline": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project deadline."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project status."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completion_percent": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project completion percentage."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_budget": {
                "anyOf": [
                  {
                    "type": "number",
                    "description": "Project budget."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "client_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related client ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled project object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled project response."
      }
    },
    {
      "id": "agiled.create_task",
      "service": "agiled",
      "name": "create_task",
      "description": "Create an Agiled task.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "heading": {
            "type": "string",
            "minLength": 1,
            "description": "Task heading."
          },
          "description": {
            "type": "string",
            "minLength": 1,
            "description": "Task description."
          },
          "start_date": {
            "type": "string",
            "minLength": 1,
            "description": "Task start date using the company's configured date format."
          },
          "due_date": {
            "type": "string",
            "minLength": 1,
            "description": "Task due date using the company's configured date format."
          },
          "user_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Assigned user ID."
          },
          "project_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Related project ID."
          },
          "category_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Task category ID."
          },
          "priority": {
            "type": "string",
            "minLength": 1,
            "description": "Task priority."
          },
          "completed_on": {
            "type": "string",
            "minLength": 1,
            "description": "Task completion date using the company's configured date format."
          },
          "milestone_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Milestone ID."
          },
          "billable": {
            "type": "integer",
            "description": "Whether the task is billable, usually 1 or 0."
          }
        },
        "additionalProperties": false,
        "required": [
          "heading",
          "start_date",
          "due_date",
          "user_id",
          "priority"
        ],
        "description": "Request body for creating an Agiled task."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "heading": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task heading."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task description."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task due date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "user_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Assigned user ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Task category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completed_on": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task completion date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "milestone_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Milestone ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "billable": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Whether the task is billable, usually 1 or 0."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled task object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled task response."
      }
    },
    {
      "id": "agiled.delete_contact",
      "service": "agiled",
      "name": "delete_contact",
      "description": "Delete an Agiled CRM contact.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether Agiled accepted the delete request."
          }
        },
        "additionalProperties": false,
        "description": "Agiled delete result."
      }
    },
    {
      "id": "agiled.delete_project",
      "service": "agiled",
      "name": "delete_project",
      "description": "Delete an Agiled project.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether Agiled accepted the delete request."
          }
        },
        "additionalProperties": false,
        "description": "Agiled delete result."
      }
    },
    {
      "id": "agiled.delete_task",
      "service": "agiled",
      "name": "delete_task",
      "description": "Delete an Agiled task.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean",
            "description": "Whether Agiled accepted the delete request."
          }
        },
        "additionalProperties": false,
        "description": "Agiled delete result."
      }
    },
    {
      "id": "agiled.get_contact",
      "service": "agiled",
      "name": "get_contact",
      "description": "Get one Agiled CRM contact by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contact": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled contact ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "first_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact first name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "last_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact last name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact email address."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "phone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "job_title": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact job title."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "role": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact role such as Client, Lead, or Prospect."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "account_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Related Agiled account ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "owner_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Sales agent or owner ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "source_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM source ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM status ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled CRM contact object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled contact response."
      }
    },
    {
      "id": "agiled.get_project",
      "service": "agiled",
      "name": "get_project",
      "description": "Get one Agiled project by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "project": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_summary": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project summary."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "deadline": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project deadline."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project status."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completion_percent": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project completion percentage."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_budget": {
                "anyOf": [
                  {
                    "type": "number",
                    "description": "Project budget."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "client_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related client ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled project object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled project response."
      }
    },
    {
      "id": "agiled.get_task",
      "service": "agiled",
      "name": "get_task",
      "description": "Get one Agiled task by ID.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          }
        },
        "additionalProperties": false,
        "description": "Path parameters for an Agiled resource endpoint."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "heading": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task heading."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task description."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task due date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "user_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Assigned user ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Task category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completed_on": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task completion date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "milestone_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Milestone ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "billable": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Whether the task is billable, usually 1 or 0."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled task object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled task response."
      }
    },
    {
      "id": "agiled.list_contacts",
      "service": "agiled",
      "name": "list_contacts",
      "description": "List Agiled CRM contacts.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "No input is required for this Agiled action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contacts": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Agiled contact ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "first_name": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact first name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "last_name": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact last name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "email": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact email address."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "phone": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact phone number."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "job_title": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact job title."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "role": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact role such as Client, Lead, or Prospect."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "account_id": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Related Agiled account ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "owner_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Sales agent or owner ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "source_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "CRM source ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "status_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "CRM status ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "created_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact creation timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "updated_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Contact update timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "Agiled CRM contact object."
            },
            "description": "Contacts returned by Agiled."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled contacts list response."
      }
    },
    {
      "id": "agiled.list_projects",
      "service": "agiled",
      "name": "list_projects",
      "description": "List Agiled projects.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "No input is required for this Agiled action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "projects": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Agiled project ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "project_name": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project name."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "project_summary": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project summary."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project start date."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "deadline": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project deadline."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "status": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project status."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "completion_percent": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Project completion percentage."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "project_budget": {
                  "anyOf": [
                    {
                      "type": "number",
                      "description": "Project budget."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "client_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Related client ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "category_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Project category ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "created_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project creation timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "updated_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Project update timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "Agiled project object."
            },
            "description": "Projects returned by Agiled."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled projects list response."
      }
    },
    {
      "id": "agiled.list_tasks",
      "service": "agiled",
      "name": "list_tasks",
      "description": "List Agiled tasks.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {},
        "additionalProperties": false,
        "description": "No input is required for this Agiled action."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "tasks": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Agiled task ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "heading": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task heading."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "description": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task description."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "start_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task start date."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "due_date": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task due date."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "user_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Assigned user ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "project_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Related project ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "category_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Task category ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "priority": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task priority."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "completed_on": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task completion date."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "milestone_id": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Milestone ID."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "billable": {
                  "anyOf": [
                    {
                      "type": "integer",
                      "description": "Whether the task is billable, usually 1 or 0."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "created_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task creation timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "updated_at": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Task update timestamp."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "Agiled task object."
            },
            "description": "Tasks returned by Agiled."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled tasks list response."
      }
    },
    {
      "id": "agiled.update_contact",
      "service": "agiled",
      "name": "update_contact",
      "description": "Update an Agiled CRM contact.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          },
          "first_name": {
            "type": "string",
            "minLength": 1,
            "description": "Contact first name."
          },
          "last_name": {
            "type": "string",
            "minLength": 1,
            "description": "Contact last name."
          },
          "email": {
            "type": "string",
            "minLength": 1,
            "description": "Contact email address."
          },
          "role": {
            "type": "string",
            "minLength": 1,
            "description": "Contact role, such as Client, Lead, or Prospect."
          },
          "phone": {
            "type": "string",
            "minLength": 1,
            "description": "Contact phone number."
          },
          "job_title": {
            "type": "string",
            "minLength": 1,
            "description": "Contact job title."
          },
          "facebook": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Facebook profile URL."
          },
          "linkedin": {
            "type": "string",
            "minLength": 1,
            "description": "Contact LinkedIn profile URL."
          },
          "twitter": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Twitter profile URL."
          },
          "skype": {
            "type": "string",
            "minLength": 1,
            "description": "Contact Skype username."
          },
          "note": {
            "type": "string",
            "minLength": 1,
            "description": "Contact note."
          },
          "tags": {
            "type": "string",
            "minLength": 1,
            "description": "Comma-separated contact tags."
          },
          "account_id": {
            "type": "string",
            "minLength": 1,
            "description": "Related Agiled account ID."
          },
          "owner_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Sales agent or owner ID."
          },
          "source_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "CRM source ID."
          },
          "status_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "CRM status ID."
          },
          "next_follow_up": {
            "type": "string",
            "minLength": 1,
            "description": "Whether the contact needs a next follow-up."
          },
          "last_contacted": {
            "type": "string",
            "minLength": 1,
            "description": "Date the contact was last contacted."
          },
          "addresses": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "type": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address type."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "country": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address country."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "state": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address state."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "city": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address city."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "postal_code": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Address postal code."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "address1": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "First address line."
                    },
                    {
                      "type": "null"
                    }
                  ]
                },
                "address2": {
                  "anyOf": [
                    {
                      "type": "string",
                      "description": "Second address line."
                    },
                    {
                      "type": "null"
                    }
                  ]
                }
              },
              "additionalProperties": true,
              "description": "Agiled CRM address object."
            },
            "description": "Contact addresses."
          },
          "custom_fields": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "key": {
                  "type": "string",
                  "minLength": 1,
                  "description": "Custom field key."
                },
                "value": {
                  "description": "Custom field value."
                }
              },
              "additionalProperties": true,
              "description": "Agiled custom field key-value object."
            },
            "description": "Contact custom field values."
          }
        },
        "additionalProperties": false,
        "required": [
          "id",
          "first_name"
        ],
        "description": "Path parameters and request body for updating an Agiled CRM contact."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "contact": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled contact ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "first_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact first name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "last_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact last name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "email": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact email address."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "phone": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact phone number."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "job_title": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact job title."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "role": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact role such as Client, Lead, or Prospect."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "account_id": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Related Agiled account ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "owner_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Sales agent or owner ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "source_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM source ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "CRM status ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Contact update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled CRM contact object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled contact response."
      }
    },
    {
      "id": "agiled.update_project",
      "service": "agiled",
      "name": "update_project",
      "description": "Update an Agiled project.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          },
          "project_name": {
            "type": "string",
            "minLength": 1,
            "description": "Project name."
          },
          "project_summary": {
            "type": "string",
            "minLength": 1,
            "description": "Project summary."
          },
          "start_date": {
            "type": "string",
            "minLength": 1,
            "description": "Project start date using the company's configured date format."
          },
          "deadline": {
            "type": "string",
            "minLength": 1,
            "description": "Project deadline using the company's configured date format."
          },
          "notes": {
            "type": "string",
            "minLength": 1,
            "description": "Project notes."
          },
          "category_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Project category ID."
          },
          "feedback": {
            "type": "string",
            "minLength": 1,
            "description": "Project feedback."
          },
          "manual_time_log": {
            "type": "integer",
            "description": "Whether manual time logging is enabled, usually 1 or 0."
          },
          "client_view_task": {
            "type": "integer",
            "description": "Whether the client can view tasks, usually 1 or 0."
          },
          "allow_client_notification": {
            "type": "integer",
            "description": "Whether client notifications are allowed, usually 1 or 0."
          },
          "completion_percent": {
            "type": "integer",
            "description": "Project completion percentage."
          },
          "project_budget": {
            "type": "number",
            "description": "Project budget."
          },
          "currency_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Currency ID."
          },
          "client_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Related client ID."
          },
          "hours_allocated": {
            "type": "integer",
            "description": "Hours allocated to the project."
          },
          "status": {
            "type": "string",
            "minLength": 1,
            "description": "Project status."
          }
        },
        "additionalProperties": false,
        "required": [
          "id",
          "project_name",
          "start_date"
        ],
        "description": "Path parameters and request body for updating an Agiled project."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "project": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_name": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project name."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_summary": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project summary."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "deadline": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project deadline."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "status": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project status."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completion_percent": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project completion percentage."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_budget": {
                "anyOf": [
                  {
                    "type": "number",
                    "description": "Project budget."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "client_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related client ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Project category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Project update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled project object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled project response."
      }
    },
    {
      "id": "agiled.update_task",
      "service": "agiled",
      "name": "update_task",
      "description": "Update an Agiled task.",
      "requiredScopes": [],
      "providerPermissions": [],
      "inputSchema": {
        "type": "object",
        "properties": {
          "id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Agiled resource ID."
          },
          "heading": {
            "type": "string",
            "minLength": 1,
            "description": "Task heading."
          },
          "description": {
            "type": "string",
            "minLength": 1,
            "description": "Task description."
          },
          "start_date": {
            "type": "string",
            "minLength": 1,
            "description": "Task start date using the company's configured date format."
          },
          "due_date": {
            "type": "string",
            "minLength": 1,
            "description": "Task due date using the company's configured date format."
          },
          "user_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Assigned user ID."
          },
          "project_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Related project ID."
          },
          "category_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Task category ID."
          },
          "priority": {
            "type": "string",
            "minLength": 1,
            "description": "Task priority."
          },
          "completed_on": {
            "type": "string",
            "minLength": 1,
            "description": "Task completion date using the company's configured date format."
          },
          "milestone_id": {
            "type": "integer",
            "exclusiveMinimum": 0,
            "description": "Milestone ID."
          },
          "billable": {
            "type": "integer",
            "description": "Whether the task is billable, usually 1 or 0."
          }
        },
        "additionalProperties": false,
        "required": [
          "id",
          "heading",
          "start_date",
          "due_date",
          "user_id",
          "priority"
        ],
        "description": "Path parameters and request body for updating an Agiled task."
      },
      "outputSchema": {
        "type": "object",
        "properties": {
          "task": {
            "type": "object",
            "properties": {
              "id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Agiled task ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "heading": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task heading."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "description": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task description."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "start_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task start date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "due_date": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task due date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "user_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Assigned user ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "project_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Related project ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "category_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Task category ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "priority": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task priority."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "completed_on": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task completion date."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "milestone_id": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Milestone ID."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "billable": {
                "anyOf": [
                  {
                    "type": "integer",
                    "description": "Whether the task is billable, usually 1 or 0."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "created_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task creation timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              },
              "updated_at": {
                "anyOf": [
                  {
                    "type": "string",
                    "description": "Task update timestamp."
                  },
                  {
                    "type": "null"
                  }
                ]
              }
            },
            "additionalProperties": true,
            "description": "Agiled task object."
          },
          "raw": {
            "description": "Raw Agiled response payload."
          }
        },
        "additionalProperties": false,
        "description": "Agiled task response."
      }
    }
  ]
}
