Skip to Main Content
Digital Business Automation Ideas
Hide about this portal


This is an IBM Automation portal for Digital Business Automation products. To view all of your ideas submitted to IBM, create and manage groups of Ideas, or create an idea explicitly set to be either visible by all (public) or visible only to you and IBM (private), use the IBM Unified Ideas Portal (https://ideas.ibm.com).


Shape the future of IBM!

We invite you to shape the future of IBM, including product roadmaps, by submitting ideas that matter to you the most. Here's how it works:

Search existing ideas

Start by searching and reviewing ideas and requests to enhance a product or service. Take a look at ideas others have posted, and add a comment, vote, or subscribe to updates on them if they matter to you. If you can't find what you are looking for,

Post your ideas
  1. Post an idea.

  2. Get feedback from the IBM team and other customers to refine your idea.

  3. Follow the idea through the IBM Ideas process.


Please use the following category to raise ideas for these offerings for all environments (traditional on premises, containers, on cloud):
  • Cloud Pak for Business Automation - including Business Automation Studio and App Designer, Business Automation Insights

  • Business Automation Workflow (BAW) - including BAW, Business Process Manager, Workstream Services, Business Performance Center, Advanced Case Management

  • Content Services - FileNet Content Manager

  • Content Services - Content Manager OnDemand

  • Content Services - Daeja Virtual Viewer

  • Content Services - Navigator

  • Content Services - Content Collector for Email, Sharepoint, Files

  • Content Services - Content Collector for SAP

  • Content Services - Enterprise Records

  • Content Services - Content Manager (CM8)

  • Datacap

  • Automation Document Processing

  • Automation Decision Services (ADS)

  • Operational Decision Manager

  • Robotic Process Automation

  • Robotic Process Automation with Automation Anywhere

  • Blueworks Live

  • Business Automation Manager Open Edition

  • IBM Process Mining


Specific links you will want to bookmark for future use

Welcome to the IBM Ideas Portal (https://www.ibm.com/ideas) - Use this site to find out additional information and details about the IBM Ideas process and statuses.

IBM Unified Ideas Portal (https://ideas.ibm.com) - Use this site to view all of your ideas, create new ideas for any IBM product, or search for ideas across all of IBM.

ideasibm@us.ibm.com - Use this email to suggest enhancements to the Ideas process or request help from IBM for submitting your Ideas.


Tag value should be more flexible to allow REST Response JSON example to handle multiple values for a property

See this idea on ideas.ibm.com

Currently, the IlrTag value is set to a String.
Because of this, when setting multiple values to a property, then retrieving this value with REST API:
/v1/projects/{projectId}/rules
the result is a single string with the multiple values as one comma separated string, rather than a proper structured JSON Object with multiple values. 
This undermines the accuracy and usage of the REST APi's itself.

Idea priority Medium
  • Admin
    Antony Viaud
    Reply
    |
    Mar 18, 2025

    Hello, we could consider using a JSON array of key-value pairs but both key and value attribute would remain strings :

    {
    "name": "tags",
    "value": [
    { "key": "TransportMode", "value": "Sea,Air" },
    { "key": "RuleRef", "value" : "257231" }
    ]
    "label": "Tags"
    },

    Other clients may have intentionally included commas into the value, without being a separator for a list.

    1 reply
  • Guest
    Reply
    |
    Mar 17, 2025

    Tags are a list with Key and value pairs. The current design of the DC Rest API's does not treat tags as list causing problematic parsing of the key and values .

    In the example below the value of the Tag : such as Air, Sea are legit data values indicating the transport type is both Air and Sea separated by comma. This is now a multiple value is represented. Not an accidental typo

    Tag1:
    Key=TransportMode
    Value=Sea,Air
    
    Tag2:
    Key=RuleRef
    Value=257231
    
    This comes through in JSON REST Response as 
    {
    "name": "tags",
    "value": "{ TransportMode=Sea,Air, RuleRef=257231}",
    "label": "Tags"
    }, 
    

    This JSON Structure is problematic because the value field contains custom key-value format inside a string, rather than a proper structured JSON Object.

     

    Your developers need to correctly format the JSON structure for value attribute as a JSON Object or an array of key-value pairs instead of a single string.

     

     

    There are two ways to do this based on your developer's preference

    Option1: Use a JSON Object for Key-Value Pairs

    {
    "name": "tags",
    "value": { 
    "TransportMode": ["Sea", "Air"],
    "RuleRef" : "257231"
    }
    "label": "Tags"
    },
    

    In the example above value is now an array ["Sea", "Air"] preserving multiple values property

     

    Option2: Use an Array of Key-value Objects

     

    {
    "name": "tags",
    "value": [ 
    { "key": "TransportMode", "values": ["Sea", "Air"] },
    { "key": "RuleRef", "values" : ["257231"] }
    ]
    "label": "Tags"
    },
    

     

    The above approach works well when value has multiple key-valye pairs with multiple values per key.

     

    Either way the current structure is problematic because

    • The value is currently shown as string not a JSON object
    • Parsing value manually is error prone.
    • Comma-separated values inside s string makes key-value extraction difficult

    Regards

    Jatin