Properties
| Name | Type | Description |
|---|---|---|
| active | boolean | |
| created_at | string | |
| deal_probability | number | |
| display_order | number | |
| id | string | |
| is_closed | boolean | |
| name | string | |
| updated_at | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CrmStage",
"title": "CrmStage",
"properties": {
"active": {
"type": "boolean"
},
"created_at": {
"format": "date-time",
"type": "string"
},
"deal_probability": {
"type": "number"
},
"display_order": {
"type": "number"
},
"id": {
"type": "string"
},
"is_closed": {
"type": "boolean"
},
"name": {
"type": "string"
},
"updated_at": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}