assertThat(property.getXIsisFormat(), is("javautildate"));
scalarRepr = property.getRepresentation("value").as(ScalarValueRepresentation.class);
assertThat(scalarRepr.isString(), is(true));
Date utilDate = scalarRepr.asDateTime();
assertThat(utilDate, is(asDateTime("2013-05-25T12:34:45Z")));
assertThat(scalarRepr.asString(), is("2013-05-25T12:34:45Z"));
property = domainObjectRepr.getProperty("myEnum");
assertThat(property.getMemberType(), is("property"));
assertThat(property.getFormat(), is("string"));
assertThat(property.getXIsisFormat(), is("string"));