package model // CreateWorkspaceRequest is the request body for creating a workspace. type CreateWorkspaceRequest struct { ID string `json:"id"` } // WorkspaceResponse is the API response for a workspace. type WorkspaceResponse struct { ID string `json:"id"` }