[docs]classUserProfileSchemaRepository(ResourceCacheRepository["ProfileSchemaDefinition",None]):"""Singleton-keyed repository for the bundled user-profile schema. Wraps :func:`aeat.domain.user_profile.load_user_profile_schema` and returns the :class:`ProfileSchemaDefinition` aggregate. """@overridedef_load(self,key:None)->ProfileSchemaDefinition:from....domain.user_profileimportload_user_profile_schemareturnload_user_profile_schema()@propertydefsingleton(self)->ProfileSchemaDefinition:schema:ProfileSchemaDefinition=self.get(None)returnschema