Fix issue with loading alarm harmless status from persistent storage
There was an issue because identifier was parsed incorrectly so the comparison of if identifier == self.identifier
failed. Pydantic
requires the union of all possible types to parse them correctly.
Also, it turned out, that there was a missing set of self.is_active = True
and CliveBasedModel serialized datetime incorrectly.