Gainsight · Schema
TaskInput
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | |
| Description | string | |
| CTAId | string | |
| OwnerId | string | |
| Status | string | |
| Priority | string | |
| DueDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/TaskInput",
"title": "TaskInput",
"type": "object",
"required": [
"Name",
"CTAId"
],
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"CTAId": {
"type": "string"
},
"OwnerId": {
"type": "string"
},
"Status": {
"type": "string",
"enum": [
"Not Started",
"In Progress",
"Completed",
"Skipped"
]
},
"Priority": {
"type": "string"
},
"DueDate": {
"type": "string",
"format": "date"
}
}
}