XDM Schema Design
Hello,
We are trying to create XDM Schema Design for the following data:
Table A: Contact_details
| Column | Datatype |
| person_id | String |
| first name | String |
| last name | String |
Table B: Account_details
| Column | Datatype |
| account_id | String |
| person_id | String |
| account_person_asc | String |
| account_type |
String |
Relation between both the tables:
One person from Table A can have multiple accounts in Table B. It is basically a one-to-many mapping between these 2 tables.
We are trying to create a complete profile of a person with all the details corresponding to their accounts. We tried creating both the tables as Profile class as below:
Table A: Profile Class
Identities: PersonID --> person_id
Table B: Profile Class
Identities:
AccountID --> account_id
PersonID --> person_id
The profiles were created but didn't have all the information needed. Is there any other way to design XDM Schema for this type of data ?
Thanks,
Vamsi Kalakuntla.