1. Registry
  2. Packages
  3. Port
  4. API Docs
  5. Workflow
Viewing docs for Port v2.23.1
published on Sunday, Aug 16, 2026 by port-labs
port logo port logo
Viewing docs for Port v2.23.1
published on Sunday, Aug 16, 2026 by port-labs

    Create Workflow Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Workflow(name: string, args: WorkflowArgs, opts?: CustomResourceOptions);
    @overload
    def Workflow(resource_name: str,
                 args: WorkflowArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Workflow(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 identifier: Optional[str] = None,
                 allow_anyone_to_view_runs: Optional[bool] = None,
                 category: Optional[str] = None,
                 connections: Optional[Sequence[WorkflowConnectionArgs]] = None,
                 description: Optional[str] = None,
                 icon: Optional[str] = None,
                 nodes: Optional[Sequence[WorkflowNodeArgs]] = None,
                 title: Optional[str] = None)
    func NewWorkflow(ctx *Context, name string, args WorkflowArgs, opts ...ResourceOption) (*Workflow, error)
    public Workflow(string name, WorkflowArgs args, CustomResourceOptions? opts = null)
    public Workflow(String name, WorkflowArgs args)
    public Workflow(String name, WorkflowArgs args, CustomResourceOptions options)
    
    type: port:Workflow
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "port_workflow" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args WorkflowArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Workflow Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The Workflow resource accepts the following input properties:

    Identifier string
    The identifier of the workflow
    AllowAnyoneToViewRuns bool
    Whether any user can view this workflow's runs
    Category string
    A free-form category used to group the workflow (max 40 characters)
    Connections List<port_labs.Port.Inputs.WorkflowConnection>
    A directed connection between two nodes
    Description string
    The description of the workflow
    Icon string
    The icon of the workflow
    Nodes List<port_labs.Port.Inputs.WorkflowNode>
    A node of the workflow graph. Exactly one node config block must be set.
    Title string
    The title of the workflow
    Identifier string
    The identifier of the workflow
    AllowAnyoneToViewRuns bool
    Whether any user can view this workflow's runs
    Category string
    A free-form category used to group the workflow (max 40 characters)
    Connections []WorkflowConnectionArgs
    A directed connection between two nodes
    Description string
    The description of the workflow
    Icon string
    The icon of the workflow
    Nodes []WorkflowNodeArgs
    A node of the workflow graph. Exactly one node config block must be set.
    Title string
    The title of the workflow
    identifier string
    The identifier of the workflow
    allow_anyone_to_view_runs bool
    Whether any user can view this workflow's runs
    category string
    A free-form category used to group the workflow (max 40 characters)
    connections list(object)
    A directed connection between two nodes
    description string
    The description of the workflow
    icon string
    The icon of the workflow
    nodes list(object)
    A node of the workflow graph. Exactly one node config block must be set.
    title string
    The title of the workflow
    identifier String
    The identifier of the workflow
    allowAnyoneToViewRuns Boolean
    Whether any user can view this workflow's runs
    category String
    A free-form category used to group the workflow (max 40 characters)
    connections List<WorkflowConnection>
    A directed connection between two nodes
    description String
    The description of the workflow
    icon String
    The icon of the workflow
    nodes List<WorkflowNode>
    A node of the workflow graph. Exactly one node config block must be set.
    title String
    The title of the workflow
    identifier string
    The identifier of the workflow
    allowAnyoneToViewRuns boolean
    Whether any user can view this workflow's runs
    category string
    A free-form category used to group the workflow (max 40 characters)
    connections WorkflowConnection[]
    A directed connection between two nodes
    description string
    The description of the workflow
    icon string
    The icon of the workflow
    nodes WorkflowNode[]
    A node of the workflow graph. Exactly one node config block must be set.
    title string
    The title of the workflow
    identifier str
    The identifier of the workflow
    allow_anyone_to_view_runs bool
    Whether any user can view this workflow's runs
    category str
    A free-form category used to group the workflow (max 40 characters)
    connections Sequence[WorkflowConnectionArgs]
    A directed connection between two nodes
    description str
    The description of the workflow
    icon str
    The icon of the workflow
    nodes Sequence[WorkflowNodeArgs]
    A node of the workflow graph. Exactly one node config block must be set.
    title str
    The title of the workflow
    identifier String
    The identifier of the workflow
    allowAnyoneToViewRuns Boolean
    Whether any user can view this workflow's runs
    category String
    A free-form category used to group the workflow (max 40 characters)
    connections List<Property Map>
    A directed connection between two nodes
    description String
    The description of the workflow
    icon String
    The icon of the workflow
    nodes List<Property Map>
    A node of the workflow graph. Exactly one node config block must be set.
    title String
    The title of the workflow

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Workflow resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing Workflow Resource

    Get an existing Workflow resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: WorkflowState, opts?: CustomResourceOptions): Workflow
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_anyone_to_view_runs: Optional[bool] = None,
            category: Optional[str] = None,
            connections: Optional[Sequence[WorkflowConnectionArgs]] = None,
            description: Optional[str] = None,
            icon: Optional[str] = None,
            identifier: Optional[str] = None,
            nodes: Optional[Sequence[WorkflowNodeArgs]] = None,
            title: Optional[str] = None) -> Workflow
    func GetWorkflow(ctx *Context, name string, id IDInput, state *WorkflowState, opts ...ResourceOption) (*Workflow, error)
    public static Workflow Get(string name, Input<string> id, WorkflowState? state, CustomResourceOptions? opts = null)
    public static Workflow get(String name, Output<String> id, WorkflowState state, CustomResourceOptions options)
    resources:  _:    type: port:Workflow    get:      id: ${id}
    import {
      to = port_workflow.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllowAnyoneToViewRuns bool
    Whether any user can view this workflow's runs
    Category string
    A free-form category used to group the workflow (max 40 characters)
    Connections List<port_labs.Port.Inputs.WorkflowConnection>
    A directed connection between two nodes
    Description string
    The description of the workflow
    Icon string
    The icon of the workflow
    Identifier string
    The identifier of the workflow
    Nodes List<port_labs.Port.Inputs.WorkflowNode>
    A node of the workflow graph. Exactly one node config block must be set.
    Title string
    The title of the workflow
    AllowAnyoneToViewRuns bool
    Whether any user can view this workflow's runs
    Category string
    A free-form category used to group the workflow (max 40 characters)
    Connections []WorkflowConnectionArgs
    A directed connection between two nodes
    Description string
    The description of the workflow
    Icon string
    The icon of the workflow
    Identifier string
    The identifier of the workflow
    Nodes []WorkflowNodeArgs
    A node of the workflow graph. Exactly one node config block must be set.
    Title string
    The title of the workflow
    allow_anyone_to_view_runs bool
    Whether any user can view this workflow's runs
    category string
    A free-form category used to group the workflow (max 40 characters)
    connections list(object)
    A directed connection between two nodes
    description string
    The description of the workflow
    icon string
    The icon of the workflow
    identifier string
    The identifier of the workflow
    nodes list(object)
    A node of the workflow graph. Exactly one node config block must be set.
    title string
    The title of the workflow
    allowAnyoneToViewRuns Boolean
    Whether any user can view this workflow's runs
    category String
    A free-form category used to group the workflow (max 40 characters)
    connections List<WorkflowConnection>
    A directed connection between two nodes
    description String
    The description of the workflow
    icon String
    The icon of the workflow
    identifier String
    The identifier of the workflow
    nodes List<WorkflowNode>
    A node of the workflow graph. Exactly one node config block must be set.
    title String
    The title of the workflow
    allowAnyoneToViewRuns boolean
    Whether any user can view this workflow's runs
    category string
    A free-form category used to group the workflow (max 40 characters)
    connections WorkflowConnection[]
    A directed connection between two nodes
    description string
    The description of the workflow
    icon string
    The icon of the workflow
    identifier string
    The identifier of the workflow
    nodes WorkflowNode[]
    A node of the workflow graph. Exactly one node config block must be set.
    title string
    The title of the workflow
    allow_anyone_to_view_runs bool
    Whether any user can view this workflow's runs
    category str
    A free-form category used to group the workflow (max 40 characters)
    connections Sequence[WorkflowConnectionArgs]
    A directed connection between two nodes
    description str
    The description of the workflow
    icon str
    The icon of the workflow
    identifier str
    The identifier of the workflow
    nodes Sequence[WorkflowNodeArgs]
    A node of the workflow graph. Exactly one node config block must be set.
    title str
    The title of the workflow
    allowAnyoneToViewRuns Boolean
    Whether any user can view this workflow's runs
    category String
    A free-form category used to group the workflow (max 40 characters)
    connections List<Property Map>
    A directed connection between two nodes
    description String
    The description of the workflow
    icon String
    The icon of the workflow
    identifier String
    The identifier of the workflow
    nodes List<Property Map>
    A node of the workflow graph. Exactly one node config block must be set.
    title String
    The title of the workflow

    Supporting Types

    WorkflowConnection, WorkflowConnectionArgs

    SourceIdentifier string
    The identifier of the source node
    TargetIdentifier string
    The identifier of the target node
    Description string
    The description of the connection
    Fallback bool
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    SourceOutletIdentifier string
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    SourceIdentifier string
    The identifier of the source node
    TargetIdentifier string
    The identifier of the target node
    Description string
    The description of the connection
    Fallback bool
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    SourceOutletIdentifier string
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    source_identifier string
    The identifier of the source node
    target_identifier string
    The identifier of the target node
    description string
    The description of the connection
    fallback bool
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    source_outlet_identifier string
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    sourceIdentifier String
    The identifier of the source node
    targetIdentifier String
    The identifier of the target node
    description String
    The description of the connection
    fallback Boolean
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    sourceOutletIdentifier String
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    sourceIdentifier string
    The identifier of the source node
    targetIdentifier string
    The identifier of the target node
    description string
    The description of the connection
    fallback boolean
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    sourceOutletIdentifier string
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    source_identifier str
    The identifier of the source node
    target_identifier str
    The identifier of the target node
    description str
    The description of the connection
    fallback bool
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    source_outlet_identifier str
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.
    sourceIdentifier String
    The identifier of the source node
    targetIdentifier String
    The identifier of the target node
    description String
    The description of the connection
    fallback Boolean
    Marks this connection as the fallback branch of a condition node, taken when no outlet matches. Cannot be combined with source_outlet_identifier.
    sourceOutletIdentifier String
    The outlet of the source node this connection leaves from. Required for condition and input nodes, and not allowed for any other node type.

    WorkflowNode, WorkflowNodeArgs

    Identifier string
    The identifier of the node
    Ai port_labs.Port.Inputs.WorkflowNodeAi
    An AI node that runs a prompt through Port AI.
    AiAgent port_labs.Port.Inputs.WorkflowNodeAiAgent
    An AI agent node that invokes a configured Port AI agent.
    Condition port_labs.Port.Inputs.WorkflowNodeCondition
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    Description string
    The description of the node
    EventTrigger port_labs.Port.Inputs.WorkflowNodeEventTrigger
    An event trigger node that starts the workflow when an entity event occurs.
    Icon string
    The icon of the node
    Input port_labs.Port.Inputs.WorkflowNodeInput
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    IntegrationAction port_labs.Port.Inputs.WorkflowNodeIntegrationAction
    An integration action node that invokes an installed integration.
    Kafka port_labs.Port.Inputs.WorkflowNodeKafka
    A Kafka node that publishes a message to the organization's Kafka topic.
    Links List<string>
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    ScheduleTrigger port_labs.Port.Inputs.WorkflowNodeScheduleTrigger
    A schedule trigger node that starts the workflow on a cron schedule.
    SelfServeTrigger port_labs.Port.Inputs.WorkflowNodeSelfServeTrigger
    A self service trigger node that starts the workflow from a user submitted form.
    Title string
    The title of the node
    UpsertEntity port_labs.Port.Inputs.WorkflowNodeUpsertEntity
    An upsert entity node that creates or updates an entity in the catalog.
    Variables Dictionary<string, string>
    Named expressions made available to the node at run time
    Verbose bool
    When true, the workflow service writes extended per-node run logs
    Webhook port_labs.Port.Inputs.WorkflowNodeWebhook
    A webhook node that sends an HTTP request.
    Identifier string
    The identifier of the node
    Ai WorkflowNodeAi
    An AI node that runs a prompt through Port AI.
    AiAgent WorkflowNodeAiAgent
    An AI agent node that invokes a configured Port AI agent.
    Condition WorkflowNodeCondition
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    Description string
    The description of the node
    EventTrigger WorkflowNodeEventTrigger
    An event trigger node that starts the workflow when an entity event occurs.
    Icon string
    The icon of the node
    Input WorkflowNodeInputType
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    IntegrationAction WorkflowNodeIntegrationAction
    An integration action node that invokes an installed integration.
    Kafka WorkflowNodeKafka
    A Kafka node that publishes a message to the organization's Kafka topic.
    Links []string
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    ScheduleTrigger WorkflowNodeScheduleTrigger
    A schedule trigger node that starts the workflow on a cron schedule.
    SelfServeTrigger WorkflowNodeSelfServeTrigger
    A self service trigger node that starts the workflow from a user submitted form.
    Title string
    The title of the node
    UpsertEntity WorkflowNodeUpsertEntity
    An upsert entity node that creates or updates an entity in the catalog.
    Variables map[string]string
    Named expressions made available to the node at run time
    Verbose bool
    When true, the workflow service writes extended per-node run logs
    Webhook WorkflowNodeWebhook
    A webhook node that sends an HTTP request.
    identifier string
    The identifier of the node
    ai object
    An AI node that runs a prompt through Port AI.
    ai_agent object
    An AI agent node that invokes a configured Port AI agent.
    condition object
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    description string
    The description of the node
    event_trigger object
    An event trigger node that starts the workflow when an entity event occurs.
    icon string
    The icon of the node
    input object
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    integration_action object
    An integration action node that invokes an installed integration.
    kafka object
    A Kafka node that publishes a message to the organization's Kafka topic.
    links list(string)
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    schedule_trigger object
    A schedule trigger node that starts the workflow on a cron schedule.
    self_serve_trigger object
    A self service trigger node that starts the workflow from a user submitted form.
    title string
    The title of the node
    upsert_entity object
    An upsert entity node that creates or updates an entity in the catalog.
    variables map(string)
    Named expressions made available to the node at run time
    verbose bool
    When true, the workflow service writes extended per-node run logs
    webhook object
    A webhook node that sends an HTTP request.
    identifier String
    The identifier of the node
    ai WorkflowNodeAi
    An AI node that runs a prompt through Port AI.
    aiAgent WorkflowNodeAiAgent
    An AI agent node that invokes a configured Port AI agent.
    condition WorkflowNodeCondition
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    description String
    The description of the node
    eventTrigger WorkflowNodeEventTrigger
    An event trigger node that starts the workflow when an entity event occurs.
    icon String
    The icon of the node
    input WorkflowNodeInput
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    integrationAction WorkflowNodeIntegrationAction
    An integration action node that invokes an installed integration.
    kafka WorkflowNodeKafka
    A Kafka node that publishes a message to the organization's Kafka topic.
    links List<String>
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    scheduleTrigger WorkflowNodeScheduleTrigger
    A schedule trigger node that starts the workflow on a cron schedule.
    selfServeTrigger WorkflowNodeSelfServeTrigger
    A self service trigger node that starts the workflow from a user submitted form.
    title String
    The title of the node
    upsertEntity WorkflowNodeUpsertEntity
    An upsert entity node that creates or updates an entity in the catalog.
    variables Map<String,String>
    Named expressions made available to the node at run time
    verbose Boolean
    When true, the workflow service writes extended per-node run logs
    webhook WorkflowNodeWebhook
    A webhook node that sends an HTTP request.
    identifier string
    The identifier of the node
    ai WorkflowNodeAi
    An AI node that runs a prompt through Port AI.
    aiAgent WorkflowNodeAiAgent
    An AI agent node that invokes a configured Port AI agent.
    condition WorkflowNodeCondition
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    description string
    The description of the node
    eventTrigger WorkflowNodeEventTrigger
    An event trigger node that starts the workflow when an entity event occurs.
    icon string
    The icon of the node
    input WorkflowNodeInput
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    integrationAction WorkflowNodeIntegrationAction
    An integration action node that invokes an installed integration.
    kafka WorkflowNodeKafka
    A Kafka node that publishes a message to the organization's Kafka topic.
    links string[]
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    scheduleTrigger WorkflowNodeScheduleTrigger
    A schedule trigger node that starts the workflow on a cron schedule.
    selfServeTrigger WorkflowNodeSelfServeTrigger
    A self service trigger node that starts the workflow from a user submitted form.
    title string
    The title of the node
    upsertEntity WorkflowNodeUpsertEntity
    An upsert entity node that creates or updates an entity in the catalog.
    variables {[key: string]: string}
    Named expressions made available to the node at run time
    verbose boolean
    When true, the workflow service writes extended per-node run logs
    webhook WorkflowNodeWebhook
    A webhook node that sends an HTTP request.
    identifier str
    The identifier of the node
    ai WorkflowNodeAi
    An AI node that runs a prompt through Port AI.
    ai_agent WorkflowNodeAiAgent
    An AI agent node that invokes a configured Port AI agent.
    condition WorkflowNodeCondition
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    description str
    The description of the node
    event_trigger WorkflowNodeEventTrigger
    An event trigger node that starts the workflow when an entity event occurs.
    icon str
    The icon of the node
    input WorkflowNodeInput
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    integration_action WorkflowNodeIntegrationAction
    An integration action node that invokes an installed integration.
    kafka WorkflowNodeKafka
    A Kafka node that publishes a message to the organization's Kafka topic.
    links Sequence[str]
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    schedule_trigger WorkflowNodeScheduleTrigger
    A schedule trigger node that starts the workflow on a cron schedule.
    self_serve_trigger WorkflowNodeSelfServeTrigger
    A self service trigger node that starts the workflow from a user submitted form.
    title str
    The title of the node
    upsert_entity WorkflowNodeUpsertEntity
    An upsert entity node that creates or updates an entity in the catalog.
    variables Mapping[str, str]
    Named expressions made available to the node at run time
    verbose bool
    When true, the workflow service writes extended per-node run logs
    webhook WorkflowNodeWebhook
    A webhook node that sends an HTTP request.
    identifier String
    The identifier of the node
    ai Property Map
    An AI node that runs a prompt through Port AI.
    aiAgent Property Map
    An AI agent node that invokes a configured Port AI agent.
    condition Property Map
    A condition node that branches the workflow based on JQ expressions. Connections leaving this node must set source_outlet_identifier or fallback.
    description String
    The description of the node
    eventTrigger Property Map
    An event trigger node that starts the workflow when an entity event occurs.
    icon String
    The icon of the node
    input Property Map
    An input node that pauses the workflow and waits for a human response. Connections leaving this node must set source_outlet_identifier.
    integrationAction Property Map
    An integration action node that invokes an installed integration.
    kafka Property Map
    A Kafka node that publishes a message to the organization's Kafka topic.
    links List<String>
    Link templates (supporting {{ .result.field }} interpolation) evaluated when the node run completes (max 3)
    scheduleTrigger Property Map
    A schedule trigger node that starts the workflow on a cron schedule.
    selfServeTrigger Property Map
    A self service trigger node that starts the workflow from a user submitted form.
    title String
    The title of the node
    upsertEntity Property Map
    An upsert entity node that creates or updates an entity in the catalog.
    variables Map<String>
    Named expressions made available to the node at run time
    verbose Boolean
    When true, the workflow service writes extended per-node run logs
    webhook Property Map
    A webhook node that sends an HTTP request.

    WorkflowNodeAi, WorkflowNodeAiArgs

    McpServers List<port_labs.Port.Inputs.WorkflowNodeAiMcpServer>
    The MCP servers available to the AI node (max 5).
    Model string
    The AI model to use. Must be set together with provider.
    OutputSchema string
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    Provider string
    The AI provider to use. Must be set together with model.
    SystemPrompt string
    Instructions describing the AI's role and operational rules.
    Tools List<string>
    Regex patterns matched against the available tool names.
    UserPrompt string
    The message or query processed by Port AI.
    McpServers []WorkflowNodeAiMcpServer
    The MCP servers available to the AI node (max 5).
    Model string
    The AI model to use. Must be set together with provider.
    OutputSchema string
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    Provider string
    The AI provider to use. Must be set together with model.
    SystemPrompt string
    Instructions describing the AI's role and operational rules.
    Tools []string
    Regex patterns matched against the available tool names.
    UserPrompt string
    The message or query processed by Port AI.
    mcp_servers list(object)
    The MCP servers available to the AI node (max 5).
    model string
    The AI model to use. Must be set together with provider.
    output_schema string
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    provider string
    The AI provider to use. Must be set together with model.
    system_prompt string
    Instructions describing the AI's role and operational rules.
    tools list(string)
    Regex patterns matched against the available tool names.
    user_prompt string
    The message or query processed by Port AI.
    mcpServers List<WorkflowNodeAiMcpServer>
    The MCP servers available to the AI node (max 5).
    model String
    The AI model to use. Must be set together with provider.
    outputSchema String
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    provider String
    The AI provider to use. Must be set together with model.
    systemPrompt String
    Instructions describing the AI's role and operational rules.
    tools List<String>
    Regex patterns matched against the available tool names.
    userPrompt String
    The message or query processed by Port AI.
    mcpServers WorkflowNodeAiMcpServer[]
    The MCP servers available to the AI node (max 5).
    model string
    The AI model to use. Must be set together with provider.
    outputSchema string
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    provider string
    The AI provider to use. Must be set together with model.
    systemPrompt string
    Instructions describing the AI's role and operational rules.
    tools string[]
    Regex patterns matched against the available tool names.
    userPrompt string
    The message or query processed by Port AI.
    mcp_servers Sequence[WorkflowNodeAiMcpServer]
    The MCP servers available to the AI node (max 5).
    model str
    The AI model to use. Must be set together with provider.
    output_schema str
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    provider str
    The AI provider to use. Must be set together with model.
    system_prompt str
    Instructions describing the AI's role and operational rules.
    tools Sequence[str]
    Regex patterns matched against the available tool names.
    user_prompt str
    The message or query processed by Port AI.
    mcpServers List<Property Map>
    The MCP servers available to the AI node (max 5).
    model String
    The AI model to use. Must be set together with provider.
    outputSchema String
    A JSON schema, encoded as a JSON string, the AI response is validated against.
    provider String
    The AI provider to use. Must be set together with model.
    systemPrompt String
    Instructions describing the AI's role and operational rules.
    tools List<String>
    Regex patterns matched against the available tool names.
    userPrompt String
    The message or query processed by Port AI.

    WorkflowNodeAiAgent, WorkflowNodeAiAgentArgs

    AgentIdentifier string
    The identifier of the agent to invoke.
    Model string
    The AI model to use. Must be set together with provider.
    OutputSchema string
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    Provider string
    The AI provider to use. Must be set together with model.
    UserPrompt string
    The message or query processed by the agent.
    AgentIdentifier string
    The identifier of the agent to invoke.
    Model string
    The AI model to use. Must be set together with provider.
    OutputSchema string
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    Provider string
    The AI provider to use. Must be set together with model.
    UserPrompt string
    The message or query processed by the agent.
    agent_identifier string
    The identifier of the agent to invoke.
    model string
    The AI model to use. Must be set together with provider.
    output_schema string
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    provider string
    The AI provider to use. Must be set together with model.
    user_prompt string
    The message or query processed by the agent.
    agentIdentifier String
    The identifier of the agent to invoke.
    model String
    The AI model to use. Must be set together with provider.
    outputSchema String
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    provider String
    The AI provider to use. Must be set together with model.
    userPrompt String
    The message or query processed by the agent.
    agentIdentifier string
    The identifier of the agent to invoke.
    model string
    The AI model to use. Must be set together with provider.
    outputSchema string
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    provider string
    The AI provider to use. Must be set together with model.
    userPrompt string
    The message or query processed by the agent.
    agent_identifier str
    The identifier of the agent to invoke.
    model str
    The AI model to use. Must be set together with provider.
    output_schema str
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    provider str
    The AI provider to use. Must be set together with model.
    user_prompt str
    The message or query processed by the agent.
    agentIdentifier String
    The identifier of the agent to invoke.
    model String
    The AI model to use. Must be set together with provider.
    outputSchema String
    A JSON schema, encoded as a JSON string, the agent response is validated against.
    provider String
    The AI provider to use. Must be set together with model.
    userPrompt String
    The message or query processed by the agent.

    WorkflowNodeAiMcpServer, WorkflowNodeAiMcpServerArgs

    Identifier string
    The identifier of the MCP server.
    Identifier string
    The identifier of the MCP server.
    identifier string
    The identifier of the MCP server.
    identifier String
    The identifier of the MCP server.
    identifier string
    The identifier of the MCP server.
    identifier str
    The identifier of the MCP server.
    identifier String
    The identifier of the MCP server.

    WorkflowNodeCondition, WorkflowNodeConditionArgs

    Outlets List<port_labs.Port.Inputs.WorkflowNodeConditionOutlet>
    The branches of the condition, evaluated in order.
    Outlets []WorkflowNodeConditionOutlet
    The branches of the condition, evaluated in order.
    outlets list(object)
    The branches of the condition, evaluated in order.
    outlets List<WorkflowNodeConditionOutlet>
    The branches of the condition, evaluated in order.
    outlets WorkflowNodeConditionOutlet[]
    The branches of the condition, evaluated in order.
    outlets Sequence[WorkflowNodeConditionOutlet]
    The branches of the condition, evaluated in order.
    outlets List<Property Map>
    The branches of the condition, evaluated in order.

    WorkflowNodeConditionOutlet, WorkflowNodeConditionOutletArgs

    Expression string
    The JQ expression that selects this outlet.
    Identifier string
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    StatusLabel port_labs.Port.Inputs.WorkflowNodeConditionOutletStatusLabel
    A custom status label displayed on the node run.
    Title string
    The title of the outlet.
    WorkflowStatusLabel port_labs.Port.Inputs.WorkflowNodeConditionOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    Expression string
    The JQ expression that selects this outlet.
    Identifier string
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    StatusLabel WorkflowNodeConditionOutletStatusLabel
    A custom status label displayed on the node run.
    Title string
    The title of the outlet.
    WorkflowStatusLabel WorkflowNodeConditionOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    expression string
    The JQ expression that selects this outlet.
    identifier string
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    status_label object
    A custom status label displayed on the node run.
    title string
    The title of the outlet.
    workflow_status_label object
    A custom status label displayed on the workflow run.
    expression String
    The JQ expression that selects this outlet.
    identifier String
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    statusLabel WorkflowNodeConditionOutletStatusLabel
    A custom status label displayed on the node run.
    title String
    The title of the outlet.
    workflowStatusLabel WorkflowNodeConditionOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    expression string
    The JQ expression that selects this outlet.
    identifier string
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    statusLabel WorkflowNodeConditionOutletStatusLabel
    A custom status label displayed on the node run.
    title string
    The title of the outlet.
    workflowStatusLabel WorkflowNodeConditionOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    expression str
    The JQ expression that selects this outlet.
    identifier str
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    status_label WorkflowNodeConditionOutletStatusLabel
    A custom status label displayed on the node run.
    title str
    The title of the outlet.
    workflow_status_label WorkflowNodeConditionOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    expression String
    The JQ expression that selects this outlet.
    identifier String
    The identifier of the outlet, referenced by a connection's source_outlet_identifier.
    statusLabel Property Map
    A custom status label displayed on the node run.
    title String
    The title of the outlet.
    workflowStatusLabel Property Map
    A custom status label displayed on the workflow run.

    WorkflowNodeConditionOutletStatusLabel, WorkflowNodeConditionOutletStatusLabelArgs

    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text str
    The label text. Supports JQ expressions for dynamic content.
    variant str
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.

    WorkflowNodeConditionOutletWorkflowStatusLabel, WorkflowNodeConditionOutletWorkflowStatusLabelArgs

    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text str
    The label text. Supports JQ expressions for dynamic content.
    variant str
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.

    WorkflowNodeEventTrigger, WorkflowNodeEventTriggerArgs

    BlueprintIdentifier string
    The blueprint identifier the event relates to.
    Condition port_labs.Port.Inputs.WorkflowNodeEventTriggerCondition
    A JQ condition gating whether the event starts the workflow.
    PropertyIdentifier string
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    Published bool
    Whether the trigger is published.
    Type string
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    BlueprintIdentifier string
    The blueprint identifier the event relates to.
    Condition WorkflowNodeEventTriggerCondition
    A JQ condition gating whether the event starts the workflow.
    PropertyIdentifier string
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    Published bool
    Whether the trigger is published.
    Type string
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    blueprint_identifier string
    The blueprint identifier the event relates to.
    condition object
    A JQ condition gating whether the event starts the workflow.
    property_identifier string
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    published bool
    Whether the trigger is published.
    type string
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    blueprintIdentifier String
    The blueprint identifier the event relates to.
    condition WorkflowNodeEventTriggerCondition
    A JQ condition gating whether the event starts the workflow.
    propertyIdentifier String
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    published Boolean
    Whether the trigger is published.
    type String
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    blueprintIdentifier string
    The blueprint identifier the event relates to.
    condition WorkflowNodeEventTriggerCondition
    A JQ condition gating whether the event starts the workflow.
    propertyIdentifier string
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    published boolean
    Whether the trigger is published.
    type string
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    blueprint_identifier str
    The blueprint identifier the event relates to.
    condition WorkflowNodeEventTriggerCondition
    A JQ condition gating whether the event starts the workflow.
    property_identifier str
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    published bool
    Whether the trigger is published.
    type str
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.
    blueprintIdentifier String
    The blueprint identifier the event relates to.
    condition Property Map
    A JQ condition gating whether the event starts the workflow.
    propertyIdentifier String
    The property identifier the timer event relates to. Required for the TIMER_EXPIRED event type.
    published Boolean
    Whether the trigger is published.
    type String
    The event type that triggers the workflow. One of ENTITY_CREATED, ENTITY_UPDATED, ENTITY_DELETED, TIMER_EXPIRED, ANY_ENTITY_CHANGE.

    WorkflowNodeEventTriggerCondition, WorkflowNodeEventTriggerConditionArgs

    Combinator string
    How the expressions are combined. One of and, or.
    Expressions List<string>
    The JQ expressions evaluated against the event.
    Combinator string
    How the expressions are combined. One of and, or.
    Expressions []string
    The JQ expressions evaluated against the event.
    combinator string
    How the expressions are combined. One of and, or.
    expressions list(string)
    The JQ expressions evaluated against the event.
    combinator String
    How the expressions are combined. One of and, or.
    expressions List<String>
    The JQ expressions evaluated against the event.
    combinator string
    How the expressions are combined. One of and, or.
    expressions string[]
    The JQ expressions evaluated against the event.
    combinator str
    How the expressions are combined. One of and, or.
    expressions Sequence[str]
    The JQ expressions evaluated against the event.
    combinator String
    How the expressions are combined. One of and, or.
    expressions List<String>
    The JQ expressions evaluated against the event.

    WorkflowNodeInput, WorkflowNodeInputArgs

    Description string
    The description shown on the response form.
    Notifications List<port_labs.Port.Inputs.WorkflowNodeInputNotification>
    Notifications sent when the input node starts waiting.
    Outlets List<port_labs.Port.Inputs.WorkflowNodeInputOutlet>
    The branches of the input node, each bound to a button.
    Responders port_labs.Port.Inputs.WorkflowNodeInputResponders
    Who is allowed to respond to this input node.
    UserInputs port_labs.Port.Inputs.WorkflowNodeInputUserInputs
    The form presented to the responders.
    Description string
    The description shown on the response form.
    Notifications []WorkflowNodeInputNotification
    Notifications sent when the input node starts waiting.
    Outlets []WorkflowNodeInputOutlet
    The branches of the input node, each bound to a button.
    Responders WorkflowNodeInputResponders
    Who is allowed to respond to this input node.
    UserInputs WorkflowNodeInputUserInputs
    The form presented to the responders.
    description string
    The description shown on the response form.
    notifications list(object)
    Notifications sent when the input node starts waiting.
    outlets list(object)
    The branches of the input node, each bound to a button.
    responders object
    Who is allowed to respond to this input node.
    user_inputs object
    The form presented to the responders.
    description String
    The description shown on the response form.
    notifications List<WorkflowNodeInputNotification>
    Notifications sent when the input node starts waiting.
    outlets List<WorkflowNodeInputOutlet>
    The branches of the input node, each bound to a button.
    responders WorkflowNodeInputResponders
    Who is allowed to respond to this input node.
    userInputs WorkflowNodeInputUserInputs
    The form presented to the responders.
    description string
    The description shown on the response form.
    notifications WorkflowNodeInputNotification[]
    Notifications sent when the input node starts waiting.
    outlets WorkflowNodeInputOutlet[]
    The branches of the input node, each bound to a button.
    responders WorkflowNodeInputResponders
    Who is allowed to respond to this input node.
    userInputs WorkflowNodeInputUserInputs
    The form presented to the responders.
    description str
    The description shown on the response form.
    notifications Sequence[WorkflowNodeInputNotification]
    Notifications sent when the input node starts waiting.
    outlets Sequence[WorkflowNodeInputOutlet]
    The branches of the input node, each bound to a button.
    responders WorkflowNodeInputResponders
    Who is allowed to respond to this input node.
    user_inputs WorkflowNodeInputUserInputs
    The form presented to the responders.
    description String
    The description shown on the response form.
    notifications List<Property Map>
    Notifications sent when the input node starts waiting.
    outlets List<Property Map>
    The branches of the input node, each bound to a button.
    responders Property Map
    Who is allowed to respond to this input node.
    userInputs Property Map
    The form presented to the responders.

    WorkflowNodeInputNotification, WorkflowNodeInputNotificationArgs

    Target string
    The notification target. One of email, webhook.
    Agent bool
    Whether the webhook is routed through the Port agent.
    Body string
    The webhook body as a JSON encoded string.
    Fields List<port_labs.Port.Inputs.WorkflowNodeInputNotificationField>
    The fields rendered in the email notification. Only valid when target is email.
    Headers Dictionary<string, string>
    The webhook headers.
    Method string
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    Url string
    The webhook URL. Required when target is webhook.
    Target string
    The notification target. One of email, webhook.
    Agent bool
    Whether the webhook is routed through the Port agent.
    Body string
    The webhook body as a JSON encoded string.
    Fields []WorkflowNodeInputNotificationField
    The fields rendered in the email notification. Only valid when target is email.
    Headers map[string]string
    The webhook headers.
    Method string
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    Url string
    The webhook URL. Required when target is webhook.
    target string
    The notification target. One of email, webhook.
    agent bool
    Whether the webhook is routed through the Port agent.
    body string
    The webhook body as a JSON encoded string.
    fields list(object)
    The fields rendered in the email notification. Only valid when target is email.
    headers map(string)
    The webhook headers.
    method string
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    url string
    The webhook URL. Required when target is webhook.
    target String
    The notification target. One of email, webhook.
    agent Boolean
    Whether the webhook is routed through the Port agent.
    body String
    The webhook body as a JSON encoded string.
    fields List<WorkflowNodeInputNotificationField>
    The fields rendered in the email notification. Only valid when target is email.
    headers Map<String,String>
    The webhook headers.
    method String
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    url String
    The webhook URL. Required when target is webhook.
    target string
    The notification target. One of email, webhook.
    agent boolean
    Whether the webhook is routed through the Port agent.
    body string
    The webhook body as a JSON encoded string.
    fields WorkflowNodeInputNotificationField[]
    The fields rendered in the email notification. Only valid when target is email.
    headers {[key: string]: string}
    The webhook headers.
    method string
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    url string
    The webhook URL. Required when target is webhook.
    target str
    The notification target. One of email, webhook.
    agent bool
    Whether the webhook is routed through the Port agent.
    body str
    The webhook body as a JSON encoded string.
    fields Sequence[WorkflowNodeInputNotificationField]
    The fields rendered in the email notification. Only valid when target is email.
    headers Mapping[str, str]
    The webhook headers.
    method str
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    url str
    The webhook URL. Required when target is webhook.
    target String
    The notification target. One of email, webhook.
    agent Boolean
    Whether the webhook is routed through the Port agent.
    body String
    The webhook body as a JSON encoded string.
    fields List<Property Map>
    The fields rendered in the email notification. Only valid when target is email.
    headers Map<String>
    The webhook headers.
    method String
    The webhook HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    url String
    The webhook URL. Required when target is webhook.

    WorkflowNodeInputNotificationField, WorkflowNodeInputNotificationFieldArgs

    Label string
    The label of the field.
    Value string
    The value of the field.
    Label string
    The label of the field.
    Value string
    The value of the field.
    label string
    The label of the field.
    value string
    The value of the field.
    label String
    The label of the field.
    value String
    The value of the field.
    label string
    The label of the field.
    value string
    The value of the field.
    label str
    The label of the field.
    value str
    The value of the field.
    label String
    The label of the field.
    value String
    The value of the field.

    WorkflowNodeInputOutlet, WorkflowNodeInputOutletArgs

    Identifier string
    The identifier of the outlet. Must match a button identifier.
    NumOfResponders int
    How many responders must press the button before the workflow continues.
    StatusLabel port_labs.Port.Inputs.WorkflowNodeInputOutletStatusLabel
    A custom status label displayed on the node run.
    Title string
    The title of the outlet.
    WorkflowStatusLabel port_labs.Port.Inputs.WorkflowNodeInputOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    Identifier string
    The identifier of the outlet. Must match a button identifier.
    NumOfResponders int
    How many responders must press the button before the workflow continues.
    StatusLabel WorkflowNodeInputOutletStatusLabel
    A custom status label displayed on the node run.
    Title string
    The title of the outlet.
    WorkflowStatusLabel WorkflowNodeInputOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    identifier string
    The identifier of the outlet. Must match a button identifier.
    num_of_responders number
    How many responders must press the button before the workflow continues.
    status_label object
    A custom status label displayed on the node run.
    title string
    The title of the outlet.
    workflow_status_label object
    A custom status label displayed on the workflow run.
    identifier String
    The identifier of the outlet. Must match a button identifier.
    numOfResponders Integer
    How many responders must press the button before the workflow continues.
    statusLabel WorkflowNodeInputOutletStatusLabel
    A custom status label displayed on the node run.
    title String
    The title of the outlet.
    workflowStatusLabel WorkflowNodeInputOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    identifier string
    The identifier of the outlet. Must match a button identifier.
    numOfResponders number
    How many responders must press the button before the workflow continues.
    statusLabel WorkflowNodeInputOutletStatusLabel
    A custom status label displayed on the node run.
    title string
    The title of the outlet.
    workflowStatusLabel WorkflowNodeInputOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    identifier str
    The identifier of the outlet. Must match a button identifier.
    num_of_responders int
    How many responders must press the button before the workflow continues.
    status_label WorkflowNodeInputOutletStatusLabel
    A custom status label displayed on the node run.
    title str
    The title of the outlet.
    workflow_status_label WorkflowNodeInputOutletWorkflowStatusLabel
    A custom status label displayed on the workflow run.
    identifier String
    The identifier of the outlet. Must match a button identifier.
    numOfResponders Number
    How many responders must press the button before the workflow continues.
    statusLabel Property Map
    A custom status label displayed on the node run.
    title String
    The title of the outlet.
    workflowStatusLabel Property Map
    A custom status label displayed on the workflow run.

    WorkflowNodeInputOutletStatusLabel, WorkflowNodeInputOutletStatusLabelArgs

    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text str
    The label text. Supports JQ expressions for dynamic content.
    variant str
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.

    WorkflowNodeInputOutletWorkflowStatusLabel, WorkflowNodeInputOutletWorkflowStatusLabelArgs

    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    Text string
    The label text. Supports JQ expressions for dynamic content.
    Variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.
    text string
    The label text. Supports JQ expressions for dynamic content.
    variant string
    Semantic variant controlling the label color/style. One of success, alert.
    text str
    The label text. Supports JQ expressions for dynamic content.
    variant str
    Semantic variant controlling the label color/style. One of success, alert.
    text String
    The label text. Supports JQ expressions for dynamic content.
    variant String
    Semantic variant controlling the label color/style. One of success, alert.

    WorkflowNodeInputResponders, WorkflowNodeInputRespondersArgs

    Roles List<string>
    The roles allowed to respond.
    Teams List<string>
    The identifiers of the teams allowed to respond. They must exist in the organization.
    Users List<string>
    The emails of the users allowed to respond. They must exist in the organization.
    UsersQuery string
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    Roles []string
    The roles allowed to respond.
    Teams []string
    The identifiers of the teams allowed to respond. They must exist in the organization.
    Users []string
    The emails of the users allowed to respond. They must exist in the organization.
    UsersQuery string
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    roles list(string)
    The roles allowed to respond.
    teams list(string)
    The identifiers of the teams allowed to respond. They must exist in the organization.
    users list(string)
    The emails of the users allowed to respond. They must exist in the organization.
    users_query string
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    roles List<String>
    The roles allowed to respond.
    teams List<String>
    The identifiers of the teams allowed to respond. They must exist in the organization.
    users List<String>
    The emails of the users allowed to respond. They must exist in the organization.
    usersQuery String
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    roles string[]
    The roles allowed to respond.
    teams string[]
    The identifiers of the teams allowed to respond. They must exist in the organization.
    users string[]
    The emails of the users allowed to respond. They must exist in the organization.
    usersQuery string
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    roles Sequence[str]
    The roles allowed to respond.
    teams Sequence[str]
    The identifiers of the teams allowed to respond. They must exist in the organization.
    users Sequence[str]
    The emails of the users allowed to respond. They must exist in the organization.
    users_query str
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.
    roles List<String>
    The roles allowed to respond.
    teams List<String>
    The identifiers of the teams allowed to respond. They must exist in the organization.
    users List<String>
    The emails of the users allowed to respond. They must exist in the organization.
    usersQuery String
    A JSON encoded entity search query, run against the _user blueprint, resolving additional responders.

    WorkflowNodeInputUserInputs, WorkflowNodeInputUserInputsArgs

    Buttons List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsButton>
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    OrderProperties List<string>
    The order the inputs are rendered in. Cannot be combined with steps.
    RequiredJqQuery string
    A jq query resolving which inputs are required.
    Steps List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsStep>
    Splits the form into steps. Cannot be combined with order_properties.
    Titles Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsTitles>
    Static titles rendered between the inputs of the form.
    UserProperties port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserProperties
    The user inputs the form collects.
    Validations List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsValidation>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    Buttons []WorkflowNodeInputUserInputsButton
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    OrderProperties []string
    The order the inputs are rendered in. Cannot be combined with steps.
    RequiredJqQuery string
    A jq query resolving which inputs are required.
    Steps []WorkflowNodeInputUserInputsStep
    Splits the form into steps. Cannot be combined with order_properties.
    Titles map[string]WorkflowNodeInputUserInputsTitles
    Static titles rendered between the inputs of the form.
    UserProperties WorkflowNodeInputUserInputsUserProperties
    The user inputs the form collects.
    Validations []WorkflowNodeInputUserInputsValidation
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    buttons list(object)
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    order_properties list(string)
    The order the inputs are rendered in. Cannot be combined with steps.
    required_jq_query string
    A jq query resolving which inputs are required.
    steps list(object)
    Splits the form into steps. Cannot be combined with order_properties.
    titles map(object)
    Static titles rendered between the inputs of the form.
    user_properties object
    The user inputs the form collects.
    validations list(object)
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    buttons List<WorkflowNodeInputUserInputsButton>
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    orderProperties List<String>
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery String
    A jq query resolving which inputs are required.
    steps List<WorkflowNodeInputUserInputsStep>
    Splits the form into steps. Cannot be combined with order_properties.
    titles Map<String,WorkflowNodeInputUserInputsTitles>
    Static titles rendered between the inputs of the form.
    userProperties WorkflowNodeInputUserInputsUserProperties
    The user inputs the form collects.
    validations List<WorkflowNodeInputUserInputsValidation>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    buttons WorkflowNodeInputUserInputsButton[]
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    orderProperties string[]
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery string
    A jq query resolving which inputs are required.
    steps WorkflowNodeInputUserInputsStep[]
    Splits the form into steps. Cannot be combined with order_properties.
    titles {[key: string]: WorkflowNodeInputUserInputsTitles}
    Static titles rendered between the inputs of the form.
    userProperties WorkflowNodeInputUserInputsUserProperties
    The user inputs the form collects.
    validations WorkflowNodeInputUserInputsValidation[]
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    buttons Sequence[WorkflowNodeInputUserInputsButton]
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    order_properties Sequence[str]
    The order the inputs are rendered in. Cannot be combined with steps.
    required_jq_query str
    A jq query resolving which inputs are required.
    steps Sequence[WorkflowNodeInputUserInputsStep]
    Splits the form into steps. Cannot be combined with order_properties.
    titles Mapping[str, WorkflowNodeInputUserInputsTitles]
    Static titles rendered between the inputs of the form.
    user_properties WorkflowNodeInputUserInputsUserProperties
    The user inputs the form collects.
    validations Sequence[WorkflowNodeInputUserInputsValidation]
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    buttons List<Property Map>
    The buttons rendered on the response form. Each outlet must reference one of these identifiers.
    orderProperties List<String>
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery String
    A jq query resolving which inputs are required.
    steps List<Property Map>
    Splits the form into steps. Cannot be combined with order_properties.
    titles Map<Property Map>
    Static titles rendered between the inputs of the form.
    userProperties Property Map
    The user inputs the form collects.
    validations List<Property Map>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.

    WorkflowNodeInputUserInputsButton, WorkflowNodeInputUserInputsButtonArgs

    Identifier string
    The identifier of the button.
    Label string
    The label of the button.
    Variant string
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    Icon string
    The icon of the button.
    Identifier string
    The identifier of the button.
    Label string
    The label of the button.
    Variant string
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    Icon string
    The icon of the button.
    identifier string
    The identifier of the button.
    label string
    The label of the button.
    variant string
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    icon string
    The icon of the button.
    identifier String
    The identifier of the button.
    label String
    The label of the button.
    variant String
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    icon String
    The icon of the button.
    identifier string
    The identifier of the button.
    label string
    The label of the button.
    variant string
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    icon string
    The icon of the button.
    identifier str
    The identifier of the button.
    label str
    The label of the button.
    variant str
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    icon str
    The icon of the button.
    identifier String
    The identifier of the button.
    label String
    The label of the button.
    variant String
    The button variant. One of PRIMARY, SECONDARY, DANGER.
    icon String
    The icon of the button.

    WorkflowNodeInputUserInputsStep, WorkflowNodeInputUserInputsStepArgs

    Orders List<string>
    The order of the inputs in this step.
    Title string
    The step's title (max 25 characters).
    Validations List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsStepValidation>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    Visible bool
    The visibility of the step.
    VisibleJqQuery string
    The visibility condition jq query of the step.
    Orders []string
    The order of the inputs in this step.
    Title string
    The step's title (max 25 characters).
    Validations []WorkflowNodeInputUserInputsStepValidation
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    Visible bool
    The visibility of the step.
    VisibleJqQuery string
    The visibility condition jq query of the step.
    orders list(string)
    The order of the inputs in this step.
    title string
    The step's title (max 25 characters).
    validations list(object)
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible bool
    The visibility of the step.
    visible_jq_query string
    The visibility condition jq query of the step.
    orders List<String>
    The order of the inputs in this step.
    title String
    The step's title (max 25 characters).
    validations List<WorkflowNodeInputUserInputsStepValidation>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible Boolean
    The visibility of the step.
    visibleJqQuery String
    The visibility condition jq query of the step.
    orders string[]
    The order of the inputs in this step.
    title string
    The step's title (max 25 characters).
    validations WorkflowNodeInputUserInputsStepValidation[]
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible boolean
    The visibility of the step.
    visibleJqQuery string
    The visibility condition jq query of the step.
    orders Sequence[str]
    The order of the inputs in this step.
    title str
    The step's title (max 25 characters).
    validations Sequence[WorkflowNodeInputUserInputsStepValidation]
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible bool
    The visibility of the step.
    visible_jq_query str
    The visibility condition jq query of the step.
    orders List<String>
    The order of the inputs in this step.
    title String
    The step's title (max 25 characters).
    validations List<Property Map>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible Boolean
    The visibility of the step.
    visibleJqQuery String
    The visibility condition jq query of the step.

    WorkflowNodeInputUserInputsStepValidation, WorkflowNodeInputUserInputsStepValidationArgs

    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint str
    A jq expression that has to evaluate to true for the form to be valid.
    message str
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).

    WorkflowNodeInputUserInputsTitles, WorkflowNodeInputUserInputsTitlesArgs

    Title string
    The title text.
    Description string
    The title description.
    Visible bool
    The visibility of the title.
    VisibleJqQuery string
    The visibility condition jq query of the title.
    Title string
    The title text.
    Description string
    The title description.
    Visible bool
    The visibility of the title.
    VisibleJqQuery string
    The visibility condition jq query of the title.
    title string
    The title text.
    description string
    The title description.
    visible bool
    The visibility of the title.
    visible_jq_query string
    The visibility condition jq query of the title.
    title String
    The title text.
    description String
    The title description.
    visible Boolean
    The visibility of the title.
    visibleJqQuery String
    The visibility condition jq query of the title.
    title string
    The title text.
    description string
    The title description.
    visible boolean
    The visibility of the title.
    visibleJqQuery string
    The visibility condition jq query of the title.
    title str
    The title text.
    description str
    The title description.
    visible bool
    The visibility of the title.
    visible_jq_query str
    The visibility condition jq query of the title.
    title String
    The title text.
    description String
    The title description.
    visible Boolean
    The visibility of the title.
    visibleJqQuery String
    The visibility condition jq query of the title.

    WorkflowNodeInputUserInputsUserProperties, WorkflowNodeInputUserInputsUserPropertiesArgs

    ArrayProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesArrayProps>
    The array inputs of the form.
    BooleanProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesBooleanProps>
    The boolean inputs of the form.
    NumberProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesNumberProps>
    The number inputs of the form.
    ObjectProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesObjectProps>
    The object inputs of the form.
    StringProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringProps>
    The string inputs of the form.
    ArrayProps map[string]WorkflowNodeInputUserInputsUserPropertiesArrayProps
    The array inputs of the form.
    BooleanProps map[string]WorkflowNodeInputUserInputsUserPropertiesBooleanProps
    The boolean inputs of the form.
    NumberProps map[string]WorkflowNodeInputUserInputsUserPropertiesNumberProps
    The number inputs of the form.
    ObjectProps map[string]WorkflowNodeInputUserInputsUserPropertiesObjectProps
    The object inputs of the form.
    StringProps map[string]WorkflowNodeInputUserInputsUserPropertiesStringProps
    The string inputs of the form.
    array_props map(object)
    The array inputs of the form.
    boolean_props map(object)
    The boolean inputs of the form.
    number_props map(object)
    The number inputs of the form.
    object_props map(object)
    The object inputs of the form.
    string_props map(object)
    The string inputs of the form.
    arrayProps Map<String,WorkflowNodeInputUserInputsUserPropertiesArrayProps>
    The array inputs of the form.
    booleanProps Map<String,WorkflowNodeInputUserInputsUserPropertiesBooleanProps>
    The boolean inputs of the form.
    numberProps Map<String,WorkflowNodeInputUserInputsUserPropertiesNumberProps>
    The number inputs of the form.
    objectProps Map<String,WorkflowNodeInputUserInputsUserPropertiesObjectProps>
    The object inputs of the form.
    stringProps Map<String,WorkflowNodeInputUserInputsUserPropertiesStringProps>
    The string inputs of the form.
    arrayProps {[key: string]: WorkflowNodeInputUserInputsUserPropertiesArrayProps}
    The array inputs of the form.
    booleanProps {[key: string]: WorkflowNodeInputUserInputsUserPropertiesBooleanProps}
    The boolean inputs of the form.
    numberProps {[key: string]: WorkflowNodeInputUserInputsUserPropertiesNumberProps}
    The number inputs of the form.
    objectProps {[key: string]: WorkflowNodeInputUserInputsUserPropertiesObjectProps}
    The object inputs of the form.
    stringProps {[key: string]: WorkflowNodeInputUserInputsUserPropertiesStringProps}
    The string inputs of the form.
    array_props Mapping[str, WorkflowNodeInputUserInputsUserPropertiesArrayProps]
    The array inputs of the form.
    boolean_props Mapping[str, WorkflowNodeInputUserInputsUserPropertiesBooleanProps]
    The boolean inputs of the form.
    number_props Mapping[str, WorkflowNodeInputUserInputsUserPropertiesNumberProps]
    The number inputs of the form.
    object_props Mapping[str, WorkflowNodeInputUserInputsUserPropertiesObjectProps]
    The object inputs of the form.
    string_props Mapping[str, WorkflowNodeInputUserInputsUserPropertiesStringProps]
    The string inputs of the form.
    arrayProps Map<Property Map>
    The array inputs of the form.
    booleanProps Map<Property Map>
    The boolean inputs of the form.
    numberProps Map<Property Map>
    The number inputs of the form.
    objectProps Map<Property Map>
    The object inputs of the form.
    stringProps Map<Property Map>
    The string inputs of the form.

    WorkflowNodeInputUserInputsUserPropertiesArrayProps, WorkflowNodeInputUserInputsUserPropertiesArrayPropsArgs

    DefaultJqQuery string
    The default jq query of the array input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the array input.
    Disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the array input.
    Icon string
    The icon of the array input.
    MaxItems int
    The max items of the array input.
    MaxItemsJqQuery string
    The max items jq query of the array input.
    MinItems int
    The min items of the array input.
    MinItemsJqQuery string
    The min items jq query of the array input.
    NumberItems port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    ObjectItems port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    ReadOnly bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the array input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    StringItems port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    Title string
    The title of the array input.
    UniqueItems bool
    Whether the values of the array have to be unique.
    Visible bool
    The visibility of the array input.
    VisibleJqQuery string
    The visibility condition jq query of the array input.
    DefaultJqQuery string
    The default jq query of the array input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the array input.
    Disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the array input.
    Icon string
    The icon of the array input.
    MaxItems int
    The max items of the array input.
    MaxItemsJqQuery string
    The max items jq query of the array input.
    MinItems int
    The min items of the array input.
    MinItemsJqQuery string
    The min items jq query of the array input.
    NumberItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    ObjectItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    ReadOnly bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the array input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    StringItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    Title string
    The title of the array input.
    UniqueItems bool
    Whether the values of the array have to be unique.
    Visible bool
    The visibility of the array input.
    VisibleJqQuery string
    The visibility condition jq query of the array input.
    default_jq_query string
    The default jq query of the array input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the array input.
    disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the array input.
    icon string
    The icon of the array input.
    max_items number
    The max items of the array input.
    max_items_jq_query string
    The max items jq query of the array input.
    min_items number
    The min items of the array input.
    min_items_jq_query string
    The min items jq query of the array input.
    number_items object
    The number items of the array input.
    object_items object
    The object items of the array input.
    read_only bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the array input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort object
    How the entities are sorted in the form.
    string_items object
    The string items of the array input.
    title string
    The title of the array input.
    unique_items bool
    Whether the values of the array have to be unique.
    visible bool
    The visibility of the array input.
    visible_jq_query string
    The visibility condition jq query of the array input.
    defaultJqQuery String
    The default jq query of the array input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the array input.
    disabled Boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the array input.
    icon String
    The icon of the array input.
    maxItems Integer
    The max items of the array input.
    maxItemsJqQuery String
    The max items jq query of the array input.
    minItems Integer
    The min items of the array input.
    minItemsJqQuery String
    The min items jq query of the array input.
    numberItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    objectItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    readOnly Boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the array input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    stringItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title String
    The title of the array input.
    uniqueItems Boolean
    Whether the values of the array have to be unique.
    visible Boolean
    The visibility of the array input.
    visibleJqQuery String
    The visibility condition jq query of the array input.
    defaultJqQuery string
    The default jq query of the array input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the array input.
    disabled boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the array input.
    icon string
    The icon of the array input.
    maxItems number
    The max items of the array input.
    maxItemsJqQuery string
    The max items jq query of the array input.
    minItems number
    The min items of the array input.
    minItemsJqQuery string
    The min items jq query of the array input.
    numberItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    objectItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    readOnly boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the array input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    stringItems WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title string
    The title of the array input.
    uniqueItems boolean
    Whether the values of the array have to be unique.
    visible boolean
    The visibility of the array input.
    visibleJqQuery string
    The visibility condition jq query of the array input.
    default_jq_query str
    The default jq query of the array input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the array input.
    disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the array input.
    icon str
    The icon of the array input.
    max_items int
    The max items of the array input.
    max_items_jq_query str
    The max items jq query of the array input.
    min_items int
    The min items of the array input.
    min_items_jq_query str
    The min items jq query of the array input.
    number_items WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    object_items WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    read_only bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the array input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    string_items WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title str
    The title of the array input.
    unique_items bool
    Whether the values of the array have to be unique.
    visible bool
    The visibility of the array input.
    visible_jq_query str
    The visibility condition jq query of the array input.
    defaultJqQuery String
    The default jq query of the array input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the array input.
    disabled Boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the array input.
    icon String
    The icon of the array input.
    maxItems Number
    The max items of the array input.
    maxItemsJqQuery String
    The max items jq query of the array input.
    minItems Number
    The min items of the array input.
    minItemsJqQuery String
    The min items jq query of the array input.
    numberItems Property Map
    The number items of the array input.
    objectItems Property Map
    The object items of the array input.
    readOnly Boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the array input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort Property Map
    How the entities are sorted in the form.
    stringItems Property Map
    The string items of the array input.
    title String
    The title of the array input.
    uniqueItems Boolean
    Whether the values of the array have to be unique.
    visible Boolean
    The visibility of the array input.
    visibleJqQuery String
    The visibility condition jq query of the array input.

    WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItems, WorkflowNodeInputUserInputsUserPropertiesArrayPropsNumberItemsArgs

    Defaults List<double>
    The default value of the items.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<double>
    The values the user can pick from.
    Defaults []float64
    The default value of the items.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []float64
    The values the user can pick from.
    defaults list(number)
    The default value of the items.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(number)
    The values the user can pick from.
    defaults List<Double>
    The default value of the items.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Double>
    The values the user can pick from.
    defaults number[]
    The default value of the items.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums number[]
    The values the user can pick from.
    defaults Sequence[float]
    The default value of the items.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[float]
    The values the user can pick from.
    defaults List<Number>
    The default value of the items.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Number>
    The values the user can pick from.

    WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItems, WorkflowNodeInputUserInputsUserPropertiesArrayPropsObjectItemsArgs

    Defaults List<ImmutableDictionary<string, string>>
    The default value of the items.
    Format string
    The format of each item.
    Defaults []map[string]string
    The default value of the items.
    Format string
    The format of each item.
    defaults list(map(string))
    The default value of the items.
    format string
    The format of each item.
    defaults List<Map<String,String>>
    The default value of the items.
    format String
    The format of each item.
    defaults {[key: string]: string}[]
    The default value of the items.
    format string
    The format of each item.
    defaults Sequence[Mapping[str, str]]
    The default value of the items.
    format str
    The format of each item.
    defaults List<Map<String>>
    The default value of the items.
    format String
    The format of each item.

    WorkflowNodeInputUserInputsUserPropertiesArrayPropsSort, WorkflowNodeInputUserInputsUserPropertiesArrayPropsSortArgs

    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property str
    The property to sort the entities by.
    order str
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.

    WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItems, WorkflowNodeInputUserInputsUserPropertiesArrayPropsStringItemsArgs

    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    Defaults List<string>
    The default value of the items.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<string>
    The values the user can pick from.
    Format string
    The format of each item.
    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    Defaults []string
    The default value of the items.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []string
    The values the user can pick from.
    Format string
    The format of each item.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults list(string)
    The default value of the items.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(string)
    The values the user can pick from.
    format string
    The format of each item.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset String
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults List<String>
    The default value of the items.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of each item.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults string[]
    The default value of the items.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums string[]
    The values the user can pick from.
    format string
    The format of each item.
    blueprint str
    The blueprint the entities are taken from. Required when format is entity.
    dataset str
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults Sequence[str]
    The default value of the items.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[str]
    The values the user can pick from.
    format str
    The format of each item.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset String
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults List<String>
    The default value of the items.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of each item.

    WorkflowNodeInputUserInputsUserPropertiesBooleanProps, WorkflowNodeInputUserInputsUserPropertiesBooleanPropsArgs

    Default bool
    The default of the boolean input.
    DefaultJqQuery string
    The default jq query of the boolean input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the boolean input.
    Disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the boolean input.
    Icon string
    The icon of the boolean input.
    ReadOnly bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the boolean input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the boolean input.
    Visible bool
    The visibility of the boolean input.
    VisibleJqQuery string
    The visibility condition jq query of the boolean input.
    Default bool
    The default of the boolean input.
    DefaultJqQuery string
    The default jq query of the boolean input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the boolean input.
    Disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the boolean input.
    Icon string
    The icon of the boolean input.
    ReadOnly bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the boolean input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the boolean input.
    Visible bool
    The visibility of the boolean input.
    VisibleJqQuery string
    The visibility condition jq query of the boolean input.
    default bool
    The default of the boolean input.
    default_jq_query string
    The default jq query of the boolean input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the boolean input.
    disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the boolean input.
    icon string
    The icon of the boolean input.
    read_only bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the boolean input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the boolean input.
    visible bool
    The visibility of the boolean input.
    visible_jq_query string
    The visibility condition jq query of the boolean input.
    defaultJqQuery String
    The default jq query of the boolean input.
    default_ Boolean
    The default of the boolean input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the boolean input.
    disabled Boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the boolean input.
    icon String
    The icon of the boolean input.
    readOnly Boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the boolean input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the boolean input.
    visible Boolean
    The visibility of the boolean input.
    visibleJqQuery String
    The visibility condition jq query of the boolean input.
    default boolean
    The default of the boolean input.
    defaultJqQuery string
    The default jq query of the boolean input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the boolean input.
    disabled boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the boolean input.
    icon string
    The icon of the boolean input.
    readOnly boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the boolean input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the boolean input.
    visible boolean
    The visibility of the boolean input.
    visibleJqQuery string
    The visibility condition jq query of the boolean input.
    default bool
    The default of the boolean input.
    default_jq_query str
    The default jq query of the boolean input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the boolean input.
    disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the boolean input.
    icon str
    The icon of the boolean input.
    read_only bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the boolean input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the boolean input.
    visible bool
    The visibility of the boolean input.
    visible_jq_query str
    The visibility condition jq query of the boolean input.
    default Boolean
    The default of the boolean input.
    defaultJqQuery String
    The default jq query of the boolean input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the boolean input.
    disabled Boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the boolean input.
    icon String
    The icon of the boolean input.
    readOnly Boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the boolean input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the boolean input.
    visible Boolean
    The visibility of the boolean input.
    visibleJqQuery String
    The visibility condition jq query of the boolean input.

    WorkflowNodeInputUserInputsUserPropertiesNumberProps, WorkflowNodeInputUserInputsUserPropertiesNumberPropsArgs

    Default double
    The default of the number input.
    DefaultJqQuery string
    The default jq query of the number input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the number input.
    Disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the number input.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<double>
    The values the user can pick from.
    ExclusiveMaximum double
    The value the input has to be strictly smaller than.
    ExclusiveMinimum double
    The value the input has to be strictly greater than.
    Icon string
    The icon of the number input.
    Maximum double
    The largest value the input accepts.
    Minimum double
    The smallest value the input accepts.
    ReadOnly bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the number input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the number input.
    Visible bool
    The visibility of the number input.
    VisibleJqQuery string
    The visibility condition jq query of the number input.
    Default float64
    The default of the number input.
    DefaultJqQuery string
    The default jq query of the number input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the number input.
    Disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the number input.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []float64
    The values the user can pick from.
    ExclusiveMaximum float64
    The value the input has to be strictly smaller than.
    ExclusiveMinimum float64
    The value the input has to be strictly greater than.
    Icon string
    The icon of the number input.
    Maximum float64
    The largest value the input accepts.
    Minimum float64
    The smallest value the input accepts.
    ReadOnly bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the number input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the number input.
    Visible bool
    The visibility of the number input.
    VisibleJqQuery string
    The visibility condition jq query of the number input.
    default number
    The default of the number input.
    default_jq_query string
    The default jq query of the number input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the number input.
    disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the number input.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(number)
    The values the user can pick from.
    exclusive_maximum number
    The value the input has to be strictly smaller than.
    exclusive_minimum number
    The value the input has to be strictly greater than.
    icon string
    The icon of the number input.
    maximum number
    The largest value the input accepts.
    minimum number
    The smallest value the input accepts.
    read_only bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the number input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the number input.
    visible bool
    The visibility of the number input.
    visible_jq_query string
    The visibility condition jq query of the number input.
    defaultJqQuery String
    The default jq query of the number input.
    default_ Double
    The default of the number input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the number input.
    disabled Boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the number input.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Double>
    The values the user can pick from.
    exclusiveMaximum Double
    The value the input has to be strictly smaller than.
    exclusiveMinimum Double
    The value the input has to be strictly greater than.
    icon String
    The icon of the number input.
    maximum Double
    The largest value the input accepts.
    minimum Double
    The smallest value the input accepts.
    readOnly Boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the number input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the number input.
    visible Boolean
    The visibility of the number input.
    visibleJqQuery String
    The visibility condition jq query of the number input.
    default number
    The default of the number input.
    defaultJqQuery string
    The default jq query of the number input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the number input.
    disabled boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the number input.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums number[]
    The values the user can pick from.
    exclusiveMaximum number
    The value the input has to be strictly smaller than.
    exclusiveMinimum number
    The value the input has to be strictly greater than.
    icon string
    The icon of the number input.
    maximum number
    The largest value the input accepts.
    minimum number
    The smallest value the input accepts.
    readOnly boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the number input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the number input.
    visible boolean
    The visibility of the number input.
    visibleJqQuery string
    The visibility condition jq query of the number input.
    default float
    The default of the number input.
    default_jq_query str
    The default jq query of the number input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the number input.
    disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the number input.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[float]
    The values the user can pick from.
    exclusive_maximum float
    The value the input has to be strictly smaller than.
    exclusive_minimum float
    The value the input has to be strictly greater than.
    icon str
    The icon of the number input.
    maximum float
    The largest value the input accepts.
    minimum float
    The smallest value the input accepts.
    read_only bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the number input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the number input.
    visible bool
    The visibility of the number input.
    visible_jq_query str
    The visibility condition jq query of the number input.
    default Number
    The default of the number input.
    defaultJqQuery String
    The default jq query of the number input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the number input.
    disabled Boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the number input.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Number>
    The values the user can pick from.
    exclusiveMaximum Number
    The value the input has to be strictly smaller than.
    exclusiveMinimum Number
    The value the input has to be strictly greater than.
    icon String
    The icon of the number input.
    maximum Number
    The largest value the input accepts.
    minimum Number
    The smallest value the input accepts.
    readOnly Boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the number input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the number input.
    visible Boolean
    The visibility of the number input.
    visibleJqQuery String
    The visibility condition jq query of the number input.

    WorkflowNodeInputUserInputsUserPropertiesObjectProps, WorkflowNodeInputUserInputsUserPropertiesObjectPropsArgs

    Default string
    The default of the object input, as a JSON encoded string.
    DefaultJqQuery string
    The default jq query of the object input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the object input.
    Disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the object input.
    Format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    Icon string
    The icon of the object input.
    ReadOnly bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the object input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the object input.
    Visible bool
    The visibility of the object input.
    VisibleJqQuery string
    The visibility condition jq query of the object input.
    Default string
    The default of the object input, as a JSON encoded string.
    DefaultJqQuery string
    The default jq query of the object input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the object input.
    Disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the object input.
    Format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    Icon string
    The icon of the object input.
    ReadOnly bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the object input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the object input.
    Visible bool
    The visibility of the object input.
    VisibleJqQuery string
    The visibility condition jq query of the object input.
    default string
    The default of the object input, as a JSON encoded string.
    default_jq_query string
    The default jq query of the object input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the object input.
    disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the object input.
    format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon string
    The icon of the object input.
    read_only bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the object input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the object input.
    visible bool
    The visibility of the object input.
    visible_jq_query string
    The visibility condition jq query of the object input.
    defaultJqQuery String
    The default jq query of the object input.
    default_ String
    The default of the object input, as a JSON encoded string.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the object input.
    disabled Boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the object input.
    format String
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon String
    The icon of the object input.
    readOnly Boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the object input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the object input.
    visible Boolean
    The visibility of the object input.
    visibleJqQuery String
    The visibility condition jq query of the object input.
    default string
    The default of the object input, as a JSON encoded string.
    defaultJqQuery string
    The default jq query of the object input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the object input.
    disabled boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the object input.
    format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon string
    The icon of the object input.
    readOnly boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the object input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the object input.
    visible boolean
    The visibility of the object input.
    visibleJqQuery string
    The visibility condition jq query of the object input.
    default str
    The default of the object input, as a JSON encoded string.
    default_jq_query str
    The default jq query of the object input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the object input.
    disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the object input.
    format str
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon str
    The icon of the object input.
    read_only bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the object input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the object input.
    visible bool
    The visibility of the object input.
    visible_jq_query str
    The visibility condition jq query of the object input.
    default String
    The default of the object input, as a JSON encoded string.
    defaultJqQuery String
    The default jq query of the object input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the object input.
    disabled Boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the object input.
    format String
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon String
    The icon of the object input.
    readOnly Boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the object input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the object input.
    visible Boolean
    The visibility of the object input.
    visibleJqQuery String
    The visibility condition jq query of the object input.

    WorkflowNodeInputUserInputsUserPropertiesStringProps, WorkflowNodeInputUserInputsUserPropertiesStringPropsArgs

    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    Default string
    The default of the string input.
    DefaultJqQuery string
    The default jq query of the string input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the string input.
    Disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the string input.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<string>
    The values the user can pick from.
    Format string
    The format of the string input.
    Icon string
    The icon of the string input.
    MaxLength int
    The max length of the string input.
    MinLength int
    The min length of the string input.
    Pattern string
    The regex pattern the value has to match.
    PatternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    ReadOnly bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the string input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    Title string
    The title of the string input.
    Visible bool
    The visibility of the string input.
    VisibleJqQuery string
    The visibility condition jq query of the string input.
    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    Default string
    The default of the string input.
    DefaultJqQuery string
    The default jq query of the string input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the string input.
    Disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the string input.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []string
    The values the user can pick from.
    Format string
    The format of the string input.
    Icon string
    The icon of the string input.
    MaxLength int
    The max length of the string input.
    MinLength int
    The min length of the string input.
    Pattern string
    The regex pattern the value has to match.
    PatternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    ReadOnly bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the string input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort WorkflowNodeInputUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    Title string
    The title of the string input.
    Visible bool
    The visibility of the string input.
    VisibleJqQuery string
    The visibility condition jq query of the string input.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset object
    The dataset filtering the entities the user can pick from.
    default string
    The default of the string input.
    default_jq_query string
    The default jq query of the string input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the string input.
    disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the string input.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(string)
    The values the user can pick from.
    format string
    The format of the string input.
    icon string
    The icon of the string input.
    max_length number
    The max length of the string input.
    min_length number
    The min length of the string input.
    pattern string
    The regex pattern the value has to match.
    pattern_jq_query string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    read_only bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the string input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort object
    How the entities are sorted in the form.
    title string
    The title of the string input.
    visible bool
    The visibility of the string input.
    visible_jq_query string
    The visibility condition jq query of the string input.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    defaultJqQuery String
    The default jq query of the string input.
    default_ String
    The default of the string input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the string input.
    disabled Boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the string input.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of the string input.
    icon String
    The icon of the string input.
    maxLength Integer
    The max length of the string input.
    minLength Integer
    The min length of the string input.
    pattern String
    The regex pattern the value has to match.
    patternJqQuery String
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly Boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the string input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title String
    The title of the string input.
    visible Boolean
    The visibility of the string input.
    visibleJqQuery String
    The visibility condition jq query of the string input.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    default string
    The default of the string input.
    defaultJqQuery string
    The default jq query of the string input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the string input.
    disabled boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the string input.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums string[]
    The values the user can pick from.
    format string
    The format of the string input.
    icon string
    The icon of the string input.
    maxLength number
    The max length of the string input.
    minLength number
    The min length of the string input.
    pattern string
    The regex pattern the value has to match.
    patternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the string input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title string
    The title of the string input.
    visible boolean
    The visibility of the string input.
    visibleJqQuery string
    The visibility condition jq query of the string input.
    blueprint str
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    default str
    The default of the string input.
    default_jq_query str
    The default jq query of the string input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the string input.
    disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the string input.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[str]
    The values the user can pick from.
    format str
    The format of the string input.
    icon str
    The icon of the string input.
    max_length int
    The max length of the string input.
    min_length int
    The min length of the string input.
    pattern str
    The regex pattern the value has to match.
    pattern_jq_query str
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    read_only bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the string input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeInputUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title str
    The title of the string input.
    visible bool
    The visibility of the string input.
    visible_jq_query str
    The visibility condition jq query of the string input.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset Property Map
    The dataset filtering the entities the user can pick from.
    default String
    The default of the string input.
    defaultJqQuery String
    The default jq query of the string input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the string input.
    disabled Boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the string input.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of the string input.
    icon String
    The icon of the string input.
    maxLength Number
    The max length of the string input.
    minLength Number
    The min length of the string input.
    pattern String
    The regex pattern the value has to match.
    patternJqQuery String
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly Boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the string input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort Property Map
    How the entities are sorted in the form.
    title String
    The title of the string input.
    visible Boolean
    The visibility of the string input.
    visibleJqQuery String
    The visibility condition jq query of the string input.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDataset, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetArgs

    Combinator string
    How the rules are combined.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    Combinator string
    How the rules are combined.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator string
    How the rules are combined.
    rules list(object)
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator String
    How the rules are combined.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator string
    How the rules are combined.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule[]
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator str
    How the rules are combined.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule]
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator String
    How the rules are combined.
    rules List<Property Map>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Value port_labs.Port.Inputs.WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    value WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValue, WorkflowNodeInputUserInputsUserPropertiesStringPropsDatasetRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeInputUserInputsUserPropertiesStringPropsSort, WorkflowNodeInputUserInputsUserPropertiesStringPropsSortArgs

    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property str
    The property to sort the entities by.
    order str
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.

    WorkflowNodeInputUserInputsValidation, WorkflowNodeInputUserInputsValidationArgs

    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint str
    A jq expression that has to evaluate to true for the form to be valid.
    message str
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).

    WorkflowNodeIntegrationAction, WorkflowNodeIntegrationActionArgs

    ExecutionProperties string
    The integration action execution properties as a JSON encoded string.
    InstallationId string
    The installation id of the integration.
    IntegrationInvocationType string
    The invocation type of the integration action.
    IntegrationProvider string
    The provider of the integration action.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    ExecutionProperties string
    The integration action execution properties as a JSON encoded string.
    InstallationId string
    The installation id of the integration.
    IntegrationInvocationType string
    The invocation type of the integration action.
    IntegrationProvider string
    The provider of the integration action.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    execution_properties string
    The integration action execution properties as a JSON encoded string.
    installation_id string
    The installation id of the integration.
    integration_invocation_type string
    The invocation type of the integration action.
    integration_provider string
    The provider of the integration action.
    on_failure string
    The action to take if the node fails. One of continue, terminate.
    executionProperties String
    The integration action execution properties as a JSON encoded string.
    installationId String
    The installation id of the integration.
    integrationInvocationType String
    The invocation type of the integration action.
    integrationProvider String
    The provider of the integration action.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    executionProperties string
    The integration action execution properties as a JSON encoded string.
    installationId string
    The installation id of the integration.
    integrationInvocationType string
    The invocation type of the integration action.
    integrationProvider string
    The provider of the integration action.
    onFailure string
    The action to take if the node fails. One of continue, terminate.
    execution_properties str
    The integration action execution properties as a JSON encoded string.
    installation_id str
    The installation id of the integration.
    integration_invocation_type str
    The invocation type of the integration action.
    integration_provider str
    The provider of the integration action.
    on_failure str
    The action to take if the node fails. One of continue, terminate.
    executionProperties String
    The integration action execution properties as a JSON encoded string.
    installationId String
    The installation id of the integration.
    integrationInvocationType String
    The invocation type of the integration action.
    integrationProvider String
    The provider of the integration action.
    onFailure String
    The action to take if the node fails. One of continue, terminate.

    WorkflowNodeKafka, WorkflowNodeKafkaArgs

    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    Payload string
    The Kafka message payload as a JSON encoded string.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    Payload string
    The Kafka message payload as a JSON encoded string.
    on_failure string
    The action to take if the node fails. One of continue, terminate.
    payload string
    The Kafka message payload as a JSON encoded string.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    payload String
    The Kafka message payload as a JSON encoded string.
    onFailure string
    The action to take if the node fails. One of continue, terminate.
    payload string
    The Kafka message payload as a JSON encoded string.
    on_failure str
    The action to take if the node fails. One of continue, terminate.
    payload str
    The Kafka message payload as a JSON encoded string.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    payload String
    The Kafka message payload as a JSON encoded string.

    WorkflowNodeScheduleTrigger, WorkflowNodeScheduleTriggerArgs

    Cron string
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    Published bool
    Whether the trigger is published.
    Cron string
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    Published bool
    Whether the trigger is published.
    cron string
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    published bool
    Whether the trigger is published.
    cron String
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    published Boolean
    Whether the trigger is published.
    cron string
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    published boolean
    Whether the trigger is published.
    cron str
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    published bool
    Whether the trigger is published.
    cron String
    The cron expression defining when the workflow triggers (e.g. 0 9 * * 1-5), evaluated in UTC.
    published Boolean
    Whether the trigger is published.

    WorkflowNodeSelfServeTrigger, WorkflowNodeSelfServeTriggerArgs

    ActionCardButtonText string
    The text of the button displayed on the self service card (max 15 characters).
    Contexts List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerContext>
    Where the trigger is surfaced in the UI.
    ExecuteActionButtonText string
    The text of the button that executes the workflow (max 15 characters).
    Permissions port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerPermissions
    Who is allowed to execute this trigger.
    Published bool
    Whether the trigger is published.
    UserInputs port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputs
    The form presented to the user when triggering the workflow.
    Variant string
    The trigger variant. One of DEFAULT, ALERT.
    ActionCardButtonText string
    The text of the button displayed on the self service card (max 15 characters).
    Contexts []WorkflowNodeSelfServeTriggerContext
    Where the trigger is surfaced in the UI.
    ExecuteActionButtonText string
    The text of the button that executes the workflow (max 15 characters).
    Permissions WorkflowNodeSelfServeTriggerPermissions
    Who is allowed to execute this trigger.
    Published bool
    Whether the trigger is published.
    UserInputs WorkflowNodeSelfServeTriggerUserInputs
    The form presented to the user when triggering the workflow.
    Variant string
    The trigger variant. One of DEFAULT, ALERT.
    action_card_button_text string
    The text of the button displayed on the self service card (max 15 characters).
    contexts list(object)
    Where the trigger is surfaced in the UI.
    execute_action_button_text string
    The text of the button that executes the workflow (max 15 characters).
    permissions object
    Who is allowed to execute this trigger.
    published bool
    Whether the trigger is published.
    user_inputs object
    The form presented to the user when triggering the workflow.
    variant string
    The trigger variant. One of DEFAULT, ALERT.
    actionCardButtonText String
    The text of the button displayed on the self service card (max 15 characters).
    contexts List<WorkflowNodeSelfServeTriggerContext>
    Where the trigger is surfaced in the UI.
    executeActionButtonText String
    The text of the button that executes the workflow (max 15 characters).
    permissions WorkflowNodeSelfServeTriggerPermissions
    Who is allowed to execute this trigger.
    published Boolean
    Whether the trigger is published.
    userInputs WorkflowNodeSelfServeTriggerUserInputs
    The form presented to the user when triggering the workflow.
    variant String
    The trigger variant. One of DEFAULT, ALERT.
    actionCardButtonText string
    The text of the button displayed on the self service card (max 15 characters).
    contexts WorkflowNodeSelfServeTriggerContext[]
    Where the trigger is surfaced in the UI.
    executeActionButtonText string
    The text of the button that executes the workflow (max 15 characters).
    permissions WorkflowNodeSelfServeTriggerPermissions
    Who is allowed to execute this trigger.
    published boolean
    Whether the trigger is published.
    userInputs WorkflowNodeSelfServeTriggerUserInputs
    The form presented to the user when triggering the workflow.
    variant string
    The trigger variant. One of DEFAULT, ALERT.
    action_card_button_text str
    The text of the button displayed on the self service card (max 15 characters).
    contexts Sequence[WorkflowNodeSelfServeTriggerContext]
    Where the trigger is surfaced in the UI.
    execute_action_button_text str
    The text of the button that executes the workflow (max 15 characters).
    permissions WorkflowNodeSelfServeTriggerPermissions
    Who is allowed to execute this trigger.
    published bool
    Whether the trigger is published.
    user_inputs WorkflowNodeSelfServeTriggerUserInputs
    The form presented to the user when triggering the workflow.
    variant str
    The trigger variant. One of DEFAULT, ALERT.
    actionCardButtonText String
    The text of the button displayed on the self service card (max 15 characters).
    contexts List<Property Map>
    Where the trigger is surfaced in the UI.
    executeActionButtonText String
    The text of the button that executes the workflow (max 15 characters).
    permissions Property Map
    Who is allowed to execute this trigger.
    published Boolean
    Whether the trigger is published.
    userInputs Property Map
    The form presented to the user when triggering the workflow.
    variant String
    The trigger variant. One of DEFAULT, ALERT.

    WorkflowNodeSelfServeTriggerContext, WorkflowNodeSelfServeTriggerContextArgs

    On string
    The context type. One of CREATE_ENTITY, ENTITY.
    BlueprintIdentifier string
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    UserInput string
    The user input the trigger is bound to. Required when on is ENTITY.
    On string
    The context type. One of CREATE_ENTITY, ENTITY.
    BlueprintIdentifier string
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    UserInput string
    The user input the trigger is bound to. Required when on is ENTITY.
    on string
    The context type. One of CREATE_ENTITY, ENTITY.
    blueprint_identifier string
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    user_input string
    The user input the trigger is bound to. Required when on is ENTITY.
    on String
    The context type. One of CREATE_ENTITY, ENTITY.
    blueprintIdentifier String
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    userInput String
    The user input the trigger is bound to. Required when on is ENTITY.
    on string
    The context type. One of CREATE_ENTITY, ENTITY.
    blueprintIdentifier string
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    userInput string
    The user input the trigger is bound to. Required when on is ENTITY.
    on str
    The context type. One of CREATE_ENTITY, ENTITY.
    blueprint_identifier str
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    user_input str
    The user input the trigger is bound to. Required when on is ENTITY.
    on String
    The context type. One of CREATE_ENTITY, ENTITY.
    blueprintIdentifier String
    The blueprint the trigger creates an entity for. Required when on is CREATE_ENTITY.
    userInput String
    The user input the trigger is bound to. Required when on is ENTITY.

    WorkflowNodeSelfServeTriggerPermissions, WorkflowNodeSelfServeTriggerPermissionsArgs

    Policy string
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    Roles List<string>
    The roles the permission applies to.
    Teams List<string>
    The identifiers of the teams the permission applies to. They must exist in the organization.
    Users List<string>
    The emails of the users the permission applies to. They must exist in the organization.
    Policy string
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    Roles []string
    The roles the permission applies to.
    Teams []string
    The identifiers of the teams the permission applies to. They must exist in the organization.
    Users []string
    The emails of the users the permission applies to. They must exist in the organization.
    policy string
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    roles list(string)
    The roles the permission applies to.
    teams list(string)
    The identifiers of the teams the permission applies to. They must exist in the organization.
    users list(string)
    The emails of the users the permission applies to. They must exist in the organization.
    policy String
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    roles List<String>
    The roles the permission applies to.
    teams List<String>
    The identifiers of the teams the permission applies to. They must exist in the organization.
    users List<String>
    The emails of the users the permission applies to. They must exist in the organization.
    policy string
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    roles string[]
    The roles the permission applies to.
    teams string[]
    The identifiers of the teams the permission applies to. They must exist in the organization.
    users string[]
    The emails of the users the permission applies to. They must exist in the organization.
    policy str
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    roles Sequence[str]
    The roles the permission applies to.
    teams Sequence[str]
    The identifiers of the teams the permission applies to. They must exist in the organization.
    users Sequence[str]
    The emails of the users the permission applies to. They must exist in the organization.
    policy String
    A JSON encoded RBAC query that dynamically resolves who is permitted, of the form {"combinator":"and","rules":[{"property":{"context":"user","property":"department"},"operator":"=","value":"engineering"}]}. context is one of user, userTeams, form, workflowRun.
    roles List<String>
    The roles the permission applies to.
    teams List<String>
    The identifiers of the teams the permission applies to. They must exist in the organization.
    users List<String>
    The emails of the users the permission applies to. They must exist in the organization.

    WorkflowNodeSelfServeTriggerUserInputs, WorkflowNodeSelfServeTriggerUserInputsArgs

    OrderProperties List<string>
    The order the inputs are rendered in. Cannot be combined with steps.
    RequiredJqQuery string
    A jq query resolving which inputs are required.
    Steps List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsStep>
    Splits the form into steps. Cannot be combined with order_properties.
    Titles Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsTitles>
    Static titles rendered between the inputs of the form.
    UserProperties port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserProperties
    The user inputs the form collects.
    Validations List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsValidation>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    OrderProperties []string
    The order the inputs are rendered in. Cannot be combined with steps.
    RequiredJqQuery string
    A jq query resolving which inputs are required.
    Steps []WorkflowNodeSelfServeTriggerUserInputsStep
    Splits the form into steps. Cannot be combined with order_properties.
    Titles map[string]WorkflowNodeSelfServeTriggerUserInputsTitles
    Static titles rendered between the inputs of the form.
    UserProperties WorkflowNodeSelfServeTriggerUserInputsUserProperties
    The user inputs the form collects.
    Validations []WorkflowNodeSelfServeTriggerUserInputsValidation
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    order_properties list(string)
    The order the inputs are rendered in. Cannot be combined with steps.
    required_jq_query string
    A jq query resolving which inputs are required.
    steps list(object)
    Splits the form into steps. Cannot be combined with order_properties.
    titles map(object)
    Static titles rendered between the inputs of the form.
    user_properties object
    The user inputs the form collects.
    validations list(object)
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    orderProperties List<String>
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery String
    A jq query resolving which inputs are required.
    steps List<WorkflowNodeSelfServeTriggerUserInputsStep>
    Splits the form into steps. Cannot be combined with order_properties.
    titles Map<String,WorkflowNodeSelfServeTriggerUserInputsTitles>
    Static titles rendered between the inputs of the form.
    userProperties WorkflowNodeSelfServeTriggerUserInputsUserProperties
    The user inputs the form collects.
    validations List<WorkflowNodeSelfServeTriggerUserInputsValidation>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    orderProperties string[]
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery string
    A jq query resolving which inputs are required.
    steps WorkflowNodeSelfServeTriggerUserInputsStep[]
    Splits the form into steps. Cannot be combined with order_properties.
    titles {[key: string]: WorkflowNodeSelfServeTriggerUserInputsTitles}
    Static titles rendered between the inputs of the form.
    userProperties WorkflowNodeSelfServeTriggerUserInputsUserProperties
    The user inputs the form collects.
    validations WorkflowNodeSelfServeTriggerUserInputsValidation[]
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    order_properties Sequence[str]
    The order the inputs are rendered in. Cannot be combined with steps.
    required_jq_query str
    A jq query resolving which inputs are required.
    steps Sequence[WorkflowNodeSelfServeTriggerUserInputsStep]
    Splits the form into steps. Cannot be combined with order_properties.
    titles Mapping[str, WorkflowNodeSelfServeTriggerUserInputsTitles]
    Static titles rendered between the inputs of the form.
    user_properties WorkflowNodeSelfServeTriggerUserInputsUserProperties
    The user inputs the form collects.
    validations Sequence[WorkflowNodeSelfServeTriggerUserInputsValidation]
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.
    orderProperties List<String>
    The order the inputs are rendered in. Cannot be combined with steps.
    requiredJqQuery String
    A jq query resolving which inputs are required.
    steps List<Property Map>
    Splits the form into steps. Cannot be combined with order_properties.
    titles Map<Property Map>
    Static titles rendered between the inputs of the form.
    userProperties Property Map
    The user inputs the form collects.
    validations List<Property Map>
    Validation rules evaluated against the whole form when it is submitted. Cannot be combined with steps, add the rules to the individual steps instead. Up to 10 rules are allowed.

    WorkflowNodeSelfServeTriggerUserInputsStep, WorkflowNodeSelfServeTriggerUserInputsStepArgs

    Orders List<string>
    The order of the inputs in this step.
    Title string
    The step's title (max 25 characters).
    Validations List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsStepValidation>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    Visible bool
    The visibility of the step.
    VisibleJqQuery string
    The visibility condition jq query of the step.
    Orders []string
    The order of the inputs in this step.
    Title string
    The step's title (max 25 characters).
    Validations []WorkflowNodeSelfServeTriggerUserInputsStepValidation
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    Visible bool
    The visibility of the step.
    VisibleJqQuery string
    The visibility condition jq query of the step.
    orders list(string)
    The order of the inputs in this step.
    title string
    The step's title (max 25 characters).
    validations list(object)
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible bool
    The visibility of the step.
    visible_jq_query string
    The visibility condition jq query of the step.
    orders List<String>
    The order of the inputs in this step.
    title String
    The step's title (max 25 characters).
    validations List<WorkflowNodeSelfServeTriggerUserInputsStepValidation>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible Boolean
    The visibility of the step.
    visibleJqQuery String
    The visibility condition jq query of the step.
    orders string[]
    The order of the inputs in this step.
    title string
    The step's title (max 25 characters).
    validations WorkflowNodeSelfServeTriggerUserInputsStepValidation[]
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible boolean
    The visibility of the step.
    visibleJqQuery string
    The visibility condition jq query of the step.
    orders Sequence[str]
    The order of the inputs in this step.
    title str
    The step's title (max 25 characters).
    validations Sequence[WorkflowNodeSelfServeTriggerUserInputsStepValidation]
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible bool
    The visibility of the step.
    visible_jq_query str
    The visibility condition jq query of the step.
    orders List<String>
    The order of the inputs in this step.
    title String
    The step's title (max 25 characters).
    validations List<Property Map>
    Validation rules evaluated when the step is submitted. Up to 10 rules are allowed.
    visible Boolean
    The visibility of the step.
    visibleJqQuery String
    The visibility condition jq query of the step.

    WorkflowNodeSelfServeTriggerUserInputsStepValidation, WorkflowNodeSelfServeTriggerUserInputsStepValidationArgs

    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint str
    A jq expression that has to evaluate to true for the form to be valid.
    message str
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).

    WorkflowNodeSelfServeTriggerUserInputsTitles, WorkflowNodeSelfServeTriggerUserInputsTitlesArgs

    Title string
    The title text.
    Description string
    The title description.
    Visible bool
    The visibility of the title.
    VisibleJqQuery string
    The visibility condition jq query of the title.
    Title string
    The title text.
    Description string
    The title description.
    Visible bool
    The visibility of the title.
    VisibleJqQuery string
    The visibility condition jq query of the title.
    title string
    The title text.
    description string
    The title description.
    visible bool
    The visibility of the title.
    visible_jq_query string
    The visibility condition jq query of the title.
    title String
    The title text.
    description String
    The title description.
    visible Boolean
    The visibility of the title.
    visibleJqQuery String
    The visibility condition jq query of the title.
    title string
    The title text.
    description string
    The title description.
    visible boolean
    The visibility of the title.
    visibleJqQuery string
    The visibility condition jq query of the title.
    title str
    The title text.
    description str
    The title description.
    visible bool
    The visibility of the title.
    visible_jq_query str
    The visibility condition jq query of the title.
    title String
    The title text.
    description String
    The title description.
    visible Boolean
    The visibility of the title.
    visibleJqQuery String
    The visibility condition jq query of the title.

    WorkflowNodeSelfServeTriggerUserInputsUserProperties, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArgs

    ArrayProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps>
    The array inputs of the form.
    BooleanProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps>
    The boolean inputs of the form.
    NumberProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps>
    The number inputs of the form.
    ObjectProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps>
    The object inputs of the form.
    StringProps Dictionary<string, port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps>
    The string inputs of the form.
    ArrayProps map[string]WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps
    The array inputs of the form.
    BooleanProps map[string]WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps
    The boolean inputs of the form.
    NumberProps map[string]WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps
    The number inputs of the form.
    ObjectProps map[string]WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps
    The object inputs of the form.
    StringProps map[string]WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps
    The string inputs of the form.
    array_props map(object)
    The array inputs of the form.
    boolean_props map(object)
    The boolean inputs of the form.
    number_props map(object)
    The number inputs of the form.
    object_props map(object)
    The object inputs of the form.
    string_props map(object)
    The string inputs of the form.
    arrayProps Map<String,WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps>
    The array inputs of the form.
    booleanProps Map<String,WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps>
    The boolean inputs of the form.
    numberProps Map<String,WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps>
    The number inputs of the form.
    objectProps Map<String,WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps>
    The object inputs of the form.
    stringProps Map<String,WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps>
    The string inputs of the form.
    arrayProps {[key: string]: WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps}
    The array inputs of the form.
    booleanProps {[key: string]: WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps}
    The boolean inputs of the form.
    numberProps {[key: string]: WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps}
    The number inputs of the form.
    objectProps {[key: string]: WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps}
    The object inputs of the form.
    stringProps {[key: string]: WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps}
    The string inputs of the form.
    array_props Mapping[str, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps]
    The array inputs of the form.
    boolean_props Mapping[str, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps]
    The boolean inputs of the form.
    number_props Mapping[str, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps]
    The number inputs of the form.
    object_props Mapping[str, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps]
    The object inputs of the form.
    string_props Mapping[str, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps]
    The string inputs of the form.
    arrayProps Map<Property Map>
    The array inputs of the form.
    booleanProps Map<Property Map>
    The boolean inputs of the form.
    numberProps Map<Property Map>
    The number inputs of the form.
    objectProps Map<Property Map>
    The object inputs of the form.
    stringProps Map<Property Map>
    The string inputs of the form.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayProps, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsArgs

    DefaultJqQuery string
    The default jq query of the array input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the array input.
    Disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the array input.
    Icon string
    The icon of the array input.
    MaxItems int
    The max items of the array input.
    MaxItemsJqQuery string
    The max items jq query of the array input.
    MinItems int
    The min items of the array input.
    MinItemsJqQuery string
    The min items jq query of the array input.
    NumberItems port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    ObjectItems port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    ReadOnly bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the array input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    StringItems port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    Title string
    The title of the array input.
    UniqueItems bool
    Whether the values of the array have to be unique.
    Visible bool
    The visibility of the array input.
    VisibleJqQuery string
    The visibility condition jq query of the array input.
    DefaultJqQuery string
    The default jq query of the array input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the array input.
    Disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the array input.
    Icon string
    The icon of the array input.
    MaxItems int
    The max items of the array input.
    MaxItemsJqQuery string
    The max items jq query of the array input.
    MinItems int
    The min items of the array input.
    MinItemsJqQuery string
    The min items jq query of the array input.
    NumberItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    ObjectItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    ReadOnly bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the array input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    StringItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    Title string
    The title of the array input.
    UniqueItems bool
    Whether the values of the array have to be unique.
    Visible bool
    The visibility of the array input.
    VisibleJqQuery string
    The visibility condition jq query of the array input.
    default_jq_query string
    The default jq query of the array input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the array input.
    disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the array input.
    icon string
    The icon of the array input.
    max_items number
    The max items of the array input.
    max_items_jq_query string
    The max items jq query of the array input.
    min_items number
    The min items of the array input.
    min_items_jq_query string
    The min items jq query of the array input.
    number_items object
    The number items of the array input.
    object_items object
    The object items of the array input.
    read_only bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the array input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort object
    How the entities are sorted in the form.
    string_items object
    The string items of the array input.
    title string
    The title of the array input.
    unique_items bool
    Whether the values of the array have to be unique.
    visible bool
    The visibility of the array input.
    visible_jq_query string
    The visibility condition jq query of the array input.
    defaultJqQuery String
    The default jq query of the array input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the array input.
    disabled Boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the array input.
    icon String
    The icon of the array input.
    maxItems Integer
    The max items of the array input.
    maxItemsJqQuery String
    The max items jq query of the array input.
    minItems Integer
    The min items of the array input.
    minItemsJqQuery String
    The min items jq query of the array input.
    numberItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    objectItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    readOnly Boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the array input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    stringItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title String
    The title of the array input.
    uniqueItems Boolean
    Whether the values of the array have to be unique.
    visible Boolean
    The visibility of the array input.
    visibleJqQuery String
    The visibility condition jq query of the array input.
    defaultJqQuery string
    The default jq query of the array input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the array input.
    disabled boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the array input.
    icon string
    The icon of the array input.
    maxItems number
    The max items of the array input.
    maxItemsJqQuery string
    The max items jq query of the array input.
    minItems number
    The min items of the array input.
    minItemsJqQuery string
    The min items jq query of the array input.
    numberItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    objectItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    readOnly boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the array input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    stringItems WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title string
    The title of the array input.
    uniqueItems boolean
    Whether the values of the array have to be unique.
    visible boolean
    The visibility of the array input.
    visibleJqQuery string
    The visibility condition jq query of the array input.
    default_jq_query str
    The default jq query of the array input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the array input.
    disabled bool
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the array input.
    icon str
    The icon of the array input.
    max_items int
    The max items of the array input.
    max_items_jq_query str
    The max items jq query of the array input.
    min_items int
    The min items of the array input.
    min_items_jq_query str
    The min items jq query of the array input.
    number_items WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems
    The number items of the array input.
    object_items WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems
    The object items of the array input.
    read_only bool
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the array input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort
    How the entities are sorted in the form.
    string_items WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems
    The string items of the array input.
    title str
    The title of the array input.
    unique_items bool
    Whether the values of the array have to be unique.
    visible bool
    The visibility of the array input.
    visible_jq_query str
    The visibility condition jq query of the array input.
    defaultJqQuery String
    The default jq query of the array input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the array input.
    disabled Boolean
    Greys out the array input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the array input.
    icon String
    The icon of the array input.
    maxItems Number
    The max items of the array input.
    maxItemsJqQuery String
    The max items jq query of the array input.
    minItems Number
    The min items of the array input.
    minItemsJqQuery String
    The min items jq query of the array input.
    numberItems Property Map
    The number items of the array input.
    objectItems Property Map
    The object items of the array input.
    readOnly Boolean
    Shows the value of the array input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the array input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort Property Map
    How the entities are sorted in the form.
    stringItems Property Map
    The string items of the array input.
    title String
    The title of the array input.
    uniqueItems Boolean
    Whether the values of the array have to be unique.
    visible Boolean
    The visibility of the array input.
    visibleJqQuery String
    The visibility condition jq query of the array input.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItems, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsNumberItemsArgs

    Defaults List<double>
    The default value of the items.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<double>
    The values the user can pick from.
    Defaults []float64
    The default value of the items.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []float64
    The values the user can pick from.
    defaults list(number)
    The default value of the items.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(number)
    The values the user can pick from.
    defaults List<Double>
    The default value of the items.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Double>
    The values the user can pick from.
    defaults number[]
    The default value of the items.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums number[]
    The values the user can pick from.
    defaults Sequence[float]
    The default value of the items.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[float]
    The values the user can pick from.
    defaults List<Number>
    The default value of the items.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Number>
    The values the user can pick from.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItems, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsObjectItemsArgs

    Defaults List<ImmutableDictionary<string, string>>
    The default value of the items.
    Format string
    The format of each item.
    Defaults []map[string]string
    The default value of the items.
    Format string
    The format of each item.
    defaults list(map(string))
    The default value of the items.
    format string
    The format of each item.
    defaults List<Map<String,String>>
    The default value of the items.
    format String
    The format of each item.
    defaults {[key: string]: string}[]
    The default value of the items.
    format string
    The format of each item.
    defaults Sequence[Mapping[str, str]]
    The default value of the items.
    format str
    The format of each item.
    defaults List<Map<String>>
    The default value of the items.
    format String
    The format of each item.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSort, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsSortArgs

    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property str
    The property to sort the entities by.
    order str
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItems, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesArrayPropsStringItemsArgs

    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    Defaults List<string>
    The default value of the items.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<string>
    The values the user can pick from.
    Format string
    The format of each item.
    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    Defaults []string
    The default value of the items.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []string
    The values the user can pick from.
    Format string
    The format of each item.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults list(string)
    The default value of the items.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(string)
    The values the user can pick from.
    format string
    The format of each item.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset String
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults List<String>
    The default value of the items.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of each item.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset string
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults string[]
    The default value of the items.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums string[]
    The values the user can pick from.
    format string
    The format of each item.
    blueprint str
    The blueprint the entities are taken from. Required when format is entity.
    dataset str
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults Sequence[str]
    The default value of the items.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[str]
    The values the user can pick from.
    format str
    The format of each item.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset String
    The dataset filtering the entities of the items, as a JSON encoded string.
    defaults List<String>
    The default value of the items.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of each item.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanProps, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesBooleanPropsArgs

    Default bool
    The default of the boolean input.
    DefaultJqQuery string
    The default jq query of the boolean input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the boolean input.
    Disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the boolean input.
    Icon string
    The icon of the boolean input.
    ReadOnly bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the boolean input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the boolean input.
    Visible bool
    The visibility of the boolean input.
    VisibleJqQuery string
    The visibility condition jq query of the boolean input.
    Default bool
    The default of the boolean input.
    DefaultJqQuery string
    The default jq query of the boolean input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the boolean input.
    Disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the boolean input.
    Icon string
    The icon of the boolean input.
    ReadOnly bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the boolean input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the boolean input.
    Visible bool
    The visibility of the boolean input.
    VisibleJqQuery string
    The visibility condition jq query of the boolean input.
    default bool
    The default of the boolean input.
    default_jq_query string
    The default jq query of the boolean input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the boolean input.
    disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the boolean input.
    icon string
    The icon of the boolean input.
    read_only bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the boolean input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the boolean input.
    visible bool
    The visibility of the boolean input.
    visible_jq_query string
    The visibility condition jq query of the boolean input.
    defaultJqQuery String
    The default jq query of the boolean input.
    default_ Boolean
    The default of the boolean input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the boolean input.
    disabled Boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the boolean input.
    icon String
    The icon of the boolean input.
    readOnly Boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the boolean input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the boolean input.
    visible Boolean
    The visibility of the boolean input.
    visibleJqQuery String
    The visibility condition jq query of the boolean input.
    default boolean
    The default of the boolean input.
    defaultJqQuery string
    The default jq query of the boolean input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the boolean input.
    disabled boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the boolean input.
    icon string
    The icon of the boolean input.
    readOnly boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the boolean input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the boolean input.
    visible boolean
    The visibility of the boolean input.
    visibleJqQuery string
    The visibility condition jq query of the boolean input.
    default bool
    The default of the boolean input.
    default_jq_query str
    The default jq query of the boolean input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the boolean input.
    disabled bool
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the boolean input.
    icon str
    The icon of the boolean input.
    read_only bool
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the boolean input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the boolean input.
    visible bool
    The visibility of the boolean input.
    visible_jq_query str
    The visibility condition jq query of the boolean input.
    default Boolean
    The default of the boolean input.
    defaultJqQuery String
    The default jq query of the boolean input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the boolean input.
    disabled Boolean
    Greys out the boolean input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the boolean input.
    icon String
    The icon of the boolean input.
    readOnly Boolean
    Shows the value of the boolean input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the boolean input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the boolean input.
    visible Boolean
    The visibility of the boolean input.
    visibleJqQuery String
    The visibility condition jq query of the boolean input.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberProps, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesNumberPropsArgs

    Default double
    The default of the number input.
    DefaultJqQuery string
    The default jq query of the number input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the number input.
    Disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the number input.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<double>
    The values the user can pick from.
    ExclusiveMaximum double
    The value the input has to be strictly smaller than.
    ExclusiveMinimum double
    The value the input has to be strictly greater than.
    Icon string
    The icon of the number input.
    Maximum double
    The largest value the input accepts.
    Minimum double
    The smallest value the input accepts.
    ReadOnly bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the number input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the number input.
    Visible bool
    The visibility of the number input.
    VisibleJqQuery string
    The visibility condition jq query of the number input.
    Default float64
    The default of the number input.
    DefaultJqQuery string
    The default jq query of the number input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the number input.
    Disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the number input.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []float64
    The values the user can pick from.
    ExclusiveMaximum float64
    The value the input has to be strictly smaller than.
    ExclusiveMinimum float64
    The value the input has to be strictly greater than.
    Icon string
    The icon of the number input.
    Maximum float64
    The largest value the input accepts.
    Minimum float64
    The smallest value the input accepts.
    ReadOnly bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the number input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the number input.
    Visible bool
    The visibility of the number input.
    VisibleJqQuery string
    The visibility condition jq query of the number input.
    default number
    The default of the number input.
    default_jq_query string
    The default jq query of the number input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the number input.
    disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the number input.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(number)
    The values the user can pick from.
    exclusive_maximum number
    The value the input has to be strictly smaller than.
    exclusive_minimum number
    The value the input has to be strictly greater than.
    icon string
    The icon of the number input.
    maximum number
    The largest value the input accepts.
    minimum number
    The smallest value the input accepts.
    read_only bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the number input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the number input.
    visible bool
    The visibility of the number input.
    visible_jq_query string
    The visibility condition jq query of the number input.
    defaultJqQuery String
    The default jq query of the number input.
    default_ Double
    The default of the number input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the number input.
    disabled Boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the number input.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Double>
    The values the user can pick from.
    exclusiveMaximum Double
    The value the input has to be strictly smaller than.
    exclusiveMinimum Double
    The value the input has to be strictly greater than.
    icon String
    The icon of the number input.
    maximum Double
    The largest value the input accepts.
    minimum Double
    The smallest value the input accepts.
    readOnly Boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the number input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the number input.
    visible Boolean
    The visibility of the number input.
    visibleJqQuery String
    The visibility condition jq query of the number input.
    default number
    The default of the number input.
    defaultJqQuery string
    The default jq query of the number input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the number input.
    disabled boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the number input.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums number[]
    The values the user can pick from.
    exclusiveMaximum number
    The value the input has to be strictly smaller than.
    exclusiveMinimum number
    The value the input has to be strictly greater than.
    icon string
    The icon of the number input.
    maximum number
    The largest value the input accepts.
    minimum number
    The smallest value the input accepts.
    readOnly boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the number input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the number input.
    visible boolean
    The visibility of the number input.
    visibleJqQuery string
    The visibility condition jq query of the number input.
    default float
    The default of the number input.
    default_jq_query str
    The default jq query of the number input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the number input.
    disabled bool
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the number input.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[float]
    The values the user can pick from.
    exclusive_maximum float
    The value the input has to be strictly smaller than.
    exclusive_minimum float
    The value the input has to be strictly greater than.
    icon str
    The icon of the number input.
    maximum float
    The largest value the input accepts.
    minimum float
    The smallest value the input accepts.
    read_only bool
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the number input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the number input.
    visible bool
    The visibility of the number input.
    visible_jq_query str
    The visibility condition jq query of the number input.
    default Number
    The default of the number input.
    defaultJqQuery String
    The default jq query of the number input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the number input.
    disabled Boolean
    Greys out the number input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the number input.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<Number>
    The values the user can pick from.
    exclusiveMaximum Number
    The value the input has to be strictly smaller than.
    exclusiveMinimum Number
    The value the input has to be strictly greater than.
    icon String
    The icon of the number input.
    maximum Number
    The largest value the input accepts.
    minimum Number
    The smallest value the input accepts.
    readOnly Boolean
    Shows the value of the number input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the number input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the number input.
    visible Boolean
    The visibility of the number input.
    visibleJqQuery String
    The visibility condition jq query of the number input.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectProps, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesObjectPropsArgs

    Default string
    The default of the object input, as a JSON encoded string.
    DefaultJqQuery string
    The default jq query of the object input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the object input.
    Disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the object input.
    Format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    Icon string
    The icon of the object input.
    ReadOnly bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the object input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the object input.
    Visible bool
    The visibility of the object input.
    VisibleJqQuery string
    The visibility condition jq query of the object input.
    Default string
    The default of the object input, as a JSON encoded string.
    DefaultJqQuery string
    The default jq query of the object input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the object input.
    Disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the object input.
    Format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    Icon string
    The icon of the object input.
    ReadOnly bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the object input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Title string
    The title of the object input.
    Visible bool
    The visibility of the object input.
    VisibleJqQuery string
    The visibility condition jq query of the object input.
    default string
    The default of the object input, as a JSON encoded string.
    default_jq_query string
    The default jq query of the object input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the object input.
    disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the object input.
    format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon string
    The icon of the object input.
    read_only bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the object input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the object input.
    visible bool
    The visibility of the object input.
    visible_jq_query string
    The visibility condition jq query of the object input.
    defaultJqQuery String
    The default jq query of the object input.
    default_ String
    The default of the object input, as a JSON encoded string.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the object input.
    disabled Boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the object input.
    format String
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon String
    The icon of the object input.
    readOnly Boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the object input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the object input.
    visible Boolean
    The visibility of the object input.
    visibleJqQuery String
    The visibility condition jq query of the object input.
    default string
    The default of the object input, as a JSON encoded string.
    defaultJqQuery string
    The default jq query of the object input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the object input.
    disabled boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the object input.
    format string
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon string
    The icon of the object input.
    readOnly boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the object input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title string
    The title of the object input.
    visible boolean
    The visibility of the object input.
    visibleJqQuery string
    The visibility condition jq query of the object input.
    default str
    The default of the object input, as a JSON encoded string.
    default_jq_query str
    The default jq query of the object input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the object input.
    disabled bool
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the object input.
    format str
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon str
    The icon of the object input.
    read_only bool
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the object input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title str
    The title of the object input.
    visible bool
    The visibility of the object input.
    visible_jq_query str
    The visibility condition jq query of the object input.
    default String
    The default of the object input, as a JSON encoded string.
    defaultJqQuery String
    The default jq query of the object input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the object input.
    disabled Boolean
    Greys out the object input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the object input.
    format String
    The format of the object input. labeled-url renders a url with a display text. Leave it out for a free form object.
    icon String
    The icon of the object input.
    readOnly Boolean
    Shows the value of the object input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the object input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    title String
    The title of the object input.
    visible Boolean
    The visibility of the object input.
    visibleJqQuery String
    The visibility condition jq query of the object input.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringProps, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsArgs

    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    Default string
    The default of the string input.
    DefaultJqQuery string
    The default jq query of the string input.
    DependsOns List<string>
    The inputs this input depends on.
    Description string
    The description of the string input.
    Disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the string input.
    EnumColors Dictionary<string, string>
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums List<string>
    The values the user can pick from.
    Format string
    The format of the string input.
    Icon string
    The icon of the string input.
    MaxLength int
    The max length of the string input.
    MinLength int
    The min length of the string input.
    Pattern string
    The regex pattern the value has to match.
    PatternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    ReadOnly bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the string input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    Title string
    The title of the string input.
    Visible bool
    The visibility of the string input.
    VisibleJqQuery string
    The visibility condition jq query of the string input.
    Blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    Dataset WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    Default string
    The default of the string input.
    DefaultJqQuery string
    The default jq query of the string input.
    DependsOns []string
    The inputs this input depends on.
    Description string
    The description of the string input.
    Disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    DisabledJqQuery string
    The disabled condition jq query of the string input.
    EnumColors map[string]string
    The colors of the enum values.
    EnumJqQuery string
    A jq query resolving the values the user can pick from.
    Enums []string
    The values the user can pick from.
    Format string
    The format of the string input.
    Icon string
    The icon of the string input.
    MaxLength int
    The max length of the string input.
    MinLength int
    The min length of the string input.
    Pattern string
    The regex pattern the value has to match.
    PatternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    ReadOnly bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    ReadOnlyJqQuery string
    The read only condition jq query of the string input.
    Required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    Sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    Title string
    The title of the string input.
    Visible bool
    The visibility of the string input.
    VisibleJqQuery string
    The visibility condition jq query of the string input.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset object
    The dataset filtering the entities the user can pick from.
    default string
    The default of the string input.
    default_jq_query string
    The default jq query of the string input.
    depends_ons list(string)
    The inputs this input depends on.
    description string
    The description of the string input.
    disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query string
    The disabled condition jq query of the string input.
    enum_colors map(string)
    The colors of the enum values.
    enum_jq_query string
    A jq query resolving the values the user can pick from.
    enums list(string)
    The values the user can pick from.
    format string
    The format of the string input.
    icon string
    The icon of the string input.
    max_length number
    The max length of the string input.
    min_length number
    The min length of the string input.
    pattern string
    The regex pattern the value has to match.
    pattern_jq_query string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    read_only bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query string
    The read only condition jq query of the string input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort object
    How the entities are sorted in the form.
    title string
    The title of the string input.
    visible bool
    The visibility of the string input.
    visible_jq_query string
    The visibility condition jq query of the string input.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    defaultJqQuery String
    The default jq query of the string input.
    default_ String
    The default of the string input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the string input.
    disabled Boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the string input.
    enumColors Map<String,String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of the string input.
    icon String
    The icon of the string input.
    maxLength Integer
    The max length of the string input.
    minLength Integer
    The min length of the string input.
    pattern String
    The regex pattern the value has to match.
    patternJqQuery String
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly Boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the string input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title String
    The title of the string input.
    visible Boolean
    The visibility of the string input.
    visibleJqQuery String
    The visibility condition jq query of the string input.
    blueprint string
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    default string
    The default of the string input.
    defaultJqQuery string
    The default jq query of the string input.
    dependsOns string[]
    The inputs this input depends on.
    description string
    The description of the string input.
    disabled boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery string
    The disabled condition jq query of the string input.
    enumColors {[key: string]: string}
    The colors of the enum values.
    enumJqQuery string
    A jq query resolving the values the user can pick from.
    enums string[]
    The values the user can pick from.
    format string
    The format of the string input.
    icon string
    The icon of the string input.
    maxLength number
    The max length of the string input.
    minLength number
    The min length of the string input.
    pattern string
    The regex pattern the value has to match.
    patternJqQuery string
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery string
    The read only condition jq query of the string input.
    required boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title string
    The title of the string input.
    visible boolean
    The visibility of the string input.
    visibleJqQuery string
    The visibility condition jq query of the string input.
    blueprint str
    The blueprint the entities are taken from. Required when format is entity.
    dataset WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset
    The dataset filtering the entities the user can pick from.
    default str
    The default of the string input.
    default_jq_query str
    The default jq query of the string input.
    depends_ons Sequence[str]
    The inputs this input depends on.
    description str
    The description of the string input.
    disabled bool
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabled_jq_query str
    The disabled condition jq query of the string input.
    enum_colors Mapping[str, str]
    The colors of the enum values.
    enum_jq_query str
    A jq query resolving the values the user can pick from.
    enums Sequence[str]
    The values the user can pick from.
    format str
    The format of the string input.
    icon str
    The icon of the string input.
    max_length int
    The max length of the string input.
    min_length int
    The min length of the string input.
    pattern str
    The regex pattern the value has to match.
    pattern_jq_query str
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    read_only bool
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    read_only_jq_query str
    The read only condition jq query of the string input.
    required bool
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort
    How the entities are sorted in the form.
    title str
    The title of the string input.
    visible bool
    The visibility of the string input.
    visible_jq_query str
    The visibility condition jq query of the string input.
    blueprint String
    The blueprint the entities are taken from. Required when format is entity.
    dataset Property Map
    The dataset filtering the entities the user can pick from.
    default String
    The default of the string input.
    defaultJqQuery String
    The default jq query of the string input.
    dependsOns List<String>
    The inputs this input depends on.
    description String
    The description of the string input.
    disabled Boolean
    Greys out the string input. A disabled input is excluded from the submitted data and from required validation, which makes it a way to drop an input from the form based on the other answers. Use read_only to keep the value in the submission.
    disabledJqQuery String
    The disabled condition jq query of the string input.
    enumColors Map<String>
    The colors of the enum values.
    enumJqQuery String
    A jq query resolving the values the user can pick from.
    enums List<String>
    The values the user can pick from.
    format String
    The format of the string input.
    icon String
    The icon of the string input.
    maxLength Number
    The max length of the string input.
    minLength Number
    The min length of the string input.
    pattern String
    The regex pattern the value has to match.
    patternJqQuery String
    A jq query resolving the pattern of the string input, either a regex string or a list of allowed values.
    readOnly Boolean
    Shows the value of the string input without letting the user change it. The value is still submitted with the form, unlike disabled.
    readOnlyJqQuery String
    The read only condition jq query of the string input.
    required Boolean
    Whether the input has to be filled in. Only true is accepted, and it cannot be combined with required_jq_query.
    sort Property Map
    How the entities are sorted in the form.
    title String
    The title of the string input.
    visible Boolean
    The visibility of the string input.
    visibleJqQuery String
    The visibility condition jq query of the string input.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDataset, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetArgs

    Combinator string
    How the rules are combined.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    Combinator string
    How the rules are combined.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator string
    How the rules are combined.
    rules list(object)
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator String
    How the rules are combined.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator string
    How the rules are combined.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule[]
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator str
    How the rules are combined.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule]
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.
    combinator String
    How the rules are combined.
    rules List<Property Map>
    The rules of the dataset. A rule either filters on a property or groups nested rules under a combinator.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules List<port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Rules []WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule
    The nested rules of a group rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules list(object)
    The nested rules of a group rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule>
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    rules WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule[]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    rules Sequence[WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule]
    The nested rules of a group rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    rules List<Property Map>
    The nested rules of a group rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRule, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleArgs

    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Value port_labs.Port.Inputs.WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    Blueprint string
    The blueprint identifier of the rule.
    Combinator string
    How the nested rules of a group rule are combined.
    Operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    Property string
    The property identifier of the rule.
    Value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    ValueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    value object
    A value resolved from the form or the trigger when the form is rendered.
    value_json string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint string
    The blueprint identifier of the rule.
    combinator string
    How the nested rules of a group rule are combined.
    operator string
    The operator of the rule. Set on filtering rules and left out on group rules.
    property string
    The property identifier of the rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    valueJson string
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint str
    The blueprint identifier of the rule.
    combinator str
    How the nested rules of a group rule are combined.
    operator str
    The operator of the rule. Set on filtering rules and left out on group rules.
    property str
    The property identifier of the rule.
    value WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue
    A value resolved from the form or the trigger when the form is rendered.
    value_json str
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.
    blueprint String
    The blueprint identifier of the rule.
    combinator String
    How the nested rules of a group rule are combined.
    operator String
    The operator of the rule. Set on filtering rules and left out on group rules.
    property String
    The property identifier of the rule.
    value Property Map
    A value resolved from the form or the trigger when the form is rendered.
    valueJson String
    A fixed value, as a JSON encoded string. Use value for a value resolved by a jq query.

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValue, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsDatasetRuleValueArgs

    JqQuery string
    JqQuery string
    jq_query string
    jqQuery String
    jqQuery string
    jqQuery String

    WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSort, WorkflowNodeSelfServeTriggerUserInputsUserPropertiesStringPropsSortArgs

    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    Property string
    The property to sort the entities by.
    Order string
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.
    property string
    The property to sort the entities by.
    order string
    The order to sort the entities in.
    property str
    The property to sort the entities by.
    order str
    The order to sort the entities in.
    property String
    The property to sort the entities by.
    order String
    The order to sort the entities in.

    WorkflowNodeSelfServeTriggerUserInputsValidation, WorkflowNodeSelfServeTriggerUserInputsValidationArgs

    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    Constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    Message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint string
    A jq expression that has to evaluate to true for the form to be valid.
    message string
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint str
    A jq expression that has to evaluate to true for the form to be valid.
    message str
    The error message shown when the constraint evaluates to false (max 100 characters).
    constraint String
    A jq expression that has to evaluate to true for the form to be valid.
    message String
    The error message shown when the constraint evaluates to false (max 100 characters).

    WorkflowNodeUpsertEntity, WorkflowNodeUpsertEntityArgs

    BlueprintIdentifier string
    The identifier of the blueprint to upsert into.
    Mapping port_labs.Port.Inputs.WorkflowNodeUpsertEntityMapping
    The entity fields to upsert.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    BlueprintIdentifier string
    The identifier of the blueprint to upsert into.
    Mapping WorkflowNodeUpsertEntityMapping
    The entity fields to upsert.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    blueprint_identifier string
    The identifier of the blueprint to upsert into.
    mapping object
    The entity fields to upsert.
    on_failure string
    The action to take if the node fails. One of continue, terminate.
    blueprintIdentifier String
    The identifier of the blueprint to upsert into.
    mapping WorkflowNodeUpsertEntityMapping
    The entity fields to upsert.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    blueprintIdentifier string
    The identifier of the blueprint to upsert into.
    mapping WorkflowNodeUpsertEntityMapping
    The entity fields to upsert.
    onFailure string
    The action to take if the node fails. One of continue, terminate.
    blueprint_identifier str
    The identifier of the blueprint to upsert into.
    mapping WorkflowNodeUpsertEntityMapping
    The entity fields to upsert.
    on_failure str
    The action to take if the node fails. One of continue, terminate.
    blueprintIdentifier String
    The identifier of the blueprint to upsert into.
    mapping Property Map
    The entity fields to upsert.
    onFailure String
    The action to take if the node fails. One of continue, terminate.

    WorkflowNodeUpsertEntityMapping, WorkflowNodeUpsertEntityMappingArgs

    Icon string
    The icon of the entity to upsert.
    Identifier string
    The identifier of the entity to upsert.
    Properties string
    The properties of the entity as a JSON encoded string.
    Relations string
    The relations of the entity as a JSON encoded string.
    Teams List<string>
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    Title string
    The title of the entity to upsert.
    Icon string
    The icon of the entity to upsert.
    Identifier string
    The identifier of the entity to upsert.
    Properties string
    The properties of the entity as a JSON encoded string.
    Relations string
    The relations of the entity as a JSON encoded string.
    Teams []string
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    Title string
    The title of the entity to upsert.
    icon string
    The icon of the entity to upsert.
    identifier string
    The identifier of the entity to upsert.
    properties string
    The properties of the entity as a JSON encoded string.
    relations string
    The relations of the entity as a JSON encoded string.
    teams list(string)
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    title string
    The title of the entity to upsert.
    icon String
    The icon of the entity to upsert.
    identifier String
    The identifier of the entity to upsert.
    properties String
    The properties of the entity as a JSON encoded string.
    relations String
    The relations of the entity as a JSON encoded string.
    teams List<String>
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    title String
    The title of the entity to upsert.
    icon string
    The icon of the entity to upsert.
    identifier string
    The identifier of the entity to upsert.
    properties string
    The properties of the entity as a JSON encoded string.
    relations string
    The relations of the entity as a JSON encoded string.
    teams string[]
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    title string
    The title of the entity to upsert.
    icon str
    The icon of the entity to upsert.
    identifier str
    The identifier of the entity to upsert.
    properties str
    The properties of the entity as a JSON encoded string.
    relations str
    The relations of the entity as a JSON encoded string.
    teams Sequence[str]
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    title str
    The title of the entity to upsert.
    icon String
    The icon of the entity to upsert.
    identifier String
    The identifier of the entity to upsert.
    properties String
    The properties of the entity as a JSON encoded string.
    relations String
    The relations of the entity as a JSON encoded string.
    teams List<String>
    The teams of the entity to upsert. Values may contain {{ }} template expressions that are resolved when the node runs.
    title String
    The title of the entity to upsert.

    WorkflowNodeWebhook, WorkflowNodeWebhookArgs

    Agent bool
    Whether the request is routed through the Port agent.
    Body string
    The request body as a JSON encoded string.
    Headers Dictionary<string, string>
    The HTTP headers of the request.
    Method string
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    OnTimeout string
    The action to take if the webhook times out. One of fail, continue.
    Synchronized bool
    Whether the request is sent synchronously.
    Url string
    The URL of the webhook.
    Agent bool
    Whether the request is routed through the Port agent.
    Body string
    The request body as a JSON encoded string.
    Headers map[string]string
    The HTTP headers of the request.
    Method string
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    OnFailure string
    The action to take if the node fails. One of continue, terminate.
    OnTimeout string
    The action to take if the webhook times out. One of fail, continue.
    Synchronized bool
    Whether the request is sent synchronously.
    Url string
    The URL of the webhook.
    agent bool
    Whether the request is routed through the Port agent.
    body string
    The request body as a JSON encoded string.
    headers map(string)
    The HTTP headers of the request.
    method string
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    on_failure string
    The action to take if the node fails. One of continue, terminate.
    on_timeout string
    The action to take if the webhook times out. One of fail, continue.
    synchronized bool
    Whether the request is sent synchronously.
    url string
    The URL of the webhook.
    agent Boolean
    Whether the request is routed through the Port agent.
    body String
    The request body as a JSON encoded string.
    headers Map<String,String>
    The HTTP headers of the request.
    method String
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    onTimeout String
    The action to take if the webhook times out. One of fail, continue.
    synchronized_ Boolean
    Whether the request is sent synchronously.
    url String
    The URL of the webhook.
    agent boolean
    Whether the request is routed through the Port agent.
    body string
    The request body as a JSON encoded string.
    headers {[key: string]: string}
    The HTTP headers of the request.
    method string
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    onFailure string
    The action to take if the node fails. One of continue, terminate.
    onTimeout string
    The action to take if the webhook times out. One of fail, continue.
    synchronized boolean
    Whether the request is sent synchronously.
    url string
    The URL of the webhook.
    agent bool
    Whether the request is routed through the Port agent.
    body str
    The request body as a JSON encoded string.
    headers Mapping[str, str]
    The HTTP headers of the request.
    method str
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    on_failure str
    The action to take if the node fails. One of continue, terminate.
    on_timeout str
    The action to take if the webhook times out. One of fail, continue.
    synchronized bool
    Whether the request is sent synchronously.
    url str
    The URL of the webhook.
    agent Boolean
    Whether the request is routed through the Port agent.
    body String
    The request body as a JSON encoded string.
    headers Map<String>
    The HTTP headers of the request.
    method String
    The HTTP method. One of GET, POST, PUT, PATCH, DELETE.
    onFailure String
    The action to take if the node fails. One of continue, terminate.
    onTimeout String
    The action to take if the webhook times out. One of fail, continue.
    synchronized Boolean
    Whether the request is sent synchronously.
    url String
    The URL of the webhook.

    Package Details

    Repository
    port port-labs/pulumi-port
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the port-labs Terraform Provider.
    port logo port logo
    Viewing docs for Port v2.23.1
    published on Sunday, Aug 16, 2026 by port-labs

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial