10 Key Things to note for Taxonomy Validation

  1. Taxonomy validation is applied to all non-static private fields. . Exceptions: Fields of types extending DataTransferObject, ENUM fields.
  2. The fields should have appropriate getter method.
    1. For Boolean – the getter method should be ‘is<Fieldname>’ (e.g. isShared)
    2. For other types – the getter should be ‘get<Fieldname>’ (e.g. getPartyId)
  3. If any field in the DTO is of type of an object which extends Validatable Class, the corresponding validator class will be responsible for its field validation.
  4. For fields that do not require any specific data type validation, data type ‘FREETEXT’ an be mapped.
  5. For list type of fields the validation will be done in loop, validating each field as per taxonomy definition.
  6. In validationError, the structure of the error object is as follows-
            {    
            "objectName": <fully qualified name of the DTO on which validate method is called>,
            "attributeName": < the field in which the validation has failed>,
            "errorCode": <error code>,
            "errorMessage": <locale specific message for the errorCode>
            }

For list of objects or fields the attribute name will have an index concatenated by ‘#’ in attributeName.