Properties
| Name | Type | Description |
|---|---|---|
| key | string | |
| value | object | The value of the content property. |
| id | string | a unique identifier for the user property |
| lastModifiedDate | string | datetime when the property was last modified such as `2022-02-01T12:00:00.111Z` |
| createdDate | string | datetime when the property was created such as `2022-01-01T12:00:00.111Z` |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "UserProperty",
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "object",
"description": "The value of the content property."
},
"id": {
"type": "string",
"description": "a unique identifier for the user property"
},
"lastModifiedDate": {
"type": "string",
"description": "datetime when the property was last modified such as `2022-02-01T12:00:00.111Z`"
},
"createdDate": {
"type": "string",
"description": "datetime when the property was created such as `2022-01-01T12:00:00.111Z`"
}
}
}