@Test
public void shouldParseWithSimpleProps() throws Exception {
JSONObject json = new JSONObject("{\"externalId\":\"some_id\",\"externalIdsOfGlobalId\":\"externalIdsOfGlobalId\"}");
IdentityRepresentation parsed = (IdentityRepresentation) converter.fromJson(json);
assertThat(parsed.getExternalId()).isEqualTo(externalId);
assertThat(parsed.getExternalIdsOfGlobalId()).isEqualTo(externalIdsOfGlobalId);
}