1 2 3 4 5 6 7 8 9 | class PROCESSED_BIAS(DataClassification):
name="PROCESSED_BIAS"
usage = 'Applies to all "gbias"ed data.'
parent = "UNPREPARED"
requirement = OR([PHU( {'{re}.*?GBIAS': ".*?" }),
PHU( {'{re}.*?PROCBIAS': ".*?" })])
newtypes.append(PROCESSED_BIAS())
|