Hi,
in general, the Franca deployment language can be used to attach additional information to Franca IDL files. The user guide contains a chapter on this. Deployment language models are text files with extension *.fdepl.
Basically, you first create a deployment _specification_ like the following:
specification MySpecification {
for arrays {
MaxArraySize : Integer;
}
}
After this, you create a deployment _definition_ for each of your typeCollections and interfaces. There, the deployment editor will guide you to specify the MaxArraySize property for each of the arrays used in the IDL models.
Pls keep in mind that deployment models express what might be used by backend tools, e.g., generators and transformations. If the additional information is not used, it is probably not necessary to specify it.
Hope this helps, regards,
Klaus