Copper · Schema
Task
ActivitiesCompaniesContact Relationship ManagementContactsCRMCustomer Relationship ManagementGoogle WorkspaceLeadsOpportunitiesPeopleProjectsSalesTasks
Properties
| Name | Type | Description |
|---|---|---|
| id | integer | |
| name | string | |
| related_resource | object | |
| assignee_id | integer | |
| due_date | integer | |
| reminder_date | integer | |
| completed_date | integer | |
| priority | string | |
| status | string | |
| details | string | |
| tags | array | |
| custom_fields | array |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/Task",
"title": "Task",
"type": "object",
"properties": {
"id": {
"type": "integer",
"format": "int64"
},
"name": {
"type": "string"
},
"related_resource": {
"type": "object",
"properties": {
"id": {
"type": "integer"
},
"type": {
"type": "string"
}
}
},
"assignee_id": {
"type": "integer",
"nullable": true
},
"due_date": {
"type": "integer",
"nullable": true
},
"reminder_date": {
"type": "integer",
"nullable": true
},
"completed_date": {
"type": "integer",
"nullable": true
},
"priority": {
"type": "string",
"enum": [
"None",
"High"
]
},
"status": {
"type": "string",
"enum": [
"Open",
"Completed"
]
},
"details": {
"type": "string",
"nullable": true
},
"tags": {
"type": "array",
"items": {
"type": "string"
}
},
"custom_fields": {
"type": "array",
"items": {
"$ref": "#/components/schemas/CustomFieldValue"
}
}
}
}