Merge · Schema

StandardEntityOverridePutInput

Input serializer for PUT /tool-packs//standard-entity-rules//.

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-standardentityoverrideputinput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/StandardEntityOverridePutInput",
  "title": "StandardEntityOverridePutInput",
  "type": "object",
  "properties": {
    "is_active": {
      "type": "boolean"
    },
    "inbound_action": {
      "$ref": "#/components/schemas/StandardEntityOverridePutInputInboundAction",
      "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
    },
    "outbound_action": {
      "$ref": "#/components/schemas/StandardEntityOverridePutInputOutboundAction",
      "description": "* `BLOCK` - BLOCK\n* `REDACT` - REDACT\n* `LOG` - LOG\n* `NONE` - NONE"
    }
  },
  "required": [
    "is_active",
    "inbound_action",
    "outbound_action"
  ],
  "description": "Input serializer for PUT /tool-packs/<id>/standard-entity-rules/<entity_type>/."
}