The Xentara FMU Driver v1.2
User Manual
JSON Format for Parameters

A JSON object describing a Parameter has the following syntax:

{
"@Skill.FMU.Parameter": {
"name": "Parameter",
"UUID": "0bc77cd4-ff33-42f0-8cbd-6d00a4d7b3c3",
"ACL": { ... },
"dataType": "Real",
"valueReference": 0,
"initialValue": 50.0
}
}

Object Members
nameA string value containing the name of the parameter. The name is used to construct the parameter’s primary key.
UUIDA string value containing the unique UUID of the parameter.
ACLAn optional JSON object containing the element ACL of the parameter. The format of the object is described under JSON Format for ACLs in the Xentara user manual.
dataTypeA string value containing the data type of the parameter. The data type should be from the DataType list.
valueReferenceAn integer value containing the value reference of the parameter from the Model Description file of the FMU. The value reference is distinct within the model. This means that it will not be repeated for any other variables.
initialValueAn integer value containing the initial value of the parameter from the Model Description file of the FMU. This value is set before the model is simulated. The value should match the type mentioned in the dataType configuration parameter.

Please remember that each element block requires two layers of {} due to the syntax restrictions of the JSON format.