ConsumerDataStandardsAustralia / standards-maintenance

This repository houses the interactions, consultations and work management to support the maintenance of baselined components of the Consumer Data Right API Standards and Information Security profile.
41 stars 9 forks source link

Include phone and email in organisation customer detail #672

Open nils-work opened 2 months ago

nils-work commented 2 months ago

Description

The phoneNumbers and emailAddresses schemas are present in the CommonPersonDetailV2 schema, but are absent from the CommonOrganisationDetailV2. Details for these are already included in the Business consumer CX language.

Intention and Value of Change

To provide parity between individual and non-individual customer data, to support use cases.

Area Affected

Change Proposed

Include phone number and email address detail in the organisation customer detail structure.

i.e. add:

  "phoneNumbers": [
    {
      "isPreferred": true,
      "purpose": "HOME",
      "countryCode": "string",
      "areaCode": "string",
      "number": "string",
      "extension": "string",
      "fullNumber": "string"
    }
  ],
  "emailAddresses": [
    {
      "isPreferred": true,
      "purpose": "HOME",
      "address": "string"
    }
  ],