datatype-update
Create or update custom data types including structs, collections, and domain types for connectors and business objects in the Simplifier platform.
Instructions
#Create or update custom data types
Custom datatypes can be either
a struct type, which requires the definition of fields and their types (parameter "fields")
a collection type, which requires a datatype for its elements (parameter "collectionDatatype")
a domain type, which requires a parent type it is derived from (parameter "derivedFrom") These are mutually exclusive, so only specify exactly one of the three parameters.
In these parameters, referenced datatypes are specified by name. If it isn't a global datatype, the name must be prefixed with the namespace, separated with a slash.
Datatypes for connectors should be in the namespace "con/$name_of_connector", those for business objects in "bo/$name_of_bo".
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| qualifiedName | Yes | ||
| description | No | ||
| derivedFrom | No | ||
| collectionDatatype | No | ||
| fields | No | ||
| tags | Yes | ||
| projectAssignments | No |