我正在从 Informatica 创建 JSON 文件。到目前为止我做了什么:
-
- 在 Informatica MDM hub 中配置基本实体
-
- 在配置工具中创建一个 Base 对象
然后,我通过 Informatica 访问了预定义的 URL,例如
"server:port"/cmx/cs/"databaseid"/"baseobjectname"/id.json.
默认情况下,Informatica 将链接属性放置在父/子/自身的 JSON 文件中(如果有)
有什么办法可以删除链接属性?
我的输出低于
{
"link": [
{
"href": "serveraddress//1.json?depth=2",
"rel": "children"
},
{
"href": "serveraddress//1.json",
"rel": "self"
}
],
"rowidObject": "2"
}
预期的:
{
"rowidObject": "2"
}