Gainsight · Schema
GoalInput
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | |
| Description | string | |
| CompanyId | string | |
| TemplateId | string | |
| Status | string | |
| OwnerId | string | |
| TargetDate | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/GoalInput",
"title": "GoalInput",
"type": "object",
"required": [
"Name",
"CompanyId"
],
"properties": {
"Name": {
"type": "string"
},
"Description": {
"type": "string"
},
"CompanyId": {
"type": "string"
},
"TemplateId": {
"type": "string"
},
"Status": {
"type": "string",
"enum": [
"Not Started",
"In Progress",
"Achieved",
"Missed"
]
},
"OwnerId": {
"type": "string"
},
"TargetDate": {
"type": "string",
"format": "date"
}
}
}