*
* @param name (e.g.:surname)
* @return schemaTO
*/
public SchemaTO readSchema(final AttributableType type, final String name) {
SchemaTO schema = null;
try {
schema = restTemplate.getForObject(baseURL + "schema/" + type.name().toLowerCase() + "/read/" + name
+ ".json", SchemaTO.class);
} catch (SyncopeClientCompositeErrorException e) {