{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CopyDashboardTileRequest", "title": "CopyDashboardTileRequest", "type": "object", "properties": { "fromDashboardId": { "type": "integer", "description": "Dashboard id the tile currently belongs to." }, "tileId": { "type": "integer", "description": "Dashboard tile id to copy." } }, "required": [ "fromDashboardId", "tileId" ] }