{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UpdateGoogleAnalytics4Integration", "title": "UpdateGoogleAnalytics4Integration", "description": "Partially update Google Analytics 4 integration configuration", "type": "object", "properties": { "enabled": { "description": "Whether the integration is enabled", "type": "boolean" }, "type": { "description": "The type of the integration for categorization", "type": "string", "enum": [ "analytics" ] }, "config_data": { "type": "object", "$ref": "#/components/schemas/GoogleAnalytics4IntegrationConfigProperties" } }, "additionalProperties": false, "nullable": true }