{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateTrackingCodeForUserObject", "title": "UpdateTrackingCodeForUserObject", "type": "object", "required": [ "siteUrl" ], "properties": { "siteUrl": { "type": "string", "example": "example.webex.com", "description": "Site URL for the tracking code." }, "personId": { "type": "string", "example": "Y2lzY29zcGFyazovL3VzL1BFT1BMRS8xOGJiOWNjMC0zMWM2LTQ3MzYtYmE4OC0wMDk5ZmQzNDNmODE", "description": "Unique identifier for the user. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified." }, "email": { "type": "string", "example": "john.andersen@example.com", "description": "Email address for the user. At least one parameter of `personId` or `email` is required. `personId` must precede `email` if both are specified." }, "trackingCodes": { "type": "array", "items": { "$ref": "#/components/schemas/UpdateTrackingCodeItemForUserObject" }, "description": "Tracking code information for updates." } } }