{ "$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" } } }