{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/dlp_UpdateIntegrationBody", "title": "dlp_UpdateIntegrationBody", "properties": { "active": { "description": "Whether this integration is enabled. If disabled, no risk changes will be exported to the third-party.", "type": "boolean" }, "reference_id": { "description": "A reference id that can be supplied by the client. Currently this should be set to the Access-Okta IDP ID (a UUIDv4).\nhttps://developers.cloudflare.com/api/operations/access-identity-providers-get-an-access-identity-provider", "nullable": true, "type": "string" }, "tenant_url": { "description": "The base url of the tenant, e.g. \"https://tenant.okta.com\"", "format": "uri", "type": "string" } }, "required": [ "tenant_url", "active" ], "type": "object" }