assertThat(property.getMemberType(), is("property"));
assertThat(property.getFormat(), is("big-decimal(30,10)"));
assertThat(property.getXIsisFormat(), is("javamathbigdecimal"));
scalarRepr = property.getRepresentation("value").as(ScalarValueRepresentation.class);
assertThat(scalarRepr.isString(), is(true));
BigDecimal bigDecimal = scalarRepr.asBigDecimal(property.getFormat());
assertThat(bigDecimal, is(new BigDecimal("12345678901234567890.1234567890")));
property = domainObjectRepr.getProperty("bigDecimalProperty2");
assertThat(property.getMemberType(), is("property"));
assertThat(property.getFormat(), is("big-decimal(18,2)"));