organization_quality_checker

class OrganizationQualityChecker(utils.quality_checker.QualityChecker):

Reference implementation calculating the data quality of an organization. For every Application belonging to a user in an organization, it runs the the ApplicationQualityChecker to determine the application quality metrics. For every User belonging to the organization, it runs the UserQualityChecker to determine the user quality metrics.

@classmethod
def fields(cls):

The list of fields that this quality checker can calculate. Used by reports for rendering the information. The reports use the same ordering of fields that is defined here.

@classmethod
def check(cls, org):

The checker logic. Calculates and returns the quality metrics for an organization.Organization object using further quality checkers.

Inherited Members
utils.quality_checker.QualityChecker
initialize