/
Node Types and Iguana Node Trees
Node Types and Iguana Node Trees
Iguana stores messages internally using a node tree structure (a Lua user data type we created for the the Iguana Translator).
Their purpose is to make it easier for us to locate, map, and manipulate message data. A node tree is a custom data type that organizes information like tables do, but they are enhanced by methods that add extra functionality via the Annotation Windows.
Iguana uses various node trees - HL7 (and EDI X12), XML, DB (database query results), and table (database data for updates):
Lua tables and JSON trees are not node trees, but they are displayed hierarchically.
, multiple selections available,
Related content
XML Structure and Node Types
XML Structure and Node Types
More like this
Example code showing the eight basic types in Lua
Example code showing the eight basic types in Lua
More like this
User data type
User data type
More like this
# Operator on Userdata Objects
# Operator on Userdata Objects
More like this
Generating XML
Generating XML
More like this
Parsing and Serializing JSON
Parsing and Serializing JSON
More like this