Request body for cloning a report
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CloneReportRequest", "title": "CloneReportRequest", "type": "object", "required": [ "name" ], "description": "Request body for cloning a report", "properties": { "name": { "type": "string", "description": "The name for the cloned report", "example": "Example Title" }, "targetModelId": { "type": "string", "format": "uuid", "description": "Optional dataset ID to rebind the cloned report to", "example": "500123" }, "targetWorkspaceId": { "type": "string", "format": "uuid", "description": "Optional workspace ID for the cloned report", "example": "500123" } } }