MCPcopy Create free account
hub / github.com/StackStorm/st2 / validate

Method validate

st2common/st2common/fields.py:399–401  ·  view source on GitHub ↗
(self, value)

Source from the content-addressed store, hash-verified

397 return data
398
399 def validate(self, value):
400 value = self.to_mongo(value)
401 return super(JSONDictField, self).validate(value)
402
403 def parse_field_value(self, value: Optional[Union[bytes, dict]]) -> dict:
404 """

Calls 1

to_mongoMethod · 0.95