Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Since 2020.02 it is possible to import properties for individual values too. It is therefore possible to distinguish which properties should be applied to the whole sample and which only to individual values within the sample. 

The idea is that one can define a propertyColumn just as before. If the propertyColumn has a key/id which is NOT specified in SampleMetadataSchema.xml, then it is considered as a value property. On the other hand, if you define a propertyColumn which uses a key/id which is defined in SampleMetadataSchema.xml, then it is considered as a sample property. In the example below, a table is defined as part of the timeSeriesImportRun configuration. The first property column, "COST_CODE", refers to sample properties (because "COST_CODE" is defined in SampleMetadataScheme.xml), while the second property column "testValueProperty" refers to a value property.

Code Block
<table>				
	<propertyColumn name="COST_CODE" key="COST_CODE"/>
	<propertyColumn name="testValueProperty" key="testValueProperty"/>
	<valueColumn name="Waarde"/>
</table>

...