{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/WorkItemForm", "title": "WorkItemForm", "type": "object", "description": "Work item message payload.", "required": [ "aliasId", "workItemData", "timestamp" ], "properties": { "aliasId": { "type": "string", "description": "Identifier of the work item message.", "example": "msg-001" }, "workItemData": { "type": "object", "description": "Structured key-value payload for the work item form. Maximum 50 entries; keys up to 100 UTF-8 bytes, values up to 1024 UTF-8 bytes.", "maxProperties": 50, "additionalProperties": { "type": "string" }, "example": { "name": "customer name", "email": "customer@domain.com" } }, "timestamp": { "type": "integer", "format": "int64", "description": "Unix epoch timestamp in milliseconds representing when the work item was originated.", "example": 1732786800000 } } }