Skip to Main Content
IBM Sterling


This portal is to open public enhancement requests for IBM Sterling products and services. 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.


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.

Status Delivered
Created by Guest
Created on Jun 9, 2018

Using Valid JSON Schema as the Type tree in the Output Layout ,Array Element/Values are getting generated without closing square brackets

  In JSON Output, Array Element/Values are generated without square brackets

When we use the Valid JSON Schema as the Type tree in the Output Layout ,
ITX reading the JSON Schema successfully, but the Array Elements/Values are getting generated without closing square brackets at the end, Hence it will become Invalid JSON Output to the Customer.
Example : In ITX Generated Output there is no closing square bracket "]" at the end of the array Element 

                                        "track_no" : ["3", "4"

{
"sample" : {
"ID_" : "1",
"TOK_" : "2",
"track_no" : ["3", "4"
}
}

How It is expected to work and populate Output

We expect By Default when the JSON Output is generated, Array Elements need to be populated as per the Valid

JSON Schema read Initially by the ITX Map Type Tree like below.

                                        "track_no" : ["3", "4"]

{
"sample" : {
"ID_" : "1",
"TOK_" : "2",
"track_no" : ["3", "4"]
}
}
What is your industry? Other
How will this idea be used?

1) If we implement this Idea, Our ITX JSON Schema Output will become valid JSON.

    Due to missing of closing bracket in Array Element, JSON output are getting errored out.

2) Currently we have the ITX Type Tree to read the JSON Schema, as a valid Type Tree in the ITX Extender, but the Output                are getting generated without Array Closing Tags.

 

We expect By Default when the JSON Output is generated, Array Elements need to be populated as per the Valid

JSON Schema which has been read Initially by the ITX Map Type Tree creation like below.

                                        "track_no" : ["3", "4"]

{
"sample" : {
"ID_" : "1",
"TOK_" : "2",
"track_no" : ["3", "4"]
}
}

Note:

Currently JSON Output are getting Errored Out as Invalid JSON File due to Missing of Array closing tag "]".

If this fix is in place, we will be able to provide Valid JSON Output with Valid JSON Indentation as expected by the Customer JSON Schema.