}
// Now, add the pseudo entries for the POST/PUT content
FBSValue v = item.get("http_method");
if(v.isString()) {
String m = v.stringValue();
if(m.equalsIgnoreCase("post")||m.equalsIgnoreCase("put")) {
ObjectObject ct = addParam(a, FBSString.get("post_content_type"), item.get("post_content_type"), FBSUtility.wrap("string"), FBSUtility.wrap("Content-Type header of the payload"));
ct.put("optional", FBSBoolean.TRUE);
ObjectObject bd = addParam(a, FBSString.get("post_content"), item.get("post_content"), FBSUtility.wrap("textarea"), FBSUtility.wrap("Text content sent to the service"));
bd.put("optional", FBSBoolean.TRUE);