[docs]classObjectStore(Catalog):"""Description"""type_name:str=Field(default="ObjectStore",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="ObjectStore":raiseValueError("must be ObjectStore")returnvdef__setattr__(self,name,value):ifnameinObjectStore._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)_convenience_properties:ClassVar[List[str]]=[]