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).
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:
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 an idea.
Get feedback from the IBM team and other customers to refine your idea.
Follow the idea through the IBM Ideas process.
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
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.
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 |
By clicking the "Post Comment" or "Submit Idea" button, you are agreeing to the IBM Ideas Portal Terms of Use.
Do not place IBM confidential, company confidential, or personal information into any field.
Hello, we could consider using a JSON array of key-value pairs but both key and value attribute would remain strings :
Other clients may have intentionally included commas into the value, without being a separator for a list.
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
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
In the example above value is now an array ["Sea", "Air"] preserving multiple values property
Option2: Use an Array of Key-value Objects
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
Regards
Jatin