Gainsight · Schema
SuccessPlanInput
Properties
| Name | Type | Description |
|---|---|---|
| Name | string | |
| CompanyId | string | |
| TypeId | string | |
| Status | string | |
| OwnerId | string | |
| StartDate | string | |
| EndDate | string | |
| Comments | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/SuccessPlanInput",
"title": "SuccessPlanInput",
"type": "object",
"required": [
"Name",
"CompanyId",
"TypeId"
],
"properties": {
"Name": {
"type": "string"
},
"CompanyId": {
"type": "string"
},
"TypeId": {
"type": "string"
},
"Status": {
"type": "string",
"enum": [
"Active",
"Completed",
"Archived"
]
},
"OwnerId": {
"type": "string"
},
"StartDate": {
"type": "string",
"format": "date"
},
"EndDate": {
"type": "string",
"format": "date"
},
"Comments": {
"type": "string"
}
}
}