{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ReassignRecordingObject", "title": "ReassignRecordingObject", "type": "object", "description": "Reassign Recording details", "required": [ "reassignOwnerEmail" ], "properties": { "ownerEmail": { "type": "string", "example": "john.andersen@example.com", "description": "Recording owner email." }, "ownerID": { "type": "string", "example": "3c6aa94c-e1f9-4f10-579f-e5582de5374f", "description": "Recording owner ID. Can be a user, a virtual line, or a workspace." }, "recordingIds": { "type": "array", "items": { "type": "string", "example": "81bb582c-e93e-40aa-abf6-962b620f6db4,81bb582c-e93e-40aa-abf6-962b620f6db5" }, "description": "List of recording identifiers to be reassigned." }, "reassignOwnerEmail": { "type": "string", "example": "brenda.song@example.com", "description": "New owner of the recordings." } } }