converter.isValid(representation.build(), CREATE);
    }
    @Test(expected = RepresentationValidationException.class)
    public void shouldRequireNullChanges() throws Exception {
        representation.withActivity(activity).withSeverity(severity).withChanges(new HashSet());
        converter.isValid(representation.build(), CREATE);
    }