/** * Serializer used solely for defining the OpenAPI schema in extend_schema_field. */ export type CanvasSection = { readonly id: string; name: string; content: Record; theme?: Record | null; metadata?: Record; is_draft: boolean; };