.prop("path", inputFile.relativePath())
.prop("moduleKey", StringUtils.substringBeforeLast(key, ":"))
.prop("status", inputFile.status().name())
.endObject();
} else {
InputDir inputDir = (InputDir) inputPath;
String key = ((DefaultInputDir) inputDir).key();
json
.beginObject()
.prop("key", key)
.prop("path", inputDir.relativePath())
.prop("moduleKey", StringUtils.substringBeforeLast(key, ":"))
.endObject();
}
}