propertyware 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (69) hide show
  1. checksums.yaml +4 -4
  2. data/.openapi-generator/FILES +6 -3
  3. data/.tool-versions +2 -0
  4. data/DOCS.md +7 -5
  5. data/Gemfile.lock +4 -2
  6. data/bin/config.yml +1 -1
  7. data/bin/fix_json.rb +0 -1
  8. data/bin/propertyware.json +218 -178
  9. data/docs/Adjustment.md +40 -0
  10. data/docs/BankDeposit.md +1 -1
  11. data/docs/ChargeTx.md +1 -5
  12. data/docs/ContactCategory.md +20 -0
  13. data/docs/ContactsApi.md +79 -0
  14. data/docs/DocumentsApi.md +4 -4
  15. data/docs/Inspection.md +8 -0
  16. data/docs/LeasesApi.md +19 -19
  17. data/docs/OwnerContribution.md +5 -5
  18. data/docs/OwnerDraw.md +1 -1
  19. data/docs/Portfolio.md +2 -0
  20. data/docs/Refund.md +5 -5
  21. data/docs/SaveAdjustment.md +2 -2
  22. data/docs/SaveBankDeposit.md +1 -1
  23. data/docs/SaveContact.md +2 -0
  24. data/docs/SaveDiscount.md +1 -1
  25. data/docs/SaveOwnerContribution.md +5 -5
  26. data/docs/SaveOwnerDraw.md +5 -5
  27. data/docs/SavePayment.md +6 -6
  28. data/docs/SavePortfolio.md +6 -0
  29. data/docs/SaveRefund.md +6 -6
  30. data/lib/propertyware/api/contacts_api.rb +57 -0
  31. data/lib/propertyware/api/documents_api.rb +4 -4
  32. data/lib/propertyware/api/leases_api.rb +14 -14
  33. data/lib/propertyware/models/account.rb +1 -1
  34. data/lib/propertyware/models/{transaction.rb → adjustment.rb} +24 -118
  35. data/lib/propertyware/models/auto_journal_entry.rb +2 -2
  36. data/lib/propertyware/models/bank_deposit.rb +1 -1
  37. data/lib/propertyware/models/charge.rb +2 -2
  38. data/lib/propertyware/models/charge_tx.rb +4 -24
  39. data/lib/propertyware/models/contact_category.rb +229 -0
  40. data/lib/propertyware/models/inspection.rb +41 -1
  41. data/lib/propertyware/models/owner_contribution.rb +0 -25
  42. data/lib/propertyware/models/owner_draw.rb +0 -5
  43. data/lib/propertyware/models/portfolio.rb +11 -1
  44. data/lib/propertyware/models/refund.rb +2 -27
  45. data/lib/propertyware/models/save_adjustment.rb +2 -2
  46. data/lib/propertyware/models/save_bank_deposit.rb +1 -1
  47. data/lib/propertyware/models/save_contact.rb +11 -1
  48. data/lib/propertyware/models/save_discount.rb +1 -1
  49. data/lib/propertyware/models/save_owner_contribution.rb +5 -5
  50. data/lib/propertyware/models/save_owner_draw.rb +5 -5
  51. data/lib/propertyware/models/save_payment.rb +6 -6
  52. data/lib/propertyware/models/save_portfolio.rb +31 -1
  53. data/lib/propertyware/models/save_refund.rb +7 -17
  54. data/lib/propertyware/version.rb +1 -1
  55. data/lib/propertyware.rb +2 -1
  56. data/spec/api/contacts_api_spec.rb +11 -0
  57. data/spec/api/documents_api_spec.rb +2 -2
  58. data/spec/api/leases_api_spec.rb +5 -5
  59. data/spec/models/{transaction_spec.rb → adjustment_spec.rb} +6 -52
  60. data/spec/models/auto_journal_entry_spec.rb +1 -1
  61. data/spec/models/charge_spec.rb +1 -1
  62. data/spec/models/charge_tx_spec.rb +0 -12
  63. data/spec/models/contact_category_spec.rb +40 -0
  64. data/spec/models/inspection_spec.rb +24 -0
  65. data/spec/models/portfolio_spec.rb +6 -0
  66. data/spec/models/save_contact_spec.rb +6 -0
  67. data/spec/models/save_portfolio_spec.rb +18 -0
  68. metadata +11 -6
  69. data/docs/Transaction.md +0 -54
@@ -3087,6 +3087,57 @@
3087
3087
  }
3088
3088
  }
3089
3089
  },
3090
+ "/contacts/categories": {
3091
+ "get": {
3092
+ "tags": ["Contacts"],
3093
+ "summary": "Retrieve all contact categories",
3094
+ "description": "Retrieves a list of contact categories.<br/><br/><b>Required permission:</b><br/><span class=\"permissionBlock\">CONTACTS</span> - <code>Read</code>\n",
3095
+ "operationId": "getContactCategories",
3096
+ "responses": {
3097
+ "200": {
3098
+ "description": "OK",
3099
+ "headers": {
3100
+ "X-Total-Count": {
3101
+ "description": "The total resultset count",
3102
+ "schema": { "type": "integer", "format": "int64" }
3103
+ }
3104
+ },
3105
+ "content": {
3106
+ "application/json": {
3107
+ "schema": {
3108
+ "type": "array",
3109
+ "items": { "$ref": "#/components/schemas/ContactCategory" }
3110
+ }
3111
+ }
3112
+ }
3113
+ },
3114
+ "400": {
3115
+ "description": "Unable to process the request due to malformed request syntax or invalid parameters.",
3116
+ "content": {
3117
+ "application/json": {
3118
+ "schema": { "$ref": "#/components/schemas/ErrorResponse" }
3119
+ }
3120
+ }
3121
+ },
3122
+ "401": {
3123
+ "description": "The API key couldn't be authorized.",
3124
+ "content": {
3125
+ "application/json": {
3126
+ "schema": { "$ref": "#/components/schemas/ErrorResponse" }
3127
+ }
3128
+ }
3129
+ },
3130
+ "403": {
3131
+ "description": "The supplied credentials don't have permissions to access the resources.",
3132
+ "content": {
3133
+ "application/json": {
3134
+ "schema": { "$ref": "#/components/schemas/ErrorResponse" }
3135
+ }
3136
+ }
3137
+ }
3138
+ }
3139
+ }
3140
+ },
3090
3141
  "/contacts/{contactID}": {
3091
3142
  "get": {
3092
3143
  "tags": ["Contacts"],
@@ -3603,7 +3654,7 @@
3603
3654
  {
3604
3655
  "name": "entityId",
3605
3656
  "in": "query",
3606
- "description": "Filters results to documents associated with a specific entity id. entity ID is not required for “DESKTOP†and “OTHER†. Remaining entities need “entity ID†.",
3657
+ "description": "Filters results to documents associated with a specific entity id. entity ID is not required for DESKTOP and OTHER. Remaining entities need entity ID.",
3607
3658
  "required": false,
3608
3659
  "schema": { "type": "integer", "format": "int64" }
3609
3660
  }
@@ -3682,7 +3733,7 @@
3682
3733
  {
3683
3734
  "name": "entityType",
3684
3735
  "in": "query",
3685
- "description": "Entity type Document is attached to (Bill, Building, Desktop, Inspection, Lease, Portfolio, Prospect, Unit, Vendor, Work Order, Tenant, Owner, Bank Deposit, Asset)",
3736
+ "description": "Entity type Document is attached to (Asset, Bill, Bank Deposit, Building, Desktop, Lease, Owner, Portfolio, Prospect, Prospect Contact, Tenant, Unit, Vendor, Check, Credit, Service Agreement, Journal Entry, Work Order)",
3686
3737
  "required": true,
3687
3738
  "schema": { "type": "string" }
3688
3739
  }
@@ -4424,7 +4475,7 @@
4424
4475
  "get": {
4425
4476
  "tags": ["Leases"],
4426
4477
  "summary": "Retrieve all the adjustments",
4427
- "description": "Retrieves a list of adjustments.<br/><br/><b>Required permission:</b><br/><span class=\"permissionBlock\">GL ACCOUNTS</span> - <code>Read</code>\n<br/><br/><b>Sortable by:</b> <code>leaseid</code>, <code>postdate</code>, <code>id</code>",
4478
+ "description": "Retrieves a list of adjustments.<br/><br/><b>Required permission:</b><br/><span class=\"permissionBlock\">LEASES</span> - <code>Read</code>\n<br/><br/><b>Sortable by:</b> <code>leaseid</code>, <code>postdate</code>, <code>id</code>",
4428
4479
  "operationId": "getLeaseAdjustments",
4429
4480
  "parameters": [
4430
4481
  {
@@ -4511,7 +4562,7 @@
4511
4562
  "application/json": {
4512
4563
  "schema": {
4513
4564
  "type": "array",
4514
- "items": { "$ref": "#/components/schemas/Transaction" }
4565
+ "items": { "$ref": "#/components/schemas/Adjustment" }
4515
4566
  }
4516
4567
  }
4517
4568
  }
@@ -4553,7 +4604,7 @@
4553
4604
  "description": "Created",
4554
4605
  "content": {
4555
4606
  "application/json": {
4556
- "schema": { "$ref": "#/components/schemas/ChargeTx" }
4607
+ "schema": { "$ref": "#/components/schemas/Adjustment" }
4557
4608
  }
4558
4609
  }
4559
4610
  },
@@ -4605,7 +4656,7 @@
4605
4656
  "description": "OK",
4606
4657
  "content": {
4607
4658
  "application/json": {
4608
- "schema": { "$ref": "#/components/schemas/ChargeTx" }
4659
+ "schema": { "$ref": "#/components/schemas/Adjustment" }
4609
4660
  }
4610
4661
  }
4611
4662
  },
@@ -5113,7 +5164,7 @@
5113
5164
  "application/json": {
5114
5165
  "schema": {
5115
5166
  "type": "array",
5116
- "items": { "$ref": "#/components/schemas/Transaction" }
5167
+ "items": { "$ref": "#/components/schemas/Discount" }
5117
5168
  }
5118
5169
  }
5119
5170
  }
@@ -10480,7 +10531,7 @@
10480
10531
  "format": "date-time",
10481
10532
  "description": "Date and time the record was last modified. (Timezone: UTC)"
10482
10533
  },
10483
- "name": { "type": "string", "description": "Name." },
10534
+ "name": { "type": "string", "description": "Bank deposit name." },
10484
10535
  "status": { "type": "string", "description": "Status." }
10485
10536
  },
10486
10537
  "description": "Bank Deposit"
@@ -10700,7 +10751,7 @@
10700
10751
  "leaseID": {
10701
10752
  "type": "integer",
10702
10753
  "format": "int64",
10703
- "description": "Lease id."
10754
+ "description": "Id of the lease associated with this discount."
10704
10755
  },
10705
10756
  "refNo": { "type": "string", "description": "Ref No." }
10706
10757
  },
@@ -10961,6 +11012,16 @@
10961
11012
  "format": "date",
10962
11013
  "description": "Date when the accounting period for the portfolio will close."
10963
11014
  },
11015
+ "defaultBankAccountID": {
11016
+ "type": "integer",
11017
+ "format": "int64",
11018
+ "description": "Portfolio Default Bank Account ID"
11019
+ },
11020
+ "defaultSecdepAccountID": {
11021
+ "type": "integer",
11022
+ "format": "int64",
11023
+ "description": "Portfolio Default Security Deposit Bank Account ID"
11024
+ },
10964
11025
  "doNotPayOwnerDraw": {
10965
11026
  "type": "boolean",
10966
11027
  "example": false,
@@ -10982,6 +11043,11 @@
10982
11043
  "description": "Portfolio owner Ids",
10983
11044
  "items": { "type": "integer", "format": "int64" }
10984
11045
  },
11046
+ "ownerStatementReportID": {
11047
+ "type": "integer",
11048
+ "format": "int64",
11049
+ "description": "Portfolio Owner Statement Report ID"
11050
+ },
10985
11051
  "owners": {
10986
11052
  "type": "array",
10987
11053
  "description": "Portfolio owners.",
@@ -11955,17 +12021,66 @@
11955
12021
  },
11956
12022
  "description": "Work Order"
11957
12023
  },
12024
+ "Adjustment": {
12025
+ "type": "object",
12026
+ "required": ["amount", "date"],
12027
+ "properties": {
12028
+ "amount": {
12029
+ "type": "number",
12030
+ "format": "double",
12031
+ "description": "Amount."
12032
+ },
12033
+ "comments": { "type": "string", "description": "Comments." },
12034
+ "createdBy": {
12035
+ "type": "string",
12036
+ "description": "User who created the record."
12037
+ },
12038
+ "createdDateTime": {
12039
+ "type": "string",
12040
+ "format": "date-time",
12041
+ "description": "Date and time the record was created. (Timezone: UTC)"
12042
+ },
12043
+ "date": {
12044
+ "type": "string",
12045
+ "format": "date",
12046
+ "description": "Post date."
12047
+ },
12048
+ "glAccountID": {
12049
+ "type": "integer",
12050
+ "format": "int64",
12051
+ "description": "Id of the general ledger account associated with this charge."
12052
+ },
12053
+ "id": {
12054
+ "type": "integer",
12055
+ "format": "int64",
12056
+ "description": "Unique identifier."
12057
+ },
12058
+ "lastModifiedBy": {
12059
+ "type": "string",
12060
+ "description": "User who last modified the record."
12061
+ },
12062
+ "lastModifiedDateTime": {
12063
+ "type": "string",
12064
+ "format": "date-time",
12065
+ "description": "Date and time the record was last modified. (Timezone: UTC)"
12066
+ },
12067
+ "leaseID": {
12068
+ "type": "integer",
12069
+ "format": "int64",
12070
+ "description": "Id of the lease associated with this charge."
12071
+ },
12072
+ "portfolioID": {
12073
+ "type": "integer",
12074
+ "format": "int64",
12075
+ "description": "Id of the portfolio associated with this charge."
12076
+ },
12077
+ "refNo": { "type": "string", "description": "Reference number." }
12078
+ },
12079
+ "description": "Adjustment"
12080
+ },
11958
12081
  "Refund": {
11959
12082
  "type": "object",
11960
- "required": [
11961
- "amount",
11962
- "date",
11963
- "destinationAccountID",
11964
- "glAccountID",
11965
- "leaseID",
11966
- "payeePayer",
11967
- "toBePrinted"
11968
- ],
12083
+ "required": ["amount", "date"],
11969
12084
  "properties": {
11970
12085
  "amount": {
11971
12086
  "type": "number",
@@ -11989,12 +12104,12 @@
11989
12104
  "destinationAccountID": {
11990
12105
  "type": "integer",
11991
12106
  "format": "int64",
11992
- "description": "Id of the bank account to send the refund to."
12107
+ "description": "Id of the bank account to send the refund from."
11993
12108
  },
11994
12109
  "glAccountID": {
11995
12110
  "type": "integer",
11996
12111
  "format": "int64",
11997
- "description": "Id of the general ledger associated with the refund."
12112
+ "description": "Id of the general ledger account associated with the refund."
11998
12113
  },
11999
12114
  "id": {
12000
12115
  "type": "integer",
@@ -12148,7 +12263,7 @@
12148
12263
  "frequency": {
12149
12264
  "type": "string",
12150
12265
  "description": "Frequency.",
12151
- "enum": ["WEEKLY", "MONTHLY", "QUARTERLY", "SEMIANNUAL", "YEARLY"]
12266
+ "enum": ["WEEKLY", "MONTHLY", "YEARLY", "MANUALLY"]
12152
12267
  },
12153
12268
  "id": {
12154
12269
  "type": "integer",
@@ -12331,7 +12446,14 @@
12331
12446
  "frequency": {
12332
12447
  "type": "string",
12333
12448
  "description": "Frequency of the auto charge.",
12334
- "enum": ["WEEKLY", "MONTHLY", "QUARTERLY", "SEMIANNUAL", "YEARLY"]
12449
+ "enum": [
12450
+ "WEEKLY",
12451
+ "MONTHLY",
12452
+ "QUARTERLY",
12453
+ "SEMIANUUAL",
12454
+ "ANUUAL",
12455
+ "ANUUAL_ACCRUAL"
12456
+ ]
12335
12457
  },
12336
12458
  "glAccountID": {
12337
12459
  "type": "integer",
@@ -12763,7 +12885,7 @@
12763
12885
  "description": "Indicates if the account balance should be transferred to retained earnings."
12764
12886
  }
12765
12887
  },
12766
- "description": "Account"
12888
+ "description": "General Ledger Account"
12767
12889
  },
12768
12890
  "SaveWorkOrder": {
12769
12891
  "type": "object",
@@ -12918,7 +13040,7 @@
12918
13040
  "contactID": {
12919
13041
  "type": "integer",
12920
13042
  "format": "int64",
12921
- "description": "Owner Contact ID."
13043
+ "description": "Id of the contact associated with this owner draw."
12922
13044
  },
12923
13045
  "date": {
12924
13046
  "type": "string",
@@ -12928,21 +13050,21 @@
12928
13050
  "destinationAccountID": {
12929
13051
  "type": "integer",
12930
13052
  "format": "int64",
12931
- "description": "Bank Account ID to Pay From."
13053
+ "description": "Id of the bank account where the payment will be made from."
12932
13054
  },
12933
13055
  "glAccountID": {
12934
13056
  "type": "integer",
12935
13057
  "format": "int64",
12936
- "description": "GL Account id."
13058
+ "description": "Id of the general ledger account associated with this owner draw."
12937
13059
  },
12938
13060
  "portfolioID": {
12939
13061
  "type": "integer",
12940
13062
  "format": "int64",
12941
- "description": "Portfolio ID."
13063
+ "description": "Id of the portfolio associated with this owner draw."
12942
13064
  },
12943
13065
  "refNo": {
12944
13066
  "type": "string",
12945
- "description": "Check no required when payment method is Hand written check ."
13067
+ "description": "Check no required when payment method is Hand written check (i.e toBePrinted = false)."
12946
13068
  },
12947
13069
  "toBePrinted": {
12948
13070
  "type": "boolean",
@@ -12954,15 +13076,7 @@
12954
13076
  },
12955
13077
  "OwnerContribution": {
12956
13078
  "type": "object",
12957
- "required": [
12958
- "amount",
12959
- "contactID",
12960
- "date",
12961
- "destinationAccountID",
12962
- "glAccountID",
12963
- "paymentType",
12964
- "portfolioID"
12965
- ],
13079
+ "required": ["amount", "date"],
12966
13080
  "properties": {
12967
13081
  "amount": {
12968
13082
  "type": "number",
@@ -13830,6 +13944,11 @@
13830
13944
  "description": "Id of the user who last modified the portfolio information."
13831
13945
  },
13832
13946
  "name": { "type": "string", "description": "Portfolio name." },
13947
+ "ownerStatementReportID": {
13948
+ "type": "integer",
13949
+ "format": "int64",
13950
+ "description": "Portfolio Owner Statement Report ID"
13951
+ },
13833
13952
  "owners": {
13834
13953
  "type": "array",
13835
13954
  "description": "List of portfolio owners.",
@@ -14188,9 +14307,7 @@
14188
14307
  "date",
14189
14308
  "destinationAccountID",
14190
14309
  "glAccountID",
14191
- "leaseID",
14192
- "toBePrinted",
14193
- "toPrimaryTenant"
14310
+ "leaseID"
14194
14311
  ],
14195
14312
  "properties": {
14196
14313
  "amount": {
@@ -14207,31 +14324,31 @@
14207
14324
  "destinationAccountID": {
14208
14325
  "type": "integer",
14209
14326
  "format": "int64",
14210
- "description": "Bank GL Account to pay from."
14327
+ "description": "Id of the bank account to send the refund from."
14211
14328
  },
14212
14329
  "glAccountID": {
14213
14330
  "type": "integer",
14214
14331
  "format": "int64",
14215
- "description": "Refund GL Account."
14332
+ "description": "Id of the general ledger account associated with the refund."
14216
14333
  },
14217
14334
  "leaseID": {
14218
14335
  "type": "integer",
14219
14336
  "format": "int64",
14220
- "description": "Lease id to apply payment."
14337
+ "description": "Id of the lease associated with the refund."
14221
14338
  },
14222
- "refNo": { "type": "string", "description": "Payment Ref No." },
14339
+ "refNo": { "type": "string", "description": "Reference number." },
14223
14340
  "toBePrinted": {
14224
14341
  "type": "boolean",
14225
14342
  "example": false,
14226
- "description": "Bank GL Account to pay from."
14343
+ "description": "Indicates if the check is to be printed."
14227
14344
  },
14228
14345
  "toPrimaryTenant": {
14229
14346
  "type": "boolean",
14230
14347
  "example": false,
14231
- "description": "Bank GL Account to pay from."
14348
+ "description": "Indicates if refund is for primary contact only"
14232
14349
  }
14233
14350
  },
14234
- "description": "Bank Deposit for Request"
14351
+ "description": "Refund for Request"
14235
14352
  },
14236
14353
  "ProspectStatus": {
14237
14354
  "type": "object",
@@ -14682,113 +14799,6 @@
14682
14799
  },
14683
14800
  "description": "Bank for Request"
14684
14801
  },
14685
- "Transaction": {
14686
- "type": "object",
14687
- "properties": {
14688
- "amount": {
14689
- "type": "number",
14690
- "format": "double",
14691
- "description": "Transaction amount."
14692
- },
14693
- "comments": { "type": "string", "description": "Comments." },
14694
- "contactID": {
14695
- "type": "integer",
14696
- "format": "int64",
14697
- "description": "Id of the contact associated with this transaction."
14698
- },
14699
- "createdBy": {
14700
- "type": "string",
14701
- "description": "User who created the record."
14702
- },
14703
- "createdDateTime": {
14704
- "type": "string",
14705
- "format": "date-time",
14706
- "description": "Date and time the record was created. (Timezone: UTC)"
14707
- },
14708
- "date": {
14709
- "type": "string",
14710
- "format": "date",
14711
- "description": "Transaction date."
14712
- },
14713
- "depositDate": {
14714
- "type": "string",
14715
- "format": "date",
14716
- "description": "Transaction deposit date."
14717
- },
14718
- "destinationAccountID": {
14719
- "type": "integer",
14720
- "format": "int64",
14721
- "description": "Id of the bank account associated with this transaction."
14722
- },
14723
- "glAccountID": {
14724
- "type": "integer",
14725
- "format": "int64",
14726
- "description": "Id of the general ledger account associated with this transaction."
14727
- },
14728
- "id": {
14729
- "type": "integer",
14730
- "format": "int64",
14731
- "description": "Unique identifier."
14732
- },
14733
- "lastModifiedBy": {
14734
- "type": "string",
14735
- "description": "User who last modified the record."
14736
- },
14737
- "lastModifiedDateTime": {
14738
- "type": "string",
14739
- "format": "date-time",
14740
- "description": "Date and time the record was last modified. (Timezone: UTC)"
14741
- },
14742
- "leaseID": {
14743
- "type": "integer",
14744
- "format": "int64",
14745
- "description": "Id of the lease associated with this transaction."
14746
- },
14747
- "payeePayer": {
14748
- "type": "string",
14749
- "description": "Name of the payee or payer."
14750
- },
14751
- "paymentMethod": {
14752
- "type": "string",
14753
- "description": "Payment method."
14754
- },
14755
- "paymentType": {
14756
- "type": "string",
14757
- "description": "Payment type.",
14758
- "enum": [
14759
- "CHECK",
14760
- "CHECK21",
14761
- "CASHIERS_CHECK",
14762
- "CREDIT_CARD",
14763
- "CASH",
14764
- "MONEY_ORDER",
14765
- "OTHER",
14766
- "CLICKPAY",
14767
- "SECTION8",
14768
- "EPAY",
14769
- "ECHECK",
14770
- "NACHA",
14771
- "RENTMONEY",
14772
- "PUBLIC_ASSISTANCE"
14773
- ]
14774
- },
14775
- "portfolioID": {
14776
- "type": "integer",
14777
- "format": "int64",
14778
- "description": "Id of the portfolio associated with this transaction."
14779
- },
14780
- "refNo": {
14781
- "type": "string",
14782
- "description": "Transaction reference number."
14783
- },
14784
- "toBePrinted": {
14785
- "type": "boolean",
14786
- "example": false,
14787
- "description": "Indicates if a check should be printed for this transaction."
14788
- }
14789
- },
14790
- "description": "Transaction"
14791
- },
14792
14802
  "ManagementSettings": {
14793
14803
  "type": "object",
14794
14804
  "properties": {
@@ -14837,9 +14847,9 @@
14837
14847
  "leaseID": {
14838
14848
  "type": "integer",
14839
14849
  "format": "int64",
14840
- "description": "Lease id."
14850
+ "description": "Id of the lease associated with the Adjustment."
14841
14851
  },
14842
- "refNo": { "type": "string", "description": "Ref No." }
14852
+ "refNo": { "type": "string", "description": "Reference number." }
14843
14853
  },
14844
14854
  "description": "Adjustment for Request"
14845
14855
  },
@@ -14931,6 +14941,10 @@
14931
14941
  "format": "date",
14932
14942
  "description": "Date of Birth."
14933
14943
  },
14944
+ "category": {
14945
+ "type": "string",
14946
+ "description": "Indicate contact category. Send empty \"\" value if contact is Uncategorized"
14947
+ },
14934
14948
  "comments": { "type": "string", "description": "Description." },
14935
14949
  "company": {
14936
14950
  "type": "string",
@@ -15148,6 +15162,18 @@
15148
15162
  },
15149
15163
  "description": "BillSplit"
15150
15164
  },
15165
+ "ContactCategory": {
15166
+ "type": "object",
15167
+ "properties": {
15168
+ "categoryName": { "type": "string", "description": "Category name." },
15169
+ "id": {
15170
+ "type": "integer",
15171
+ "format": "int64",
15172
+ "description": "Unique identifier."
15173
+ }
15174
+ },
15175
+ "description": "ContactCategory"
15176
+ },
15151
15177
  "CheckSplit": {
15152
15178
  "type": "object",
15153
15179
  "required": ["portfolioID"],
@@ -15194,6 +15220,11 @@
15194
15220
  "format": "int64",
15195
15221
  "description": "Id of the building associated with this inspection."
15196
15222
  },
15223
+ "closedDateAndTime": {
15224
+ "type": "string",
15225
+ "format": "date-time",
15226
+ "description": "Date and time the inspection closed (customer time zone)."
15227
+ },
15197
15228
  "comment": {
15198
15229
  "type": "string",
15199
15230
  "description": "Inspection comments."
@@ -15222,6 +15253,11 @@
15222
15253
  "description": "List of inspection areas.",
15223
15254
  "items": { "$ref": "#/components/schemas/InspectionArea" }
15224
15255
  },
15256
+ "inspectorID": {
15257
+ "type": "integer",
15258
+ "format": "int64",
15259
+ "description": "Inspector ID"
15260
+ },
15225
15261
  "lastModifiedBy": {
15226
15262
  "type": "string",
15227
15263
  "description": "User who last modified the record."
@@ -15231,6 +15267,15 @@
15231
15267
  "format": "date-time",
15232
15268
  "description": "Date and time the record was last modified. (Timezone: UTC)"
15233
15269
  },
15270
+ "leaseID": {
15271
+ "type": "integer",
15272
+ "format": "int64",
15273
+ "description": "Id of the lease associated with this inspection."
15274
+ },
15275
+ "notesToInspector": {
15276
+ "type": "string",
15277
+ "description": "Notes to Inspector"
15278
+ },
15234
15279
  "number": {
15235
15280
  "type": "integer",
15236
15281
  "format": "int32",
@@ -15257,7 +15302,7 @@
15257
15302
  },
15258
15303
  "OwnerDraw": {
15259
15304
  "type": "object",
15260
- "required": ["amount", "date", "glAccountID"],
15305
+ "required": ["amount", "date"],
15261
15306
  "properties": {
15262
15307
  "amount": {
15263
15308
  "type": "number",
@@ -15636,7 +15681,7 @@
15636
15681
  "contactID": {
15637
15682
  "type": "integer",
15638
15683
  "format": "int64",
15639
- "description": "Owner Contact ID."
15684
+ "description": "Id of the contact associated with this owner contribution."
15640
15685
  },
15641
15686
  "date": {
15642
15687
  "type": "string",
@@ -15646,12 +15691,12 @@
15646
15691
  "destinationAccountID": {
15647
15692
  "type": "integer",
15648
15693
  "format": "int64",
15649
- "description": "Bank Account ID to Deposit."
15694
+ "description": "Id of the bank account where the payment will be deposited."
15650
15695
  },
15651
15696
  "glAccountID": {
15652
15697
  "type": "integer",
15653
15698
  "format": "int64",
15654
- "description": "GL Account ID."
15699
+ "description": "Id of the general ledger account associated with this owner contribution."
15655
15700
  },
15656
15701
  "paymentType": {
15657
15702
  "type": "string",
@@ -15676,9 +15721,9 @@
15676
15721
  "portfolioID": {
15677
15722
  "type": "integer",
15678
15723
  "format": "int64",
15679
- "description": "Portfolio id to apply payment."
15724
+ "description": "Id of the portfolio to apply the payment to."
15680
15725
  },
15681
- "refNo": { "type": "string", "description": "Charge Ref No." }
15726
+ "refNo": { "type": "string", "description": "Reference No." }
15682
15727
  },
15683
15728
  "description": "Charge for request"
15684
15729
  },
@@ -15880,7 +15925,7 @@
15880
15925
  "contactID": {
15881
15926
  "type": "integer",
15882
15927
  "format": "int64",
15883
- "description": "Payer contact ID."
15928
+ "description": "Id of the contact associated with lease payment"
15884
15929
  },
15885
15930
  "date": {
15886
15931
  "type": "string",
@@ -15890,21 +15935,21 @@
15890
15935
  "depositDate": {
15891
15936
  "type": "string",
15892
15937
  "format": "date",
15893
- "description": "Payment Deposit Date."
15938
+ "description": "Payment deposit date."
15894
15939
  },
15895
15940
  "destinationAccountID": {
15896
15941
  "type": "integer",
15897
15942
  "format": "int64",
15898
- "description": "Bank Account ID to Deposit."
15943
+ "description": "Bank GL account ID to deposit."
15899
15944
  },
15900
15945
  "leaseID": {
15901
15946
  "type": "integer",
15902
15947
  "format": "int64",
15903
- "description": "Lease ID to apply payment."
15948
+ "description": "Id of the lease associated with this payment."
15904
15949
  },
15905
15950
  "paymentType": {
15906
15951
  "type": "string",
15907
- "description": "Payment Type.",
15952
+ "description": "Payment type.",
15908
15953
  "enum": [
15909
15954
  "CHECK",
15910
15955
  "CHECK21",
@@ -15922,7 +15967,10 @@
15922
15967
  "PUBLIC_ASSISTANCE"
15923
15968
  ]
15924
15969
  },
15925
- "refNo": { "type": "string", "description": "Payment Ref No." }
15970
+ "refNo": {
15971
+ "type": "string",
15972
+ "description": "Payment reference number"
15973
+ }
15926
15974
  },
15927
15975
  "description": "Tenant Payment for Request"
15928
15976
  },
@@ -16116,10 +16164,6 @@
16116
16164
  "format": "double",
16117
16165
  "description": "The amount paid for the charge."
16118
16166
  },
16119
- "chargeStatus": {
16120
- "type": "string",
16121
- "description": "Status of the charge."
16122
- },
16123
16167
  "comments": { "type": "string", "description": "Comments." },
16124
16168
  "createdBy": {
16125
16169
  "type": "string",
@@ -16174,11 +16218,7 @@
16174
16218
  "format": "int64",
16175
16219
  "description": "Id of the portfolio associated with this charge."
16176
16220
  },
16177
- "refNo": { "type": "string", "description": "Reference number." },
16178
- "status": {
16179
- "type": "string",
16180
- "description": "The status of the lease."
16181
- }
16221
+ "refNo": { "type": "string", "description": "Reference number." }
16182
16222
  },
16183
16223
  "description": "Charge Transaction"
16184
16224
  },
@@ -16189,7 +16229,7 @@
16189
16229
  "bankGLAccountID": {
16190
16230
  "type": "integer",
16191
16231
  "format": "int64",
16192
- "description": "Bank Account Number."
16232
+ "description": "Bank general ledger account ID."
16193
16233
  },
16194
16234
  "listOfTxIDs": {
16195
16235
  "type": "string",