When creating a Property using odML version 1.4.2. `value=0` is interpreted as an empty value. Eg. this example code prints an empty list: ```python import odml p = odml.Property('myprop', value=0) print(p.value) ```