具有相同标签的 L1 实体类型和 L3 实体类型

An L1 entity type and an L3 entity type having the same label

在 Reltio 中,我可以为 L3 配置中已经存在于 L1 配置中的实体类型添加标签吗?

比如我们知道Individual是L1配置中的实体类型。那么,我可以在 L3 配置中创建一个 Individual 实体类型吗?另外,如果可能的话,我可以从 L1 配置的 Individual 扩展 L3 配置的 Individual 吗?

是的,您可以更改 L3 中任何实体类型的标签。

此外,您只需添加自定义属性即可扩展 L3 中的任何实体类型。不要在您的 L3 中包含您不更改的特性或特性。它们将在您的 L3 中自动继承。

示例:

 {
  "uri": "configuration",
  "description": "ABC Company Customer Hub",
  "referenceConfigurationURI": "configuration/_vertical/life-sciences",
  "entityTypes": [
    {
      "uri": "configuration/entityTypes/Individual",
      "attributes": [
        {
          "uri": "configuration/entityTypes/Individual/attributes/Prefix",
          "lookupCode": "rdm/lookupTypes/Prefix"
        },
        {
          "uri":
       "configuration/entityTypes/Individual/attributes/AbcGoodCustomerFlag",
          "label": "ABC Good Customer",
          "name": "AbcGoodCustomerFlag",
          "type": "Boolean",
          "Default": false
        }
      ]
    }
  ]
}

在上面的示例中,Reltio 的 100 个标准属性通过继承自动“拉入”实体类型,例如:

"referenceConfigurationURI": "configuration/_vertical/life-sciences"

以及已建立的生命科学最佳实践和配置,包括匹配、生存等

此外,它向已定义的前缀属性添加 Reltio RDM 查找,并添加名为 "ABC Good Customer" 的自定义属性。

同样,这几行的结果将是一个完整的配置,而不仅仅是提到的自定义项。所以,你只需要在 L3 中添加你的自定义。