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` |
| _links | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/UserProperty",
"title": "UserProperty",
"required": [
"key",
"value",
"id",
"lastModifiedDate",
"createdDate"
],
"type": "object",
"properties": {
"key": {
"type": "string",
"example": "example_value"
},
"value": {
"type": "object",
"additionalProperties": true,
"properties": {},
"description": "The value of the content property.",
"example": "example_value"
},
"id": {
"type": "string",
"description": "a unique identifier for the user property",
"example": "abc123"
},
"lastModifiedDate": {
"type": "string",
"format": "date-time",
"description": "datetime when the property was last modified such as `2022-02-01T12:00:00.111Z`",
"example": "2026-01-15T10:30:00Z"
},
"createdDate": {
"type": "string",
"format": "date-time",
"description": "datetime when the property was created such as `2022-01-01T12:00:00.111Z`",
"example": "2026-01-15T10:30:00Z"
},
"_links": {
"$ref": "#/components/schemas/GenericLinks"
}
}
}