Genesyscloud_analytics_event_query 400 on AU-1 BYOC

Quick question about analytics event query deployment.

Context:
Deploying custom analytics view via Terraform provider v1.22.0 on AU-1 BYOC. The genesyscloud_analytics_event_query resource fails during terraform apply with 400 Bad Request. The HCL definition seems valid based on documentation.

Error output:
Error: creating Analytics Event Query: 400 Bad Request
Body: {“errors”:[{“code”:“bad_request”,“message”:“Invalid event query definition”,“more_info”:“”}]}

HCL snippet:
resource “genesyscloud_analytics_event_query” “test_query” {
name = “Test Event Query”
description = “Testing event query”
query {
id = “event-query-id”
type = “event”
data = jsonencode(file(“./query.json”))
}
}

The query.json file contains a valid event query structure with correct group_by and filter settings. Verified the JSON syntax with jq. API explorer returns 200 OK when posting the same payload directly.

Terraform plan succeeds. Apply fails immediately on this resource. Other analytics resources (report, dashboard) deploy fine.

Any known issues with event query schema validation in provider v1.22.0 for AU-1 region?