> ## Documentation Index
> Fetch the complete documentation index at: https://docs.zeotap.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Understand One-to-Many Relationship in NCE

Let’s consider and example to under this concept better. Say, a customer with unique ID (UCID) has multiple phone numbers (personal, work, and family plans). Each phone number is associated with different subscription plans, data usage, and billing details. In this case, the UCID has a one-to-many relationship with the phone numbers and their corresponding details.

Here is how this relationship appears in JSON format, which is how the system receives Non-Customer Entity (NCE) data. By using a Non-Customer Entity source, you can efficiently organize and analyze these relationships to improve personalisation and operational efficiency.

```json JSON theme={null}
{
  "ucid": "123456",
  "subscriptions": [
    {
      "plan_id": "PLAN001",
      "plan_name": "Unlimited Talk & Text",
      "data_limit_gb": 5,
      "price_per_month": 20,
      "status": "Active",
      "propensity_score": 0.85
      
    },
    {
      "plan_id": "PLAN002",
      "plan_name": "Family Plan",
      "data_limit_gb": 50,
      "price_per_month": 60,
      "status": "Inactive",
      "propensity_score": 0.65
      
    },
    {
      "plan_id": "PLAN003",
      "plan_name": "Work Plan",
      "data_limit_gb": 10,
      "price_per_month": 35,
      "status": "Active",
      "propensity_score": 0.92
      
    }
    
  ]
  
```

## Related Topics

<CardGroup>
  <Card title="How to use NCE?" href="/articles/unify-customer/how-to-use-nce" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="Why do we need NCE?" href="/articles/unify-customer/why-do-we-need-nce" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="Understand Join Key Enricher and how to configure it" href="/articles/unify-customer/configuring-the-join-key-enricher" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="How to use the Composite Key in NCE?" href="/articles/unify-customer/using-composite-key-in-nce" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="Create an NCE source for the source types: Flat Files, Server to Server, CRM Data, and Data Warehouse" href="/articles/integrate-customer/creating-a-source" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="How to map NCE data in the Zeotap Catalogue?" href="/articles/unify-customer/map-the-catalogue-for-non-customer-entity-data" icon="angles-right" iconType="solid" horizontal={true} />

  <Card title="How to create an NCE attribute in Zeotap Catalogue?" href="/articles/unify-customer/adding-a-non-customer-entity-category" icon="angles-right" iconType="solid" horizontal={true} />
</CardGroup>
