// there is a short name match, but the structure does not match
Schema read = Schema.createUnion(Arrays.asList(
Schema.create(Schema.Type.NULL),
point3dNoDefault));
new SchemaValidatorBuilder().canBeReadStrategy().validateAll()
.validate(point2dFullname, Arrays.asList(read));
}