Merge · Schema

StandardEntityRulePutInput

Input serializer for PUT /standard-entity-rules//. All fields required.

IntegrationsPlatformUnified APIAgent HandlerLLM Gateway

Properties

Name Type Description
is_active boolean
inbound_action object * `BLOCK` - BLOCK * `REDACT` - REDACT * `LOG` - LOG * `NONE` - NONE
outbound_action object * `BLOCK` - BLOCK * `REDACT` - REDACT * `LOG` - LOG * `NONE` - NONE
View JSON Schema on GitHub

JSON Schema

merge-standardentityruleputinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StandardEntityRulePutInput",
  "title": "StandardEntityRulePutInput",
  "type": "object",
  "properties": {
    "is_active": {
      "type": "boolean"
    },
    "inbound_action": {
      "$ref": "#/components/schemas/StandardEntityRulePutInputInboundAction",
      "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
    },
    "outbound_action": {
      "$ref": "#/components/schemas/StandardEntityRulePutInputOutboundAction",
      "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
    }
  },
  "required": [
    "is_active",
    "inbound_action",
    "outbound_action"
  ],
  "description": "Input serializer for PUT /standard-entity-rules/<entity_type>/. All fields required."
}