Can I prevent Siri from "seeing" specific parts of my app?

Let's say my app is a password or other type of secret manager, which means it can display highly sensitive data to the user.

If Siri summarize whats on screen, it would then be able to "see" that sensitive data and transmit it off device in a way the user might not expect nor want.

Is there a way that I can prevent this by marking specific views in an app as sensitive, or detect if Siri is analyzing the contents of the apps screen?

The .privacySensitive() modifier and @Environment(\.isSceneCaptured) environment variable do not seem to apply in this case.

Can I prevent Siri from "seeing" specific parts of my app?
 
 
Q