Unique identifier that can be used to register or retrieve a specific API.
Example: mendix.EditorsAPI, mycompany.MyFunkyAPI
Adds a new import mapping document to the specified container.
The ID of the container where the import mapping will be added. It could be a module or folder.
Optionaloptions: AddMappingOptionsOptions for initializing the import mapping, including its name and an optional
selectStructure to associate a JSON structure by qualified name, select specific element paths,
and optionally auto-map elements.
A promise that resolves to the newly created import mapping document.
Adds a new mapping document to the specified container.
The ID of the container where the mapping will be added. It could be a module or folder.
Optionaloptions: AddMappingOptionsOptions that specify how the mapping will be initialized. Includes a name and an optional selectStructure
configuration to associate a JSON structure by qualified name, select specific element paths, and optionally auto-map elements.
A promise that resolves to the newly created mapping document.
Clears all entity and attribute mappings from the specified mapping document.
The ID of the mapping document to clear.
A promise that resolves when all element mappings have been cleared.
Optionaloptions: ImportMappingCreationOptionsSets entity and attribute mappings on the specified mapping document's elements.
The ID of the mapping document to update.
The mapping objects that define entity and attribute assignments for each element path.
A promise that resolves when the element mappings have been applied.
API for working with import mapping documents.
An import mapping defines how incoming XML or JSON data is mapped onto Mendix entities. Use this API to programmatically create import mapping documents inside a module or folder, optionally pre-configure them with a JSON structure and selected element paths, and auto-map elements to domain model entities and attributes. Once created, you can also set or clear entity and attribute assignments on the mapping's elements via inherited methods.