Parameterized Phrase with Integer

Is it possible to use integer parameter in parameterized phrase?

I have an app shortcut where user needs to provide an integer for the app to process it. But the phrase is not recognised by Siri. The one without integer parameter works fine.

struct LogWaterShortcuts: AppShortcutsProvider {
    @AppShortcutsBuilder static var appShortcuts: [AppShortcut] {
        AppShortcut(
            intent: LogWaterIntent(),
            phrases: [
                "Log Water in \(.applicationName)",
                "Log \(\.$quantity) Water in \(.applicationName)"
            ],
            shortTitle: "Log Water",
            systemImageName: "plus"
        )
    }
}

Is it not possible or I am doing something wrong? If it is not possible then is there any alternative that I can use to achieve the same?

Parameterized Phrase with Integer
 
 
Q