{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/GetTrackingCodeForUserObject", "title": "GetTrackingCodeForUserObject", "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." }, "email": { "type": "string", "example": "john.andersen@example.com", "description": "Email address for the user." }, "trackingCodes": { "type": "array", "items": { "$ref": "#/components/schemas/GetTrackingCodeItemForUserObject" }, "description": "Tracking code information." } } }