When using the Watson SDK-API to submit documents to the Document Conversion Service, the Answer Units generated are missing the Parent ID. The issue is easily reproducible, just by using the Watson SDK. A snippet of code is reported below: ``` java private Answers convertDocumentToAnswer(File document, String mediaType) throws FileNotFoundException { ServiceCall<Answers> answersCall; JsonObject dcsConfigJson = loadDCSConfiguration(); answersCall = getCoversionService().convertDocumentToAnswer(document, mediaType, dcsConfigJson); return answersCall.execute(); } ``` The issue is reproducible in all the JDK versions available. Java SDK version is `1.8.0_101` Apparently, the reason why the issue is happening is the ParentID field missing from the class Answer part of Answers