uc_find_regulationactimperative
Given a country, region, US state or industry, return the most relevant data-privacy regulation and region pages on Usercentrics (e.g. GDPR for the EU, CCPA for California). Use this when the user asks which law applies to them or how to comply somewhere. Read a returned URL with uc_read_page to summarise it.Input schema
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "A country, region, US state or industry, e.g. \"California\", \"Germany\", \"healthcare\"."
}
},
"required": [
"query"
]
}