Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Integration Statements

Statements for managing JSON structures, import mappings, export mappings, and data transformers.

These document types support moving data between Mendix entities and external data formats (JSON, XML). They are typically used together: a JSON structure defines the external shape, import and export mappings translate between that shape and Mendix entities, and data transformers reshape raw data before it enters a mapping.

Statements

StatementDescription
CREATE JSON STRUCTUREDefine the shape of a JSON document from a sample snippet
CREATE IMPORT MAPPINGMap incoming JSON/XML to Mendix entities
CREATE EXPORT MAPPINGMap Mendix entities to outgoing JSON/XML
CREATE DATA TRANSFORMERTransform raw JSON or XML with JSLT/XSLT steps
StatementSyntax
List JSON structuresLIST JSON STRUCTURES [IN module]
List import mappingsLIST IMPORT MAPPINGS [IN module] or SHOW IMPORT MAPPINGS [IN module]
List export mappingsLIST EXPORT MAPPINGS [IN module] or SHOW EXPORT MAPPINGS [IN module]
List data transformersLIST DATA TRANSFORMERS [IN module]
Describe JSON structureDESCRIBE JSON STRUCTURE module.Name
Describe import mappingDESCRIBE IMPORT MAPPING module.Name
Describe export mappingDESCRIBE EXPORT MAPPING module.Name
Describe data transformerDESCRIBE DATA TRANSFORMER module.Name

Drop Statements

DROP JSON STRUCTURE module.Name;
DROP IMPORT MAPPING module.Name;
DROP EXPORT MAPPING module.Name;
DROP DATA TRANSFORMER module.Name;