ModelVersion¶
The version in format Major.Minor.Patch.Build
.
It can be read out via the Updatable version of the Template.
The version is optional, it is set to 0.0.0.0 when it is not defined in the YAML schema.
Example¶
1 | ModelVersion: "1.2.3.4"
|
YAML schema¶
1 | ModelVersion: str(matches='^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}$', required=False)
|