diff --git a/acquisitions-unit/examples/acquisitions_unit_get.sample b/acquisitions-unit/examples/acquisitions_unit_get.sample index 373be160..54003949 100644 --- a/acquisitions-unit/examples/acquisitions_unit_get.sample +++ b/acquisitions-unit/examples/acquisitions_unit_get.sample @@ -1,6 +1,7 @@ { "id": "7ec2ed06-0504-40dc-bc53-7515955ff0cb", "name": "main", + "description": "main desc", "isDeleted": false, "protectCreate": true, "protectRead": false, diff --git a/acquisitions-unit/examples/acquisitions_unit_post.sample b/acquisitions-unit/examples/acquisitions_unit_post.sample index f261f03e..9df5b1ae 100644 --- a/acquisitions-unit/examples/acquisitions_unit_post.sample +++ b/acquisitions-unit/examples/acquisitions_unit_post.sample @@ -1,5 +1,6 @@ { "name": "main", + "description": "main desc", "isDeleted": false, "protectCreate": true, "protectRead": false, diff --git a/acquisitions-unit/schemas/acquisitions_unit.json b/acquisitions-unit/schemas/acquisitions_unit.json index c51e1ca5..69e1b92b 100644 --- a/acquisitions-unit/schemas/acquisitions_unit.json +++ b/acquisitions-unit/schemas/acquisitions_unit.json @@ -11,6 +11,10 @@ "description": "a name for this acquisitions unit", "type": "string" }, + "description": { + "description": "The description of this acq unit", + "type": "string" + }, "isDeleted": { "description": "If true, the record is marked for deletion at some point. This prevents it from being assigned to any record.", "type": "boolean", diff --git a/mod-orgs/examples/banking_information_collection.sample b/mod-orgs/examples/banking_information_collection.sample index a0162992..58d573bf 100644 --- a/mod-orgs/examples/banking_information_collection.sample +++ b/mod-orgs/examples/banking_information_collection.sample @@ -3,7 +3,7 @@ { "id": "c59680de-3e0e-46d6-a0a1-62528e8e92ae", "organizationId": "fde0af0b-9735-45c9-b9cb-3f3ee989bba9", - "addressId": "3501d066-76b1-4260-9db3-44699d40a18e", + "categoryId": "3501d066-76b1-4260-9db3-44699d40a18e", "accountTypeId": "6a901d4c-4bea-47a4-8020-fac364a6c41a", "bankName": "TRC", "bankAccountNumber": "123456", @@ -18,7 +18,7 @@ { "id": "b6f4aba8-fe60-43f4-bd7b-2ce60bb0f60b", "organizationId": "1efbd4e0-748c-465a-82fc-8ce520f849ac", - "addressId": "e248a371-599c-4870-8f3c-b5f5aee06de8", + "categoryId": "e248a371-599c-4870-8f3c-b5f5aee06de8", "accountTypeId": "076efbe9-eaa8-4991-92dc-dc95728bd8eb", "bankName": "GOR", "bankAccountNumber": "56789", diff --git a/mod-orgs/examples/banking_information_get.sample b/mod-orgs/examples/banking_information_get.sample index a08777d6..3458e8df 100644 --- a/mod-orgs/examples/banking_information_get.sample +++ b/mod-orgs/examples/banking_information_get.sample @@ -1,7 +1,7 @@ { "id": "c59680de-3e0e-46d6-a0a1-62528e8e92ae", "organizationId": "fde0af0b-9735-45c9-b9cb-3f3ee989bba9", - "addressId": "3501d066-76b1-4260-9db3-44699d40a18e", + "categoryId": "3501d066-76b1-4260-9db3-44699d40a18e", "accountTypeId": "6a901d4c-4bea-47a4-8020-fac364a6c41a", "bankName": "TRC", "bankAccountNumber": "123456", diff --git a/mod-orgs/examples/banking_information_post.sample b/mod-orgs/examples/banking_information_post.sample index aabd181a..c0e22777 100644 --- a/mod-orgs/examples/banking_information_post.sample +++ b/mod-orgs/examples/banking_information_post.sample @@ -1,6 +1,6 @@ { "organizationId": "fde0af0b-9735-45c9-b9cb-3f3ee989bba9", - "addressId": "3501d066-76b1-4260-9db3-44699d40a18e", + "categoryId": "3501d066-76b1-4260-9db3-44699d40a18e", "accountTypeId": "6a901d4c-4bea-47a4-8020-fac364a6c41a", "bankName": "TRC", "bankAccountNumber": "123456", diff --git a/mod-orgs/schemas/banking_information.json b/mod-orgs/schemas/banking_information.json index 49dc1343..005b503f 100644 --- a/mod-orgs/schemas/banking_information.json +++ b/mod-orgs/schemas/banking_information.json @@ -15,8 +15,8 @@ "description": "The unique id of organization", "$ref": "../../common/schemas/uuid.json" }, - "addressId": { - "description": "The unique id of address", + "categoryId": { + "description": "The unique id of category", "$ref": "../../common/schemas/uuid.json" }, "accountTypeId": {