[docs]classApp(Catalog):"""Description"""type_name:str=Field(default="App",allow_mutation=False)@validator("type_name")defvalidate_type_name(cls,v):ifv!="App":raiseValueError("must be App")returnvdef__setattr__(self,name,value):ifnameinApp._convenience_properties:returnobject.__setattr__(self,name,value)super().__setattr__(name,value)APP_ID:ClassVar[KeywordField]=KeywordField("appId","appId")""" Unique identifier for the application asset from the source system. """_convenience_properties:ClassVar[List[str]]=["app_id",]@propertydefapp_id(self)->Optional[str]:returnNoneifself.attributesisNoneelseself.attributes.app_id@app_id.setterdefapp_id(self,app_id:Optional[str]):ifself.attributesisNone:self.attributes=self.Attributes()self.attributes.app_id=app_idclassAttributes(Catalog.Attributes):app_id:Optional[str]=Field(default=None,description="")attributes:App.Attributes=Field(default_factory=lambda:App.Attributes(),description=("Map of attributes in the instance and their values. ""The specific keys of this map will vary by type, ""so are described in the sub-types of this schema."),)