in src/main/java/org/apache/sling/testing/clients/osgi/ServiceInfo.java [30:39]
public ServiceInfo(JsonNode root) throws TestingValidationException {
if(root.get("id") != null) {
service = root;
} else {
if(root.get("data") == null && root.get("data").size() < 1) {
throw new TestingValidationException("No service info returned");
}
service = root.get("data").get(0);
}
}