Header

This is the header of a valid Innovation Design & Decisions XML data file.

See Also
XML Format Overview

The header contains the following elements:

ElementDescription
root

The main element.

Every Innovation Design & Decisions data file must start with a root element.

transaction

Describes an import job to process. All data included in a transaction element is processed in the same database transaction. If an error is encountered, all data modifications or creations are canceled for the current transaction and the import process will terminate. A Innovation Design & Decisions data file can include several transactions.

Data must be described inside a transaction element.

Example

<?xml version="1.0" encoding="utf-8"?>
<root xmlns="http://biobdv.3ds.com/XMLSchema" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <transaction id="transaction 1">
        <!--data can be declared here-->
    </transaction>
    <transaction id="transaction 2">
        <!--or here-->
    </transaction>
</root>