if(StringUtil.isNotEmpty(baseDocUrl)) {
o.put("doc_url", FBSString.get(baseDocUrl));
}
String json = doc.getItemValueString("Json");
if(StringUtil.isNotEmpty(json)) {
FBSValue value = (FBSValue)JsonParser.fromJson(new JsonJavaScriptFactory(jsContext), json);
o.put("items", value);
}
fixAPIObject(o,baseDocUrl,unid);
}
}