Improve auto generated integration structures
107
Views
1
Comments
New
Data & Integrations

When consuming REST integrations, OutSystems generates the appropriate structures to match the json object, which is great.

When a partialy compatible structure already exists, Service Studio will try adapt it to the new fields, and that often causes a problem.

Imagine that I have an existing `Student` structure:

{ "name": "Alice Smith",  "age": 20 } 

And the new integration I'm creating has a `Employee` structure:

 { "name": "John Smith",  "age": 42, "salary": 9999 } 

By reusing the `Student` structure, Service Studio will create a `Salary` field on it, which makes no sense

Changed the category to
Data & Integrations