if (Objects.equal("Pod", kind)) {
PodSchema podSchema = objectMapper.reader(PodSchema.class).readValue(json);
configurePod(podSchema, service, options, metadata);
answer.put(definition, podSchema);
} else if (Objects.equal("ReplicationController", kind)) {
ReplicationControllerSchema replicationControllerSchema = objectMapper.reader(ReplicationControllerSchema.class).readValue(json);
configureReplicationController(replicationControllerSchema, service, options, metadata);
answer.put(definition, replicationControllerSchema);
} else if (Objects.equal("Service", kind)) {
ServiceSchema serviceSchema = objectMapper.reader(ServiceSchema.class).readValue(json);
configureService(serviceSchema, service, options, metadata);