HubSpot · Schema
PropertyHistory
Historical value of a property
AnalyticsCommerceContentCRMCustomer ServiceEmail MarketingMarketingMarketing AutomationOperationsSales
Properties
| Name | Type | Description |
|---|---|---|
| value | string | The historical value |
| timestamp | string | When the value was set |
| sourceType | string | The source type that set this value |
| sourceId | string | The source identifier |
| sourceLabel | string | Human-readable source label |
| updatedByUserId | integer | The user ID who made the change |
JSON Schema
{
"type": "object",
"description": "Historical value of a property",
"properties": {
"value": {
"type": "string",
"description": "The historical value",
"example": "Initial meeting notes"
},
"timestamp": {
"type": "string",
"description": "When the value was set",
"format": "date-time",
"example": "2024-01-15T10:30:00.000Z"
},
"sourceType": {
"type": "string",
"description": "The source type that set this value",
"example": "CRM_UI"
},
"sourceId": {
"type": "string",
"description": "The source identifier",
"example": "userId:12345"
},
"sourceLabel": {
"type": "string",
"description": "Human-readable source label",
"example": "John Doe"
},
"updatedByUserId": {
"type": "integer",
"description": "The user ID who made the change",
"example": 12345
}
},
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "PropertyHistory"
}