Skip to content

Instantly share code, notes, and snippets.

@mcroissant
Created October 17, 2019 15:36
Show Gist options
  • Save mcroissant/6e3c63421d0e71415cf4e067fde4beaa to your computer and use it in GitHub Desktop.
Save mcroissant/6e3c63421d0e71415cf4e067fde4beaa to your computer and use it in GitHub Desktop.
Complex parameter with a list and structure
<Command>
...
<Parameter>
<Identifier>ExpectedRackContent</Identifier>
<DisplayName>Expected Rack Content</DisplayName>
<Description>The vials barcode and position which are expected within the rack</Description>
<DataType>
<List>
<DataType>
<Structure>
<Element>
<Identifier>RackPosition</Identifier>
<DisplayName>Rack Position</DisplayName>
<Description>A cell within a rack</Description>
<DataType>
<Basic>String</Basic>
</DataType>
</Element>
<Element>
<Identifier>VialBarcode</Identifier>
<DisplayName>Vial Barcode</DisplayName>
<Description>the barcode of the vial within the rack position given</Description>
<DataType>
<Basic>String</Basic>
</DataType>
</Element>
<Element>
<Identifier>VialVolume</Identifier>
<DisplayName>Vial Volume</DisplayName>
<Description>The volume of material within the Vial in ml</Description>
<DataType>
<Basic>String</Basic>
</DataType>
</Element>
</Structure>
</DataType>
</List>
</DataType>
</Parameter>
</Command>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment