From a4fff58269489b9504ccd0c601825b6d1e41b85f Mon Sep 17 00:00:00 2001 From: Adarsh Raghuwanshi <126710339+adarshGit-hub@users.noreply.github.com> Date: Wed, 6 May 2026 15:21:01 +0530 Subject: [PATCH] docs(party): fix typos, camelCase consistency, and JSON structures - Corrected grammatical errors and typos in task descriptions and explanations - Standardized 'partyId' casing across all examples (previously mixed with 'partyID' and 'partyid') - Fixed Organization JSON snippet to use the correct 'partyId' key --- udm/beginner/Party/party.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/udm/beginner/Party/party.md b/udm/beginner/Party/party.md index b8255604..a8fc1a44 100644 --- a/udm/beginner/Party/party.md +++ b/udm/beginner/Party/party.md @@ -19,8 +19,8 @@ https://www.moqui.org/m/docs/mantle/Mantle+Structure+and+UDM/Party 1. Setup custom component, "relationshipmgr" 2. Setup Party and related entities defined in this document. 3. Build UI using Forms and Screens -4. Demonstrate use of your application to manage sample data from you experience, e.g Collage, departments, students, teaching staff. -5. Add [Party Contact Mechanism](contact-mech.md) and related entities in your codebase (PartyContactMech and related entites are not defined in this document). +4. Demonstrate use of your application to manage sample data from your experience, e.g College, departments, students, teaching staff. +5. Add [Party Contact Mechanism](contact-mech.md) and related entities in your codebase (PartyContactMech and related entities are not defined in this document). 6. Prepare sample Contact Mechanism data from your real life experience. 7. Use your application to manage your contacts. @@ -53,7 +53,7 @@ Example: John Doe works as an employee at ABC Organization, where he is also a c #### 2. Person - **Description**: A specialization of `Party`, representing individual human beings. - **Key Attribute**: `partyId` -- **Example**: Lets create the relevent person. +- **Example**: Lets create the relevant person. ```json { "Person": { @@ -71,14 +71,14 @@ Example: John Doe works as an employee at ABC Organization, where he is also a c ```json { "Organization": { - "partyID": "ORG456", + "partyId": "ORG456", "organizationName": "ABC" } } ``` #### 4. Party Role - **Description**: Defines the role of a `Party` in a specific context. -- **Key Attributes**: `partyid`, `roleTypeId` +- **Key Attributes**: `partyId`, `roleTypeId` - **Examples**: Lets define the relevant roles for the parties. ```json { @@ -135,4 +135,4 @@ Example: John Doe works as an employee at ABC Organization, where he is also a c } } } -``` \ No newline at end of file +```