@teamleader/focus-api-specification 1.100.0 → 1.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,7 +3,7 @@ info:
3
3
  title: Teamleader API
4
4
  description: This is the documentation of the Teamleader Focus API. If you have any feedback, or are you missing functionality to support your use case? Let us know via [api@teamleader.eu](mailto:api@teamleader.eu).
5
5
  contact: {}
6
- version: 1.100.0
6
+ version: 1.102.0
7
7
  servers:
8
8
  - url: https://api.focus.teamleader.eu
9
9
  variables: {}
@@ -9930,6 +9930,13 @@ paths:
9930
9930
  - title: TypeAndId
9931
9931
  type: object
9932
9932
  properties: *ref_1
9933
+ group:
9934
+ type: object
9935
+ nullable: true
9936
+ allOf:
9937
+ - title: TypeAndId
9938
+ type: object
9939
+ properties: *ref_1
9933
9940
  attendees:
9934
9941
  type: array
9935
9942
  items:
@@ -10154,6 +10161,13 @@ paths:
10154
10161
  - title: TypeAndId
10155
10162
  type: object
10156
10163
  properties: *ref_1
10164
+ group:
10165
+ type: object
10166
+ nullable: true
10167
+ allOf:
10168
+ - title: TypeAndId
10169
+ type: object
10170
+ properties: *ref_1
10157
10171
  deal:
10158
10172
  type: object
10159
10173
  nullable: true
@@ -15830,31 +15844,9 @@ paths:
15830
15844
  requestBody:
15831
15845
  content:
15832
15846
  application/json:
15833
- example:
15834
- filter:
15835
- term: search terms
15836
- source_types:
15837
- - incomingInvoice
15838
- - incomingCreditNote
15839
- - receipt
15840
- review_statuses:
15841
- - pending
15842
- - approved
15843
- - refused
15844
- bookkeeping_statuses:
15845
- - sent
15846
- - not_sent
15847
- document_date:
15848
- operator: is_empty
15849
- value: YYYY-MM-DD
15850
- start: YYYY-MM-DD
15851
- end: YYYY-MM-DD
15852
- page:
15853
- size: 20
15854
- number: 1
15855
15847
  schema:
15856
15848
  type: object
15857
- properties:
15849
+ properties: &ref_440
15858
15850
  filter:
15859
15851
  type: object
15860
15852
  properties:
@@ -15887,6 +15879,33 @@ paths:
15887
15879
  enum:
15888
15880
  - sent
15889
15881
  - not_sent
15882
+ payment_statuses:
15883
+ type: array
15884
+ description: Filters by one or more payment statuses
15885
+ items:
15886
+ type: string
15887
+ enum:
15888
+ - paid
15889
+ - unpaid
15890
+ department_ids:
15891
+ type: array
15892
+ description: Filters by one or more department IDs
15893
+ items:
15894
+ type: string
15895
+ supplier:
15896
+ type: object
15897
+ description: Filters by a specific supplier
15898
+ properties:
15899
+ type:
15900
+ type: string
15901
+ enum:
15902
+ - company
15903
+ - contact
15904
+ id:
15905
+ type: string
15906
+ required:
15907
+ - type
15908
+ - id
15890
15909
  document_date:
15891
15910
  type: object
15892
15911
  properties:
@@ -15909,6 +15928,29 @@ paths:
15909
15928
  description: Required if operator is `between`
15910
15929
  required:
15911
15930
  - operator
15931
+ paid_at:
15932
+ type: object
15933
+ description: Filters by payment date
15934
+ properties:
15935
+ operator:
15936
+ type: string
15937
+ enum:
15938
+ - is_empty
15939
+ - between
15940
+ - equals
15941
+ - before
15942
+ - after
15943
+ value:
15944
+ type: string
15945
+ description: Required if operator is `equals`, `before`, or `after`
15946
+ start:
15947
+ type: string
15948
+ description: Required if operator is `between`
15949
+ end:
15950
+ type: string
15951
+ description: Required if operator is `between`
15952
+ required:
15953
+ - operator
15912
15954
  page:
15913
15955
  type: object
15914
15956
  properties:
@@ -15918,6 +15960,58 @@ paths:
15918
15960
  number:
15919
15961
  type: number
15920
15962
  default: 1
15963
+ sort:
15964
+ type: array
15965
+ items:
15966
+ allOf:
15967
+ - title: Sort
15968
+ required: *ref_3
15969
+ type: object
15970
+ properties: *ref_4
15971
+ - type: object
15972
+ properties:
15973
+ field:
15974
+ enum:
15975
+ - document_date
15976
+ - due_date
15977
+ - supplier_name
15978
+ example:
15979
+ filter:
15980
+ term: search terms
15981
+ source_types:
15982
+ - incomingInvoice
15983
+ - incomingCreditNote
15984
+ - receipt
15985
+ review_statuses:
15986
+ - pending
15987
+ - approved
15988
+ - refused
15989
+ bookkeeping_statuses:
15990
+ - sent
15991
+ - not_sent
15992
+ payment_statuses:
15993
+ - paid
15994
+ - unpaid
15995
+ department_ids:
15996
+ - 018fcef1-4f96-7349-9f57-1c7857023c42
15997
+ supplier:
15998
+ type: company
15999
+ id: f29abf48-337d-44b4-aad4-585f5277a456
16000
+ document_date:
16001
+ operator: is_empty
16002
+ value: YYYY-MM-DD
16003
+ start: YYYY-MM-DD
16004
+ end: YYYY-MM-DD
16005
+ paid_at:
16006
+ operator: between
16007
+ start: YYYY-MM-DD
16008
+ end: YYYY-MM-DD
16009
+ page:
16010
+ size: 20
16011
+ number: 1
16012
+ sort:
16013
+ - field: document_date
16014
+ order: desc
15921
16015
  responses:
15922
16016
  '200':
15923
16017
  description: OK
@@ -15926,7 +16020,7 @@ paths:
15926
16020
  application/json:
15927
16021
  schema:
15928
16022
  type: object
15929
- properties:
16023
+ properties: &ref_441
15930
16024
  data:
15931
16025
  type: array
15932
16026
  items:
@@ -17448,7 +17542,7 @@ paths:
17448
17542
  allOf:
17449
17543
  - title: productCategories.listrequest
17450
17544
  type: object
17451
- properties: &ref_440
17545
+ properties: &ref_442
17452
17546
  filter:
17453
17547
  type: object
17454
17548
  properties:
@@ -17473,7 +17567,7 @@ paths:
17473
17567
  allOf:
17474
17568
  - title: productCategories.listresponse
17475
17569
  type: object
17476
- properties: &ref_441
17570
+ properties: &ref_443
17477
17571
  data:
17478
17572
  type: array
17479
17573
  items:
@@ -17534,7 +17628,7 @@ paths:
17534
17628
  allOf:
17535
17629
  - title: products.listrequest
17536
17630
  type: object
17537
- properties: &ref_442
17631
+ properties: &ref_444
17538
17632
  filter:
17539
17633
  type: object
17540
17634
  properties:
@@ -17584,7 +17678,7 @@ paths:
17584
17678
  allOf:
17585
17679
  - title: products.listresponse
17586
17680
  type: object
17587
- properties: &ref_443
17681
+ properties: &ref_445
17588
17682
  data:
17589
17683
  type: array
17590
17684
  items:
@@ -17701,10 +17795,10 @@ paths:
17701
17795
  schema:
17702
17796
  allOf:
17703
17797
  - title: products.inforequest
17704
- required: &ref_444
17798
+ required: &ref_446
17705
17799
  - id
17706
17800
  type: object
17707
- properties: &ref_445
17801
+ properties: &ref_447
17708
17802
  id:
17709
17803
  type: string
17710
17804
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -17729,7 +17823,7 @@ paths:
17729
17823
  allOf:
17730
17824
  - title: products.inforesponse
17731
17825
  type: object
17732
- properties: &ref_446
17826
+ properties: &ref_448
17733
17827
  data:
17734
17828
  type: object
17735
17829
  properties:
@@ -18020,11 +18114,11 @@ paths:
18020
18114
  example: d905ff57-e866-0f59-9d1e-1fd4538bfae1
18021
18115
  price:
18022
18116
  title: ProductPriceWrite
18023
- required: &ref_447
18117
+ required: &ref_449
18024
18118
  - amount
18025
18119
  - currency
18026
18120
  type: object
18027
- properties: &ref_448
18121
+ properties: &ref_450
18028
18122
  amount:
18029
18123
  type: number
18030
18124
  example: 100
@@ -18051,11 +18145,11 @@ paths:
18051
18145
  description: Only available when stock management feature is enabled
18052
18146
  allOf:
18053
18147
  - title: StockThreshold
18054
- required: &ref_449
18148
+ required: &ref_451
18055
18149
  - minimum
18056
18150
  - action
18057
18151
  type: object
18058
- properties: &ref_450
18152
+ properties: &ref_452
18059
18153
  minimum:
18060
18154
  type: number
18061
18155
  description: Cannot be negative
@@ -18101,7 +18195,7 @@ paths:
18101
18195
  allOf:
18102
18196
  - title: products.addresponse
18103
18197
  type: object
18104
- properties: &ref_451
18198
+ properties: &ref_453
18105
18199
  data:
18106
18200
  title: TypeAndId
18107
18201
  type: object
@@ -18130,10 +18224,10 @@ paths:
18130
18224
  schema:
18131
18225
  allOf:
18132
18226
  - title: products.updaterequest
18133
- required: &ref_452
18227
+ required: &ref_454
18134
18228
  - id
18135
18229
  type: object
18136
- properties: &ref_453
18230
+ properties: &ref_455
18137
18231
  id:
18138
18232
  type: string
18139
18233
  example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
@@ -18284,10 +18378,10 @@ paths:
18284
18378
  schema:
18285
18379
  allOf:
18286
18380
  - title: products.deleterequest
18287
- required: &ref_454
18381
+ required: &ref_456
18288
18382
  - id
18289
18383
  type: object
18290
- properties: &ref_455
18384
+ properties: &ref_457
18291
18385
  id:
18292
18386
  type: string
18293
18387
  example: 71e91f91-b222-033f-8c7e-59bcc1521e3d
@@ -18330,7 +18424,7 @@ paths:
18330
18424
  allOf:
18331
18425
  - title: unitsOfMeasure.listresponse
18332
18426
  type: object
18333
- properties: &ref_456
18427
+ properties: &ref_458
18334
18428
  data:
18335
18429
  type: array
18336
18430
  items:
@@ -18363,7 +18457,7 @@ paths:
18363
18457
  allOf:
18364
18458
  - title: priceLists.listrequest
18365
18459
  type: object
18366
- properties: &ref_457
18460
+ properties: &ref_459
18367
18461
  filter:
18368
18462
  type: object
18369
18463
  properties:
@@ -18392,7 +18486,7 @@ paths:
18392
18486
  allOf:
18393
18487
  - title: priceLists.listresponse
18394
18488
  type: object
18395
- properties: &ref_458
18489
+ properties: &ref_460
18396
18490
  data:
18397
18491
  type: array
18398
18492
  items:
@@ -18439,7 +18533,7 @@ paths:
18439
18533
  allOf:
18440
18534
  - title: projects.listrequest
18441
18535
  type: object
18442
- properties: &ref_459
18536
+ properties: &ref_461
18443
18537
  filter:
18444
18538
  type: object
18445
18539
  properties:
@@ -18524,7 +18618,7 @@ paths:
18524
18618
  allOf:
18525
18619
  - title: projects.listresponse
18526
18620
  type: object
18527
- properties: &ref_460
18621
+ properties: &ref_462
18528
18622
  data:
18529
18623
  type: array
18530
18624
  items:
@@ -18759,10 +18853,10 @@ paths:
18759
18853
  schema:
18760
18854
  allOf:
18761
18855
  - title: projects.inforequest
18762
- required: &ref_461
18856
+ required: &ref_463
18763
18857
  - id
18764
18858
  type: object
18765
- properties: &ref_462
18859
+ properties: &ref_464
18766
18860
  id:
18767
18861
  type: string
18768
18862
  example: 8a04371b-2ffb-407b-9b24-d5b5452009c7
@@ -18781,7 +18875,7 @@ paths:
18781
18875
  allOf:
18782
18876
  - title: projects.inforesponse
18783
18877
  type: object
18784
- properties: &ref_463
18878
+ properties: &ref_465
18785
18879
  data:
18786
18880
  type: object
18787
18881
  properties:
@@ -19017,13 +19111,13 @@ paths:
19017
19111
  schema:
19018
19112
  allOf:
19019
19113
  - title: projects.createrequest
19020
- required: &ref_464
19114
+ required: &ref_466
19021
19115
  - title
19022
19116
  - starts_on
19023
19117
  - milestones
19024
19118
  - participants
19025
19119
  type: object
19026
- properties: &ref_465
19120
+ properties: &ref_467
19027
19121
  title:
19028
19122
  type: string
19029
19123
  example: New company website
@@ -19171,10 +19265,10 @@ paths:
19171
19265
  schema:
19172
19266
  allOf:
19173
19267
  - title: projects.updaterequest
19174
- required: &ref_466
19268
+ required: &ref_468
19175
19269
  - id
19176
19270
  type: object
19177
- properties: &ref_467
19271
+ properties: &ref_469
19178
19272
  id:
19179
19273
  type: string
19180
19274
  example: dcc2e8ed-51be-4cb6-9c01-034aedac86fd
@@ -19272,10 +19366,10 @@ paths:
19272
19366
  schema:
19273
19367
  allOf:
19274
19368
  - title: projects.closerequest
19275
- required: &ref_468
19369
+ required: &ref_470
19276
19370
  - id
19277
19371
  type: object
19278
- properties: &ref_469
19372
+ properties: &ref_471
19279
19373
  id:
19280
19374
  type: string
19281
19375
  example: 01548b10-4932-4a18-8a89-005ad09db2c8
@@ -19338,10 +19432,10 @@ paths:
19338
19432
  schema:
19339
19433
  allOf:
19340
19434
  - title: projects.deleterequest
19341
- required: &ref_470
19435
+ required: &ref_472
19342
19436
  - id
19343
19437
  type: object
19344
- properties: &ref_471
19438
+ properties: &ref_473
19345
19439
  id:
19346
19440
  type: string
19347
19441
  example: 01548b10-4932-4a18-8a89-005ad09db2c8
@@ -19371,11 +19465,11 @@ paths:
19371
19465
  schema:
19372
19466
  allOf:
19373
19467
  - title: projects.addParticipantrequest
19374
- required: &ref_472
19468
+ required: &ref_474
19375
19469
  - id
19376
19470
  - participant
19377
19471
  type: object
19378
- properties: &ref_473
19472
+ properties: &ref_475
19379
19473
  id:
19380
19474
  type: string
19381
19475
  example: 8dbfa9db-c53f-410c-97d3-755b19685809
@@ -19421,11 +19515,11 @@ paths:
19421
19515
  schema:
19422
19516
  allOf:
19423
19517
  - title: projects.updateParticipantrequest
19424
- required: &ref_474
19518
+ required: &ref_476
19425
19519
  - id
19426
19520
  - role
19427
19521
  type: object
19428
- properties: &ref_475
19522
+ properties: &ref_477
19429
19523
  id:
19430
19524
  type: string
19431
19525
  example: 55fbe14f-7399-48e5-b4e0-64b7f5c50451
@@ -19472,7 +19566,7 @@ paths:
19472
19566
  allOf:
19473
19567
  - title: milestones.listrequest
19474
19568
  type: object
19475
- properties: &ref_476
19569
+ properties: &ref_478
19476
19570
  filter:
19477
19571
  type: object
19478
19572
  properties:
@@ -19559,7 +19653,7 @@ paths:
19559
19653
  allOf:
19560
19654
  - title: milestones.listresponse
19561
19655
  type: object
19562
- properties: &ref_477
19656
+ properties: &ref_479
19563
19657
  data:
19564
19658
  type: array
19565
19659
  items:
@@ -19783,10 +19877,10 @@ paths:
19783
19877
  schema:
19784
19878
  allOf:
19785
19879
  - title: milestones.inforequest
19786
- required: &ref_478
19880
+ required: &ref_480
19787
19881
  - id
19788
19882
  type: object
19789
- properties: &ref_479
19883
+ properties: &ref_481
19790
19884
  id:
19791
19885
  type: string
19792
19886
  example: 64349fa2-6ca2-4b19-82e6-d3258ceab2d8
@@ -19805,7 +19899,7 @@ paths:
19805
19899
  allOf:
19806
19900
  - title: milestones.inforesponse
19807
19901
  type: object
19808
- properties: &ref_480
19902
+ properties: &ref_482
19809
19903
  data:
19810
19904
  type: object
19811
19905
  properties:
@@ -19999,13 +20093,13 @@ paths:
19999
20093
  schema:
20000
20094
  allOf:
20001
20095
  - title: milestones.createrequest
20002
- required: &ref_481
20096
+ required: &ref_483
20003
20097
  - project_id
20004
20098
  - due_on
20005
20099
  - name
20006
20100
  - responsible_user_id
20007
20101
  type: object
20008
- properties: &ref_482
20102
+ properties: &ref_484
20009
20103
  project_id:
20010
20104
  type: string
20011
20105
  example: 1c159f98-4b07-438a-9f42-fb4206b9530d
@@ -20035,7 +20129,7 @@ paths:
20035
20129
  type: object
20036
20130
  properties: *ref_24
20037
20131
  description: ''
20038
- oneOf: &ref_483
20132
+ oneOf: &ref_485
20039
20133
  - type: object
20040
20134
  title: With budget
20041
20135
  properties:
@@ -20103,7 +20197,7 @@ paths:
20103
20197
  allOf:
20104
20198
  - title: milestones.createresponse
20105
20199
  type: object
20106
- properties: &ref_484
20200
+ properties: &ref_486
20107
20201
  data:
20108
20202
  title: TypeAndId
20109
20203
  type: object
@@ -20132,10 +20226,10 @@ paths:
20132
20226
  schema:
20133
20227
  allOf:
20134
20228
  - title: milestones.updaterequest
20135
- required: &ref_485
20229
+ required: &ref_487
20136
20230
  - id
20137
20231
  type: object
20138
- properties: &ref_486
20232
+ properties: &ref_488
20139
20233
  id:
20140
20234
  type: string
20141
20235
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20212,10 +20306,10 @@ paths:
20212
20306
  schema:
20213
20307
  allOf:
20214
20308
  - title: milestones.deleterequest
20215
- required: &ref_487
20309
+ required: &ref_489
20216
20310
  - id
20217
20311
  type: object
20218
- properties: &ref_488
20312
+ properties: &ref_490
20219
20313
  id:
20220
20314
  type: string
20221
20315
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20245,10 +20339,10 @@ paths:
20245
20339
  schema:
20246
20340
  allOf:
20247
20341
  - title: milestones.closerequest
20248
- required: &ref_489
20342
+ required: &ref_491
20249
20343
  - id
20250
20344
  type: object
20251
- properties: &ref_490
20345
+ properties: &ref_492
20252
20346
  id:
20253
20347
  type: string
20254
20348
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20278,10 +20372,10 @@ paths:
20278
20372
  schema:
20279
20373
  allOf:
20280
20374
  - title: milestones.openrequest
20281
- required: &ref_491
20375
+ required: &ref_493
20282
20376
  - id
20283
20377
  type: object
20284
- properties: &ref_492
20378
+ properties: &ref_494
20285
20379
  id:
20286
20380
  type: string
20287
20381
  example: 67e80ad8-d14f-4510-a2bd-a4c6aa578c37
@@ -20312,7 +20406,7 @@ paths:
20312
20406
  allOf:
20313
20407
  - title: projects-v2.listrequest
20314
20408
  type: object
20315
- properties: &ref_493
20409
+ properties: &ref_495
20316
20410
  filter:
20317
20411
  type: object
20318
20412
  properties:
@@ -20450,7 +20544,7 @@ paths:
20450
20544
  allOf:
20451
20545
  - title: projects-v2.listresponse
20452
20546
  type: object
20453
- properties: &ref_494
20547
+ properties: &ref_496
20454
20548
  data:
20455
20549
  type: array
20456
20550
  items:
@@ -20939,10 +21033,10 @@ paths:
20939
21033
  schema:
20940
21034
  allOf:
20941
21035
  - title: projects-v2.inforequest
20942
- required: &ref_495
21036
+ required: &ref_497
20943
21037
  - id
20944
21038
  type: object
20945
- properties: &ref_496
21039
+ properties: &ref_498
20946
21040
  id:
20947
21041
  type: string
20948
21042
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -20967,7 +21061,7 @@ paths:
20967
21061
  allOf:
20968
21062
  - title: projects.inforesponse1
20969
21063
  type: object
20970
- properties: &ref_497
21064
+ properties: &ref_499
20971
21065
  data:
20972
21066
  type: object
20973
21067
  properties:
@@ -21472,10 +21566,10 @@ paths:
21472
21566
  schema:
21473
21567
  allOf:
21474
21568
  - title: projects-v2.createrequest
21475
- required: &ref_498
21569
+ required: &ref_500
21476
21570
  - title
21477
21571
  type: object
21478
- properties: &ref_499
21572
+ properties: &ref_501
21479
21573
  title:
21480
21574
  type: string
21481
21575
  example: My cool new project
@@ -21792,10 +21886,10 @@ paths:
21792
21886
  schema:
21793
21887
  allOf:
21794
21888
  - title: projects-v2.updaterequest
21795
- required: &ref_500
21889
+ required: &ref_502
21796
21890
  - id
21797
21891
  type: object
21798
- properties: &ref_501
21892
+ properties: &ref_503
21799
21893
  id:
21800
21894
  type: string
21801
21895
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -21982,11 +22076,11 @@ paths:
21982
22076
  schema:
21983
22077
  allOf:
21984
22078
  - title: projects-v2.closerequest
21985
- required: &ref_502
22079
+ required: &ref_504
21986
22080
  - id
21987
22081
  - closing_strategy
21988
22082
  type: object
21989
- properties: &ref_503
22083
+ properties: &ref_505
21990
22084
  id:
21991
22085
  type: string
21992
22086
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22052,11 +22146,11 @@ paths:
22052
22146
  schema:
22053
22147
  allOf:
22054
22148
  - title: projects-v2.duplicaterequest
22055
- required: &ref_504
22149
+ required: &ref_506
22056
22150
  - id
22057
22151
  - title
22058
22152
  type: object
22059
- properties: &ref_505
22153
+ properties: &ref_507
22060
22154
  id:
22061
22155
  type: string
22062
22156
  example: 81df9996-6d2c-4844-86d6-202c08d2837e
@@ -22080,7 +22174,7 @@ paths:
22080
22174
  allOf:
22081
22175
  - title: projects-v2.duplicateresponse
22082
22176
  type: object
22083
- properties: &ref_506
22177
+ properties: &ref_508
22084
22178
  data:
22085
22179
  title: TypeAndId
22086
22180
  type: object
@@ -22109,11 +22203,11 @@ paths:
22109
22203
  schema:
22110
22204
  allOf:
22111
22205
  - title: projects-v2.deleterequest
22112
- required: &ref_507
22206
+ required: &ref_509
22113
22207
  - id
22114
22208
  - delete_strategy
22115
22209
  type: object
22116
- properties: &ref_508
22210
+ properties: &ref_510
22117
22211
  id:
22118
22212
  type: string
22119
22213
  example: 81df9996-6d2c-4844-86d6-202c08d2837e
@@ -22152,11 +22246,11 @@ paths:
22152
22246
  schema:
22153
22247
  allOf:
22154
22248
  - title: projects-v2.addOwnerrequest
22155
- required: &ref_509
22249
+ required: &ref_511
22156
22250
  - id
22157
22251
  - user_id
22158
22252
  type: object
22159
- properties: &ref_510
22253
+ properties: &ref_512
22160
22254
  id:
22161
22255
  type: string
22162
22256
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22191,11 +22285,11 @@ paths:
22191
22285
  schema:
22192
22286
  allOf:
22193
22287
  - title: projects-v2.removeOwnerrequest
22194
- required: &ref_511
22288
+ required: &ref_513
22195
22289
  - id
22196
22290
  - user_id
22197
22291
  type: object
22198
- properties: &ref_512
22292
+ properties: &ref_514
22199
22293
  id:
22200
22294
  type: string
22201
22295
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22230,11 +22324,11 @@ paths:
22230
22324
  schema:
22231
22325
  allOf:
22232
22326
  - title: projects-v2.assignrequest
22233
- required: &ref_513
22327
+ required: &ref_515
22234
22328
  - id
22235
22329
  - assignee
22236
22330
  type: object
22237
- properties: &ref_514
22331
+ properties: &ref_516
22238
22332
  id:
22239
22333
  type: string
22240
22334
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22286,11 +22380,11 @@ paths:
22286
22380
  schema:
22287
22381
  allOf:
22288
22382
  - title: projects-v2.unassignrequest
22289
- required: &ref_515
22383
+ required: &ref_517
22290
22384
  - id
22291
22385
  - assignee
22292
22386
  type: object
22293
- properties: &ref_516
22387
+ properties: &ref_518
22294
22388
  id:
22295
22389
  type: string
22296
22390
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22342,11 +22436,11 @@ paths:
22342
22436
  schema:
22343
22437
  allOf:
22344
22438
  - title: projects-v2.addCustomerrequest
22345
- required: &ref_517
22439
+ required: &ref_519
22346
22440
  - id
22347
22441
  - customer
22348
22442
  type: object
22349
- properties: &ref_518
22443
+ properties: &ref_520
22350
22444
  id:
22351
22445
  type: string
22352
22446
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22387,11 +22481,11 @@ paths:
22387
22481
  schema:
22388
22482
  allOf:
22389
22483
  - title: projects-v2.removeCustomerrequest
22390
- required: &ref_519
22484
+ required: &ref_521
22391
22485
  - id
22392
22486
  - customer
22393
22487
  type: object
22394
- properties: &ref_520
22488
+ properties: &ref_522
22395
22489
  id:
22396
22490
  type: string
22397
22491
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -22432,11 +22526,11 @@ paths:
22432
22526
  schema:
22433
22527
  allOf:
22434
22528
  - title: projects-v2.addDealrequest
22435
- required: &ref_521
22529
+ required: &ref_523
22436
22530
  - id
22437
22531
  - deal_id
22438
22532
  type: object
22439
- properties: &ref_522
22533
+ properties: &ref_524
22440
22534
  id:
22441
22535
  type: string
22442
22536
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22471,11 +22565,11 @@ paths:
22471
22565
  schema:
22472
22566
  allOf:
22473
22567
  - title: projects-v2.removeDealrequest
22474
- required: &ref_523
22568
+ required: &ref_525
22475
22569
  - id
22476
22570
  - deal_id
22477
22571
  type: object
22478
- properties: &ref_524
22572
+ properties: &ref_526
22479
22573
  id:
22480
22574
  type: string
22481
22575
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22510,11 +22604,11 @@ paths:
22510
22604
  schema:
22511
22605
  allOf:
22512
22606
  - title: projects-v2.addQuotationrequest
22513
- required: &ref_525
22607
+ required: &ref_527
22514
22608
  - id
22515
22609
  - quotation_id
22516
22610
  type: object
22517
- properties: &ref_526
22611
+ properties: &ref_528
22518
22612
  id:
22519
22613
  type: string
22520
22614
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22549,11 +22643,11 @@ paths:
22549
22643
  schema:
22550
22644
  allOf:
22551
22645
  - title: projects-v2.removeQuotationrequest
22552
- required: &ref_527
22646
+ required: &ref_529
22553
22647
  - id
22554
22648
  - quotation_id
22555
22649
  type: object
22556
- properties: &ref_528
22650
+ properties: &ref_530
22557
22651
  id:
22558
22652
  type: string
22559
22653
  example: d27909aa-fc0e-4ed4-acec-fcbffda5111b
@@ -22588,11 +22682,11 @@ paths:
22588
22682
  schema:
22589
22683
  allOf:
22590
22684
  - title: projects-v2_externalParties.addToProjectrequest
22591
- required: &ref_529
22685
+ required: &ref_531
22592
22686
  - project_id
22593
22687
  - customer
22594
22688
  type: object
22595
- properties: &ref_530
22689
+ properties: &ref_532
22596
22690
  project_id:
22597
22691
  type: string
22598
22692
  example: 7257b535-d40f-4699-b3bd-63679379b579
@@ -22643,10 +22737,10 @@ paths:
22643
22737
  schema:
22644
22738
  allOf:
22645
22739
  - title: projects-v2_externalParties.updaterequest
22646
- required: &ref_531
22740
+ required: &ref_533
22647
22741
  - id
22648
22742
  type: object
22649
- properties: &ref_532
22743
+ properties: &ref_534
22650
22744
  id:
22651
22745
  type: string
22652
22746
  example: 6126596f-6193-445a-935a-60c10df9f632
@@ -22699,10 +22793,10 @@ paths:
22699
22793
  schema:
22700
22794
  allOf:
22701
22795
  - title: projects-v2_externalParties.deleterequest
22702
- required: &ref_533
22796
+ required: &ref_535
22703
22797
  - id
22704
22798
  type: object
22705
- properties: &ref_534
22799
+ properties: &ref_536
22706
22800
  id:
22707
22801
  type: string
22708
22802
  example: 6126596f-6193-445a-935a-60c10df9f632
@@ -22732,10 +22826,10 @@ paths:
22732
22826
  schema:
22733
22827
  allOf:
22734
22828
  - title: projects-v2_projectLines.listrequest
22735
- required: &ref_535
22829
+ required: &ref_537
22736
22830
  - project_id
22737
22831
  type: object
22738
- properties: &ref_536
22832
+ properties: &ref_538
22739
22833
  project_id:
22740
22834
  type: string
22741
22835
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -22801,7 +22895,7 @@ paths:
22801
22895
  allOf:
22802
22896
  - title: projects-v2_projectLines.listresponse
22803
22897
  type: object
22804
- properties: &ref_537
22898
+ properties: &ref_539
22805
22899
  data:
22806
22900
  type: array
22807
22901
  items:
@@ -22864,11 +22958,11 @@ paths:
22864
22958
  schema:
22865
22959
  allOf:
22866
22960
  - title: projects-v2_projectLines.addToGrouprequest
22867
- required: &ref_538
22961
+ required: &ref_540
22868
22962
  - line_id
22869
22963
  - group_id
22870
22964
  type: object
22871
- properties: &ref_539
22965
+ properties: &ref_541
22872
22966
  line_id:
22873
22967
  type: string
22874
22968
  description: The ID of the task or material. May not be a group.
@@ -22904,10 +22998,10 @@ paths:
22904
22998
  schema:
22905
22999
  allOf:
22906
23000
  - title: projects-v2_projectLines.removeFromGrouprequest
22907
- required: &ref_540
23001
+ required: &ref_542
22908
23002
  - line_id
22909
23003
  type: object
22910
- properties: &ref_541
23004
+ properties: &ref_543
22911
23005
  line_id:
22912
23006
  type: string
22913
23007
  description: The ID of the task or material. May not be a group.
@@ -22939,7 +23033,7 @@ paths:
22939
23033
  allOf:
22940
23034
  - title: projects-v2_projectGroups.listrequest
22941
23035
  type: object
22942
- properties: &ref_542
23036
+ properties: &ref_544
22943
23037
  filter:
22944
23038
  type: object
22945
23039
  properties:
@@ -22974,7 +23068,7 @@ paths:
22974
23068
  allOf:
22975
23069
  - title: projects-v2_projectGroups.listresponse
22976
23070
  type: object
22977
- properties: &ref_543
23071
+ properties: &ref_545
22978
23072
  data:
22979
23073
  type: array
22980
23074
  items:
@@ -23266,10 +23360,10 @@ paths:
23266
23360
  schema:
23267
23361
  allOf:
23268
23362
  - title: projects-v2_projectGroups.inforequest
23269
- required: &ref_544
23363
+ required: &ref_546
23270
23364
  - id
23271
23365
  type: object
23272
- properties: &ref_545
23366
+ properties: &ref_547
23273
23367
  id:
23274
23368
  type: string
23275
23369
  example: cfe2666c-b0f4-4e85-8d6f-9e1284706d0a
@@ -23288,7 +23382,7 @@ paths:
23288
23382
  allOf:
23289
23383
  - title: projects-v2_projectGroups.inforesponse
23290
23384
  type: object
23291
- properties: &ref_546
23385
+ properties: &ref_548
23292
23386
  data:
23293
23387
  type: object
23294
23388
  properties:
@@ -23579,11 +23673,11 @@ paths:
23579
23673
  schema:
23580
23674
  allOf:
23581
23675
  - title: projects-v2_projectGroups.createrequest
23582
- required: &ref_547
23676
+ required: &ref_549
23583
23677
  - project_id
23584
23678
  - title
23585
23679
  type: object
23586
- properties: &ref_548
23680
+ properties: &ref_550
23587
23681
  project_id:
23588
23682
  type: string
23589
23683
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -23708,7 +23802,7 @@ paths:
23708
23802
  allOf:
23709
23803
  - title: projects-v2_projectGroups.createresponse
23710
23804
  type: object
23711
- properties: &ref_549
23805
+ properties: &ref_551
23712
23806
  data:
23713
23807
  title: TypeAndId
23714
23808
  type: object
@@ -23737,10 +23831,10 @@ paths:
23737
23831
  schema:
23738
23832
  allOf:
23739
23833
  - title: projects-v2_projectGroups.updaterequest
23740
- required: &ref_550
23834
+ required: &ref_552
23741
23835
  - id
23742
23836
  type: object
23743
- properties: &ref_551
23837
+ properties: &ref_553
23744
23838
  id:
23745
23839
  type: string
23746
23840
  example: e8478f2c-05a1-4e69-b3c4-e08507640f01
@@ -23870,10 +23964,10 @@ paths:
23870
23964
  schema:
23871
23965
  allOf:
23872
23966
  - title: projects-v2_projectGroups.duplicaterequest
23873
- required: &ref_552
23967
+ required: &ref_554
23874
23968
  - origin_id
23875
23969
  type: object
23876
- properties: &ref_553
23970
+ properties: &ref_555
23877
23971
  origin_id:
23878
23972
  type: string
23879
23973
  description: The id of the group that is being duplicated
@@ -23893,7 +23987,7 @@ paths:
23893
23987
  allOf:
23894
23988
  - title: projects-v2_projectGroups.duplicateresponse
23895
23989
  type: object
23896
- properties: &ref_554
23990
+ properties: &ref_556
23897
23991
  data:
23898
23992
  title: TypeAndId
23899
23993
  type: object
@@ -23922,11 +24016,11 @@ paths:
23922
24016
  schema:
23923
24017
  allOf:
23924
24018
  - title: projects-v2_projectGroups.deleterequest
23925
- required: &ref_555
24019
+ required: &ref_557
23926
24020
  - id
23927
24021
  - delete_strategy
23928
24022
  type: object
23929
- properties: &ref_556
24023
+ properties: &ref_558
23930
24024
  id:
23931
24025
  type: string
23932
24026
  example: 01866e6f-f264-7fe5-8b7c-a3f739fa292c
@@ -23965,11 +24059,11 @@ paths:
23965
24059
  schema:
23966
24060
  allOf:
23967
24061
  - title: projects-v2_projectGroups.assignrequest
23968
- required: &ref_557
24062
+ required: &ref_559
23969
24063
  - id
23970
24064
  - assignee
23971
24065
  type: object
23972
- properties: &ref_558
24066
+ properties: &ref_560
23973
24067
  id:
23974
24068
  type: string
23975
24069
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -24021,11 +24115,11 @@ paths:
24021
24115
  schema:
24022
24116
  allOf:
24023
24117
  - title: projects-v2_projectGroups.unassignrequest
24024
- required: &ref_559
24118
+ required: &ref_561
24025
24119
  - id
24026
24120
  - assignee
24027
24121
  type: object
24028
- properties: &ref_560
24122
+ properties: &ref_562
24029
24123
  id:
24030
24124
  type: string
24031
24125
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -24078,7 +24172,7 @@ paths:
24078
24172
  allOf:
24079
24173
  - title: projects-v2_tasks.listrequest
24080
24174
  type: object
24081
- properties: &ref_561
24175
+ properties: &ref_563
24082
24176
  filter:
24083
24177
  type: object
24084
24178
  properties:
@@ -24117,7 +24211,7 @@ paths:
24117
24211
  allOf:
24118
24212
  - title: projects-v2_tasks.listresponse
24119
24213
  type: object
24120
- properties: &ref_562
24214
+ properties: &ref_564
24121
24215
  data:
24122
24216
  type: array
24123
24217
  items:
@@ -24506,7 +24600,7 @@ paths:
24506
24600
  allOf:
24507
24601
  - title: projects-v2_tasks.inforesponse
24508
24602
  type: object
24509
- properties: &ref_563
24603
+ properties: &ref_565
24510
24604
  data:
24511
24605
  type: object
24512
24606
  properties:
@@ -24893,11 +24987,11 @@ paths:
24893
24987
  schema:
24894
24988
  allOf:
24895
24989
  - title: projects-v2_tasks.createrequest
24896
- required: &ref_564
24990
+ required: &ref_566
24897
24991
  - project_id
24898
24992
  - title
24899
24993
  type: object
24900
- properties: &ref_565
24994
+ properties: &ref_567
24901
24995
  project_id:
24902
24996
  type: string
24903
24997
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -25101,10 +25195,10 @@ paths:
25101
25195
  schema:
25102
25196
  allOf:
25103
25197
  - title: projects-v2_tasks.updaterequest
25104
- required: &ref_566
25198
+ required: &ref_568
25105
25199
  - id
25106
25200
  type: object
25107
- properties: &ref_567
25201
+ properties: &ref_569
25108
25202
  id:
25109
25203
  type: string
25110
25204
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25276,10 +25370,10 @@ paths:
25276
25370
  schema:
25277
25371
  allOf:
25278
25372
  - title: projects-v2_tasks.duplicaterequest
25279
- required: &ref_568
25373
+ required: &ref_570
25280
25374
  - origin_id
25281
25375
  type: object
25282
- properties: &ref_569
25376
+ properties: &ref_571
25283
25377
  origin_id:
25284
25378
  type: string
25285
25379
  description: The id of the task that is being duplicated
@@ -25299,7 +25393,7 @@ paths:
25299
25393
  allOf:
25300
25394
  - title: projects-v2_tasks.duplicateresponse
25301
25395
  type: object
25302
- properties: &ref_570
25396
+ properties: &ref_572
25303
25397
  data:
25304
25398
  title: TypeAndId
25305
25399
  type: object
@@ -25328,11 +25422,11 @@ paths:
25328
25422
  schema:
25329
25423
  allOf:
25330
25424
  - title: projects-v2_tasks.deleterequest
25331
- required: &ref_571
25425
+ required: &ref_573
25332
25426
  - id
25333
25427
  - delete_strategy
25334
25428
  type: object
25335
- properties: &ref_572
25429
+ properties: &ref_574
25336
25430
  id:
25337
25431
  type: string
25338
25432
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25370,11 +25464,11 @@ paths:
25370
25464
  schema:
25371
25465
  allOf:
25372
25466
  - title: projects-v2_tasks.assignrequest
25373
- required: &ref_573
25467
+ required: &ref_575
25374
25468
  - id
25375
25469
  - assignee
25376
25470
  type: object
25377
- properties: &ref_574
25471
+ properties: &ref_576
25378
25472
  id:
25379
25473
  type: string
25380
25474
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -25426,11 +25520,11 @@ paths:
25426
25520
  schema:
25427
25521
  allOf:
25428
25522
  - title: projects-v2_tasks.unassignrequest
25429
- required: &ref_575
25523
+ required: &ref_577
25430
25524
  - id
25431
25525
  - assignee
25432
25526
  type: object
25433
- properties: &ref_576
25527
+ properties: &ref_578
25434
25528
  id:
25435
25529
  type: string
25436
25530
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -25483,7 +25577,7 @@ paths:
25483
25577
  allOf:
25484
25578
  - title: projects-v2_materials.listrequest
25485
25579
  type: object
25486
- properties: &ref_577
25580
+ properties: &ref_579
25487
25581
  filter:
25488
25582
  type: object
25489
25583
  properties:
@@ -25512,7 +25606,7 @@ paths:
25512
25606
  allOf:
25513
25607
  - title: projects-v2_materials.listresponse
25514
25608
  type: object
25515
- properties: &ref_578
25609
+ properties: &ref_580
25516
25610
  data:
25517
25611
  type: array
25518
25612
  items:
@@ -25826,10 +25920,10 @@ paths:
25826
25920
  schema:
25827
25921
  allOf:
25828
25922
  - title: projects-v2_materials.inforequest
25829
- required: &ref_579
25923
+ required: &ref_581
25830
25924
  - id
25831
25925
  type: object
25832
- properties: &ref_580
25926
+ properties: &ref_582
25833
25927
  id:
25834
25928
  type: string
25835
25929
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -25848,7 +25942,7 @@ paths:
25848
25942
  allOf:
25849
25943
  - title: projects-v2_materials.inforesponse
25850
25944
  type: object
25851
- properties: &ref_581
25945
+ properties: &ref_583
25852
25946
  data:
25853
25947
  type: object
25854
25948
  properties:
@@ -26166,11 +26260,11 @@ paths:
26166
26260
  schema:
26167
26261
  allOf:
26168
26262
  - title: projects-v2_materials.createrequest
26169
- required: &ref_582
26263
+ required: &ref_584
26170
26264
  - project_id
26171
26265
  - title
26172
26266
  type: object
26173
- properties: &ref_583
26267
+ properties: &ref_585
26174
26268
  project_id:
26175
26269
  type: string
26176
26270
  example: 49b403be-a32e-0901-9b1c-25214f9027c6
@@ -26338,7 +26432,7 @@ paths:
26338
26432
  allOf:
26339
26433
  - title: projects-v2_materials.createresponse
26340
26434
  type: object
26341
- properties: &ref_584
26435
+ properties: &ref_586
26342
26436
  data:
26343
26437
  title: TypeAndId
26344
26438
  type: object
@@ -26367,10 +26461,10 @@ paths:
26367
26461
  schema:
26368
26462
  allOf:
26369
26463
  - title: projects-v2_materials.updaterequest
26370
- required: &ref_585
26464
+ required: &ref_587
26371
26465
  - id
26372
26466
  type: object
26373
- properties: &ref_586
26467
+ properties: &ref_588
26374
26468
  id:
26375
26469
  type: string
26376
26470
  example: ff19a113-50ba-4afc-9fff-2e5c5c5a5485
@@ -26524,10 +26618,10 @@ paths:
26524
26618
  schema:
26525
26619
  allOf:
26526
26620
  - title: projects-v2_materials.duplicaterequest
26527
- required: &ref_587
26621
+ required: &ref_589
26528
26622
  - origin_id
26529
26623
  type: object
26530
- properties: &ref_588
26624
+ properties: &ref_590
26531
26625
  origin_id:
26532
26626
  type: string
26533
26627
  description: The id of the material that is being duplicated
@@ -26547,7 +26641,7 @@ paths:
26547
26641
  allOf:
26548
26642
  - title: projects-v2_materials.duplicateresponse
26549
26643
  type: object
26550
- properties: &ref_589
26644
+ properties: &ref_591
26551
26645
  data:
26552
26646
  title: TypeAndId
26553
26647
  type: object
@@ -26576,10 +26670,10 @@ paths:
26576
26670
  schema:
26577
26671
  allOf:
26578
26672
  - title: projects-v2_materials.deleterequest
26579
- required: &ref_590
26673
+ required: &ref_592
26580
26674
  - id
26581
26675
  type: object
26582
- properties: &ref_591
26676
+ properties: &ref_593
26583
26677
  id:
26584
26678
  type: string
26585
26679
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26609,11 +26703,11 @@ paths:
26609
26703
  schema:
26610
26704
  allOf:
26611
26705
  - title: projects-v2_materials.assignrequest
26612
- required: &ref_592
26706
+ required: &ref_594
26613
26707
  - id
26614
26708
  - assignee
26615
26709
  type: object
26616
- properties: &ref_593
26710
+ properties: &ref_595
26617
26711
  id:
26618
26712
  type: string
26619
26713
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26665,11 +26759,11 @@ paths:
26665
26759
  schema:
26666
26760
  allOf:
26667
26761
  - title: projects-v2_materials.unassignrequest
26668
- required: &ref_594
26762
+ required: &ref_596
26669
26763
  - id
26670
26764
  - assignee
26671
26765
  type: object
26672
- properties: &ref_595
26766
+ properties: &ref_597
26673
26767
  id:
26674
26768
  type: string
26675
26769
  example: 0184f276-811b-716d-8b79-17628c9573c6
@@ -26722,7 +26816,7 @@ paths:
26722
26816
  allOf:
26723
26817
  - title: tasks.listrequest1
26724
26818
  type: object
26725
- properties: &ref_596
26819
+ properties: &ref_598
26726
26820
  filter:
26727
26821
  type: object
26728
26822
  properties:
@@ -26790,7 +26884,7 @@ paths:
26790
26884
  allOf:
26791
26885
  - title: tasks.listresponse1
26792
26886
  type: object
26793
- properties: &ref_597
26887
+ properties: &ref_599
26794
26888
  data:
26795
26889
  type: array
26796
26890
  items:
@@ -26997,7 +27091,7 @@ paths:
26997
27091
  allOf:
26998
27092
  - title: tasks.inforesponse1
26999
27093
  type: object
27000
- properties: &ref_598
27094
+ properties: &ref_600
27001
27095
  data:
27002
27096
  type: object
27003
27097
  properties:
@@ -27189,12 +27283,12 @@ paths:
27189
27283
  application/json:
27190
27284
  schema:
27191
27285
  title: tasks.createrequest1
27192
- required: &ref_599
27286
+ required: &ref_601
27193
27287
  - title
27194
27288
  - due_on
27195
27289
  - work_type_id
27196
27290
  type: object
27197
- properties: &ref_600
27291
+ properties: &ref_602
27198
27292
  title:
27199
27293
  type: string
27200
27294
  description:
@@ -27286,10 +27380,10 @@ paths:
27286
27380
  application/json:
27287
27381
  schema:
27288
27382
  title: tasks.updaterequest1
27289
- required: &ref_601
27383
+ required: &ref_603
27290
27384
  - id
27291
27385
  type: object
27292
- properties: &ref_602
27386
+ properties: &ref_604
27293
27387
  id:
27294
27388
  type: string
27295
27389
  example: 00ed6266-a5bd-4aac-a292-2582017b6400
@@ -27375,10 +27469,10 @@ paths:
27375
27469
  schema:
27376
27470
  allOf:
27377
27471
  - title: tasks.completerequest
27378
- required: &ref_603
27472
+ required: &ref_605
27379
27473
  - id
27380
27474
  type: object
27381
- properties: &ref_604
27475
+ properties: &ref_606
27382
27476
  id:
27383
27477
  type: string
27384
27478
  example: 46156648-87c6-478d-8aa7-1dc3a00dacab
@@ -27408,10 +27502,10 @@ paths:
27408
27502
  schema:
27409
27503
  allOf:
27410
27504
  - title: tasks.reopenrequest
27411
- required: &ref_605
27505
+ required: &ref_607
27412
27506
  - id
27413
27507
  type: object
27414
- properties: &ref_606
27508
+ properties: &ref_608
27415
27509
  id:
27416
27510
  type: string
27417
27511
  example: 46156648-87c6-478d-8aa7-1dc3a00dacab
@@ -27441,10 +27535,10 @@ paths:
27441
27535
  schema:
27442
27536
  allOf:
27443
27537
  - title: tasks.deleterequest1
27444
- required: &ref_607
27538
+ required: &ref_609
27445
27539
  - id
27446
27540
  type: object
27447
- properties: &ref_608
27541
+ properties: &ref_610
27448
27542
  id:
27449
27543
  type: string
27450
27544
  example: 5f0afd8a-8a40-48a4-bbe6-7d0e9c61bb6d
@@ -27474,12 +27568,12 @@ paths:
27474
27568
  schema:
27475
27569
  allOf:
27476
27570
  - title: tasks.schedulerequest
27477
- required: &ref_609
27571
+ required: &ref_611
27478
27572
  - id
27479
27573
  - starts_at
27480
27574
  - ends_at
27481
27575
  type: object
27482
- properties: &ref_610
27576
+ properties: &ref_612
27483
27577
  id:
27484
27578
  type: string
27485
27579
  example: 7c70c54e-6e50-4e6a-b5fd-80234eb535cf
@@ -27508,7 +27602,7 @@ paths:
27508
27602
  allOf:
27509
27603
  - title: tasks.scheduleresponse
27510
27604
  type: object
27511
- properties: &ref_611
27605
+ properties: &ref_613
27512
27606
  data:
27513
27607
  title: TypeAndId
27514
27608
  type: object
@@ -27538,7 +27632,7 @@ paths:
27538
27632
  allOf:
27539
27633
  - title: timeTracking.listrequest
27540
27634
  type: object
27541
- properties: &ref_612
27635
+ properties: &ref_614
27542
27636
  filter:
27543
27637
  type: object
27544
27638
  properties:
@@ -27644,7 +27738,7 @@ paths:
27644
27738
  allOf:
27645
27739
  - title: timeTracking.listresponse
27646
27740
  type: object
27647
- properties: &ref_613
27741
+ properties: &ref_615
27648
27742
  data:
27649
27743
  type: array
27650
27744
  items:
@@ -27862,10 +27956,10 @@ paths:
27862
27956
  schema:
27863
27957
  allOf:
27864
27958
  - title: timeTracking.inforequest
27865
- required: &ref_614
27959
+ required: &ref_616
27866
27960
  - id
27867
27961
  type: object
27868
- properties: &ref_615
27962
+ properties: &ref_617
27869
27963
  id:
27870
27964
  type: string
27871
27965
  example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
@@ -27890,7 +27984,7 @@ paths:
27890
27984
  allOf:
27891
27985
  - title: timeTracking.inforesponse
27892
27986
  type: object
27893
- properties: &ref_616
27987
+ properties: &ref_618
27894
27988
  data:
27895
27989
  type: object
27896
27990
  properties:
@@ -28087,7 +28181,7 @@ paths:
28087
28181
  allOf:
28088
28182
  - title: timeTracking.addrequest
28089
28183
  type: object
28090
- properties: &ref_617
28184
+ properties: &ref_619
28091
28185
  work_type_id:
28092
28186
  type: string
28093
28187
  example: 2175597d-484e-4a1c-a781-cbc3d9f893ba
@@ -28119,7 +28213,7 @@ paths:
28119
28213
  type: string
28120
28214
  description: To add tracked time for a different user.
28121
28215
  example: 87982c96-f2fe-4b05-838c-ff42c0525758
28122
- oneOf: &ref_618
28216
+ oneOf: &ref_620
28123
28217
  - type: object
28124
28218
  title: With started_at & duration
28125
28219
  required:
@@ -28171,7 +28265,7 @@ paths:
28171
28265
  allOf:
28172
28266
  - title: timeTracking.addresponse
28173
28267
  type: object
28174
- properties: &ref_619
28268
+ properties: &ref_621
28175
28269
  data:
28176
28270
  title: TypeAndId
28177
28271
  type: object
@@ -28197,11 +28291,11 @@ paths:
28197
28291
  schema:
28198
28292
  allOf:
28199
28293
  - title: timeTracking.updaterequest
28200
- required: &ref_620
28294
+ required: &ref_622
28201
28295
  - id
28202
28296
  - duration
28203
28297
  type: object
28204
- properties: &ref_621
28298
+ properties: &ref_623
28205
28299
  id:
28206
28300
  type: string
28207
28301
  example: 66621f54-3d0d-420f-8d4b-ddd7fc473bf2
@@ -28239,7 +28333,7 @@ paths:
28239
28333
  invoiceable:
28240
28334
  type: boolean
28241
28335
  example: true
28242
- oneOf: &ref_622
28336
+ oneOf: &ref_624
28243
28337
  - type: object
28244
28338
  title: Update with started_at
28245
28339
  description: Update the timetracking with `started_at` DateTime.
@@ -28282,10 +28376,10 @@ paths:
28282
28376
  schema:
28283
28377
  allOf:
28284
28378
  - title: timeTracking.resumerequest
28285
- required: &ref_623
28379
+ required: &ref_625
28286
28380
  - id
28287
28381
  type: object
28288
- properties: &ref_624
28382
+ properties: &ref_626
28289
28383
  id:
28290
28384
  type: string
28291
28385
  example: 06dfa08a-b769-4005-a912-45ab885c5737
@@ -28310,7 +28404,7 @@ paths:
28310
28404
  allOf:
28311
28405
  - title: timeTracking.resumeresponse
28312
28406
  type: object
28313
- properties: &ref_625
28407
+ properties: &ref_627
28314
28408
  data:
28315
28409
  title: TypeAndId
28316
28410
  type: object
@@ -28339,10 +28433,10 @@ paths:
28339
28433
  schema:
28340
28434
  allOf:
28341
28435
  - title: timeTracking.deleterequest
28342
- required: &ref_626
28436
+ required: &ref_628
28343
28437
  - id
28344
28438
  type: object
28345
- properties: &ref_627
28439
+ properties: &ref_629
28346
28440
  id:
28347
28441
  type: string
28348
28442
  example: 6caeea11-aa83-4da9-9859-5b62bbf3a476
@@ -28375,7 +28469,7 @@ paths:
28375
28469
  allOf:
28376
28470
  - title: timers.currentresponse
28377
28471
  type: object
28378
- properties: &ref_628
28472
+ properties: &ref_630
28379
28473
  data:
28380
28474
  type: object
28381
28475
  properties:
@@ -28461,7 +28555,7 @@ paths:
28461
28555
  allOf:
28462
28556
  - title: timers.startrequest
28463
28557
  type: object
28464
- properties: &ref_629
28558
+ properties: &ref_631
28465
28559
  work_type_id:
28466
28560
  type: string
28467
28561
  example: db41328a-7a25-4e85-8fb9-830baacb7f40
@@ -28517,7 +28611,7 @@ paths:
28517
28611
  allOf:
28518
28612
  - title: timers.startresponse
28519
28613
  type: object
28520
- properties: &ref_630
28614
+ properties: &ref_632
28521
28615
  data:
28522
28616
  title: TypeAndId
28523
28617
  type: object
@@ -28549,7 +28643,7 @@ paths:
28549
28643
  allOf:
28550
28644
  - title: timers.stopresponse
28551
28645
  type: object
28552
- properties: &ref_631
28646
+ properties: &ref_633
28553
28647
  data:
28554
28648
  title: TypeAndId
28555
28649
  type: object
@@ -28579,7 +28673,7 @@ paths:
28579
28673
  allOf:
28580
28674
  - title: timers.updaterequest
28581
28675
  type: object
28582
- properties: &ref_632
28676
+ properties: &ref_634
28583
28677
  work_type_id:
28584
28678
  type: string
28585
28679
  nullable: true
@@ -28653,7 +28747,7 @@ paths:
28653
28747
  allOf:
28654
28748
  - title: tickets.listrequest
28655
28749
  type: object
28656
- properties: &ref_633
28750
+ properties: &ref_635
28657
28751
  filter:
28658
28752
  type: object
28659
28753
  properties:
@@ -28738,7 +28832,7 @@ paths:
28738
28832
  allOf:
28739
28833
  - title: tickets.listresponse
28740
28834
  type: object
28741
- properties: &ref_634
28835
+ properties: &ref_636
28742
28836
  data:
28743
28837
  type: array
28744
28838
  items:
@@ -28873,10 +28967,10 @@ paths:
28873
28967
  schema:
28874
28968
  allOf:
28875
28969
  - title: tickets.inforequest
28876
- required: &ref_635
28970
+ required: &ref_637
28877
28971
  - id
28878
28972
  type: object
28879
- properties: &ref_636
28973
+ properties: &ref_638
28880
28974
  id:
28881
28975
  type: string
28882
28976
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -28895,7 +28989,7 @@ paths:
28895
28989
  allOf:
28896
28990
  - title: tickets.inforesponse
28897
28991
  type: object
28898
- properties: &ref_637
28992
+ properties: &ref_639
28899
28993
  id:
28900
28994
  type: string
28901
28995
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29044,12 +29138,12 @@ paths:
29044
29138
  schema:
29045
29139
  allOf:
29046
29140
  - title: tickets.createrequest
29047
- required: &ref_638
29141
+ required: &ref_640
29048
29142
  - subject
29049
29143
  - customer
29050
29144
  - ticket_status_id
29051
29145
  type: object
29052
- properties: &ref_639
29146
+ properties: &ref_641
29053
29147
  subject:
29054
29148
  type: string
29055
29149
  example: My ticket subject
@@ -29163,7 +29257,7 @@ paths:
29163
29257
  allOf:
29164
29258
  - title: tickets.createresponse
29165
29259
  type: object
29166
- properties: &ref_640
29260
+ properties: &ref_642
29167
29261
  data:
29168
29262
  title: TypeAndId
29169
29263
  type: object
@@ -29192,10 +29286,10 @@ paths:
29192
29286
  schema:
29193
29287
  allOf:
29194
29288
  - title: tickets.updaterequest
29195
- required: &ref_641
29289
+ required: &ref_643
29196
29290
  - id
29197
29291
  type: object
29198
- properties: &ref_642
29292
+ properties: &ref_644
29199
29293
  id:
29200
29294
  type: string
29201
29295
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29317,7 +29411,7 @@ paths:
29317
29411
  allOf:
29318
29412
  - title: tickets.listMessagesrequest
29319
29413
  type: object
29320
- properties: &ref_643
29414
+ properties: &ref_645
29321
29415
  id:
29322
29416
  type: string
29323
29417
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29370,7 +29464,7 @@ paths:
29370
29464
  allOf:
29371
29465
  - title: tickets.listMessagesresponse
29372
29466
  type: object
29373
- properties: &ref_644
29467
+ properties: &ref_646
29374
29468
  data:
29375
29469
  type: array
29376
29470
  items:
@@ -29473,7 +29567,7 @@ paths:
29473
29567
  allOf:
29474
29568
  - title: tickets.getMessagerequest
29475
29569
  type: object
29476
- properties: &ref_645
29570
+ properties: &ref_647
29477
29571
  message_id:
29478
29572
  type: string
29479
29573
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29492,7 +29586,7 @@ paths:
29492
29586
  allOf:
29493
29587
  - title: tickets.getMessageresponse
29494
29588
  type: object
29495
- properties: &ref_646
29589
+ properties: &ref_648
29496
29590
  message_id:
29497
29591
  type: string
29498
29592
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29575,13 +29669,13 @@ paths:
29575
29669
  schema:
29576
29670
  allOf:
29577
29671
  - title: tickets.importMessagerequest
29578
- required: &ref_647
29672
+ required: &ref_649
29579
29673
  - id
29580
29674
  - body
29581
29675
  - sent_by
29582
29676
  - sent_at
29583
29677
  type: object
29584
- properties: &ref_648
29678
+ properties: &ref_650
29585
29679
  id:
29586
29680
  type: string
29587
29681
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29634,7 +29728,7 @@ paths:
29634
29728
  allOf:
29635
29729
  - title: tickets.importMessageresponse
29636
29730
  type: object
29637
- properties: &ref_649
29731
+ properties: &ref_651
29638
29732
  data:
29639
29733
  title: TypeAndId
29640
29734
  type: object
@@ -29663,11 +29757,11 @@ paths:
29663
29757
  schema:
29664
29758
  allOf:
29665
29759
  - title: tickets.addReplyrequest
29666
- required: &ref_650
29760
+ required: &ref_652
29667
29761
  - id
29668
29762
  - body
29669
29763
  type: object
29670
- properties: &ref_651
29764
+ properties: &ref_653
29671
29765
  id:
29672
29766
  type: string
29673
29767
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29706,7 +29800,7 @@ paths:
29706
29800
  allOf:
29707
29801
  - title: tickets.addReplyresponse
29708
29802
  type: object
29709
- properties: &ref_652
29803
+ properties: &ref_654
29710
29804
  data:
29711
29805
  title: TypeAndId
29712
29806
  type: object
@@ -29735,11 +29829,11 @@ paths:
29735
29829
  schema:
29736
29830
  allOf:
29737
29831
  - title: tickets.addInternalMessagerequest
29738
- required: &ref_653
29832
+ required: &ref_655
29739
29833
  - id
29740
29834
  - body
29741
29835
  type: object
29742
- properties: &ref_654
29836
+ properties: &ref_656
29743
29837
  id:
29744
29838
  type: string
29745
29839
  example: f29abf48-337d-44b4-aad4-585f5277a456
@@ -29778,7 +29872,7 @@ paths:
29778
29872
  allOf:
29779
29873
  - title: tickets.addInternalMessageresponse
29780
29874
  type: object
29781
- properties: &ref_655
29875
+ properties: &ref_657
29782
29876
  data:
29783
29877
  title: TypeAndId
29784
29878
  type: object
@@ -29808,7 +29902,7 @@ paths:
29808
29902
  allOf:
29809
29903
  - title: ticketStatus.listrequest
29810
29904
  type: object
29811
- properties: &ref_656
29905
+ properties: &ref_658
29812
29906
  filter:
29813
29907
  type: object
29814
29908
  properties:
@@ -29837,7 +29931,7 @@ paths:
29837
29931
  allOf:
29838
29932
  - title: ticketStatus.listresponse
29839
29933
  type: object
29840
- properties: &ref_657
29934
+ properties: &ref_659
29841
29935
  data:
29842
29936
  type: array
29843
29937
  items:
@@ -29887,10 +29981,10 @@ paths:
29887
29981
  schema:
29888
29982
  allOf:
29889
29983
  - title: files.listrequest
29890
- required: &ref_658
29984
+ required: &ref_660
29891
29985
  - filter
29892
29986
  type: object
29893
- properties: &ref_659
29987
+ properties: &ref_661
29894
29988
  filter:
29895
29989
  type: object
29896
29990
  required:
@@ -29972,7 +30066,7 @@ paths:
29972
30066
  allOf:
29973
30067
  - title: files.listresponse
29974
30068
  type: object
29975
- properties: &ref_660
30069
+ properties: &ref_662
29976
30070
  data:
29977
30071
  type: array
29978
30072
  items:
@@ -30093,10 +30187,10 @@ paths:
30093
30187
  schema:
30094
30188
  allOf:
30095
30189
  - title: files.inforequest
30096
- required: &ref_661
30190
+ required: &ref_663
30097
30191
  - id
30098
30192
  type: object
30099
- properties: &ref_662
30193
+ properties: &ref_664
30100
30194
  id:
30101
30195
  type: string
30102
30196
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -30115,7 +30209,7 @@ paths:
30115
30209
  allOf:
30116
30210
  - title: files.inforesponse
30117
30211
  type: object
30118
- properties: &ref_663
30212
+ properties: &ref_665
30119
30213
  data:
30120
30214
  type: object
30121
30215
  properties:
@@ -30214,10 +30308,10 @@ paths:
30214
30308
  schema:
30215
30309
  allOf:
30216
30310
  - title: files.downloadrequest
30217
- required: &ref_664
30311
+ required: &ref_666
30218
30312
  - id
30219
30313
  type: object
30220
- properties: &ref_665
30314
+ properties: &ref_667
30221
30315
  id:
30222
30316
  type: string
30223
30317
  example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
@@ -30236,7 +30330,7 @@ paths:
30236
30330
  allOf:
30237
30331
  - title: files.downloadresponse
30238
30332
  type: object
30239
- properties: &ref_666
30333
+ properties: &ref_668
30240
30334
  data:
30241
30335
  type: object
30242
30336
  properties:
@@ -30278,11 +30372,11 @@ paths:
30278
30372
  schema:
30279
30373
  allOf:
30280
30374
  - title: files.uploadrequest
30281
- required: &ref_667
30375
+ required: &ref_669
30282
30376
  - name
30283
30377
  - subject
30284
30378
  type: object
30285
- properties: &ref_668
30379
+ properties: &ref_670
30286
30380
  name:
30287
30381
  type: string
30288
30382
  description: Name under which the file will be stored. This name should contain the same extension as the file that the user wants to upload.
@@ -30337,7 +30431,7 @@ paths:
30337
30431
  allOf:
30338
30432
  - title: files.uploadresponse
30339
30433
  type: object
30340
- properties: &ref_669
30434
+ properties: &ref_671
30341
30435
  data:
30342
30436
  type: object
30343
30437
  properties:
@@ -30373,10 +30467,10 @@ paths:
30373
30467
  schema:
30374
30468
  allOf:
30375
30469
  - title: files.deleterequest
30376
- required: &ref_670
30470
+ required: &ref_672
30377
30471
  - id
30378
30472
  type: object
30379
- properties: &ref_671
30473
+ properties: &ref_673
30380
30474
  id:
30381
30475
  type: string
30382
30476
  example: 4afb0a9c-91c6-49ed-a2e5-ce7c1e3a87fb
@@ -30406,10 +30500,10 @@ paths:
30406
30500
  schema:
30407
30501
  allOf:
30408
30502
  - title: mailTemplates.listrequest
30409
- required: &ref_672
30503
+ required: &ref_674
30410
30504
  - filter
30411
30505
  type: object
30412
- properties: &ref_673
30506
+ properties: &ref_675
30413
30507
  filter:
30414
30508
  type: object
30415
30509
  required:
@@ -30445,7 +30539,7 @@ paths:
30445
30539
  allOf:
30446
30540
  - title: mailTemplates.listresponse
30447
30541
  type: object
30448
- properties: &ref_674
30542
+ properties: &ref_676
30449
30543
  data:
30450
30544
  type: array
30451
30545
  items:
@@ -30526,7 +30620,7 @@ paths:
30526
30620
  allOf:
30527
30621
  - title: migrate.idrequest
30528
30622
  type: object
30529
- properties: &ref_675
30623
+ properties: &ref_677
30530
30624
  type:
30531
30625
  type: string
30532
30626
  enum:
@@ -30571,7 +30665,7 @@ paths:
30571
30665
  allOf:
30572
30666
  - title: migrate.idresponse
30573
30667
  type: object
30574
- properties: &ref_676
30668
+ properties: &ref_678
30575
30669
  data:
30576
30670
  type: object
30577
30671
  properties:
@@ -30626,7 +30720,7 @@ paths:
30626
30720
  allOf:
30627
30721
  - title: migrate.taxRaterequest
30628
30722
  type: object
30629
- properties: &ref_677
30723
+ properties: &ref_679
30630
30724
  department_id:
30631
30725
  type: string
30632
30726
  example: 6ad54ec6-ee2d-4500-afe6-0917c1aa7a38
@@ -30650,7 +30744,7 @@ paths:
30650
30744
  allOf:
30651
30745
  - title: migrate.taxRateresponse
30652
30746
  type: object
30653
- properties: &ref_678
30747
+ properties: &ref_680
30654
30748
  data:
30655
30749
  title: TypeAndId
30656
30750
  type: object
@@ -30680,7 +30774,7 @@ paths:
30680
30774
  allOf:
30681
30775
  - title: migrate.activityTyperequest
30682
30776
  type: object
30683
- properties: &ref_679
30777
+ properties: &ref_681
30684
30778
  type:
30685
30779
  type: string
30686
30780
  enum:
@@ -30703,7 +30797,7 @@ paths:
30703
30797
  allOf:
30704
30798
  - title: migrate.activityTyperesponse
30705
30799
  type: object
30706
- properties: &ref_680
30800
+ properties: &ref_682
30707
30801
  data:
30708
30802
  title: TypeAndId
30709
30803
  type: object
@@ -30731,10 +30825,10 @@ paths:
30731
30825
  application/json:
30732
30826
  schema:
30733
30827
  title: orders.inforequest
30734
- required: &ref_681
30828
+ required: &ref_683
30735
30829
  - id
30736
30830
  type: object
30737
- properties: &ref_682
30831
+ properties: &ref_684
30738
30832
  id:
30739
30833
  type: string
30740
30834
  example: 6fac0bf0-e803-424e-af67-76863a3d7d16
@@ -30755,7 +30849,7 @@ paths:
30755
30849
  allOf:
30756
30850
  - title: orders.inforesponse
30757
30851
  type: object
30758
- properties: &ref_684
30852
+ properties: &ref_686
30759
30853
  data:
30760
30854
  type: object
30761
30855
  properties:
@@ -30785,7 +30879,7 @@ paths:
30785
30879
  items:
30786
30880
  title: OrdersGroupedLinesResponse
30787
30881
  type: object
30788
- properties: &ref_683
30882
+ properties: &ref_685
30789
30883
  section:
30790
30884
  type: object
30791
30885
  properties:
@@ -30969,7 +31063,7 @@ paths:
30969
31063
  allOf:
30970
31064
  - title: orders.listrequest
30971
31065
  type: object
30972
- properties: &ref_685
31066
+ properties: &ref_687
30973
31067
  filter:
30974
31068
  type: object
30975
31069
  properties:
@@ -31003,7 +31097,7 @@ paths:
31003
31097
  schema:
31004
31098
  title: orders.listresponse
31005
31099
  type: object
31006
- properties: &ref_686
31100
+ properties: &ref_688
31007
31101
  data:
31008
31102
  type: array
31009
31103
  items:
@@ -31325,7 +31419,7 @@ paths:
31325
31419
  schema:
31326
31420
  title: webhooks.listresponse
31327
31421
  type: object
31328
- properties: &ref_687
31422
+ properties: &ref_689
31329
31423
  data:
31330
31424
  type: array
31331
31425
  items:
@@ -31374,11 +31468,11 @@ paths:
31374
31468
  schema:
31375
31469
  allOf:
31376
31470
  - title: cloudPlatforms.urlrequest
31377
- required: &ref_688
31471
+ required: &ref_690
31378
31472
  - type
31379
31473
  - id
31380
31474
  type: object
31381
- properties: &ref_689
31475
+ properties: &ref_691
31382
31476
  type:
31383
31477
  type: string
31384
31478
  enum:
@@ -31405,7 +31499,7 @@ paths:
31405
31499
  allOf:
31406
31500
  - title: cloudPlatforms.urlresponse
31407
31501
  type: object
31408
- properties: &ref_690
31502
+ properties: &ref_692
31409
31503
  data:
31410
31504
  type: object
31411
31505
  properties:
@@ -31447,7 +31541,7 @@ paths:
31447
31541
  allOf:
31448
31542
  - title: accounts.projects-v2-statusresponse
31449
31543
  type: object
31450
- properties: &ref_691
31544
+ properties: &ref_693
31451
31545
  data:
31452
31546
  type: object
31453
31547
  properties:
@@ -31486,7 +31580,7 @@ paths:
31486
31580
  allOf:
31487
31581
  - title: plannableItems.listrequest
31488
31582
  type: object
31489
- properties: &ref_692
31583
+ properties: &ref_694
31490
31584
  filter:
31491
31585
  type: object
31492
31586
  properties:
@@ -31597,7 +31691,7 @@ paths:
31597
31691
  allOf:
31598
31692
  - title: plannableItems.listresponse
31599
31693
  type: object
31600
- properties: &ref_693
31694
+ properties: &ref_695
31601
31695
  data:
31602
31696
  type: array
31603
31697
  items:
@@ -31685,7 +31779,7 @@ paths:
31685
31779
  allOf:
31686
31780
  - title: plannableItems.inforequest
31687
31781
  type: object
31688
- properties: &ref_694
31782
+ properties: &ref_696
31689
31783
  id:
31690
31784
  type: string
31691
31785
  example: 018d79a1-2b99-7fbd-b323-500b01305371
@@ -31713,7 +31807,7 @@ paths:
31713
31807
  allOf:
31714
31808
  - title: plannableItems.inforesponse
31715
31809
  type: object
31716
- properties: &ref_695
31810
+ properties: &ref_697
31717
31811
  data:
31718
31812
  type: object
31719
31813
  properties:
@@ -31791,7 +31885,7 @@ paths:
31791
31885
  allOf:
31792
31886
  - title: reservations.listrequest
31793
31887
  type: object
31794
- properties: &ref_696
31888
+ properties: &ref_698
31795
31889
  filter:
31796
31890
  type: object
31797
31891
  properties:
@@ -31869,7 +31963,7 @@ paths:
31869
31963
  allOf:
31870
31964
  - title: reservations.listresponse
31871
31965
  type: object
31872
- properties: &ref_697
31966
+ properties: &ref_699
31873
31967
  data:
31874
31968
  type: array
31875
31969
  items:
@@ -31967,12 +32061,12 @@ paths:
31967
32061
  allOf:
31968
32062
  - title: reservations.createrequest
31969
32063
  type: object
31970
- required: &ref_698
32064
+ required: &ref_700
31971
32065
  - plannable_item_id
31972
32066
  - date
31973
32067
  - duration
31974
32068
  - assignee
31975
- properties: &ref_699
32069
+ properties: &ref_701
31976
32070
  plannable_item_id:
31977
32071
  type: string
31978
32072
  example: e82cec33-24c9-4d13-96cb-d515a1660c8d
@@ -32029,7 +32123,7 @@ paths:
32029
32123
  allOf:
32030
32124
  - title: reservations.createresponse
32031
32125
  type: object
32032
- properties: &ref_700
32126
+ properties: &ref_702
32033
32127
  data:
32034
32128
  title: TypeAndId
32035
32129
  type: object
@@ -32059,9 +32153,9 @@ paths:
32059
32153
  allOf:
32060
32154
  - title: reservations.updaterequest
32061
32155
  type: object
32062
- required: &ref_701
32156
+ required: &ref_703
32063
32157
  - id
32064
- properties: &ref_702
32158
+ properties: &ref_704
32065
32159
  id:
32066
32160
  type: string
32067
32161
  example: 01878019-c72c-70dc-b097-7e519c775e35
@@ -32124,9 +32218,9 @@ paths:
32124
32218
  allOf:
32125
32219
  - title: reservations.deleterequest
32126
32220
  type: object
32127
- required: &ref_703
32221
+ required: &ref_705
32128
32222
  - id
32129
- properties: &ref_704
32223
+ properties: &ref_706
32130
32224
  id:
32131
32225
  type: string
32132
32226
  example: 01878019-c72c-70dc-b097-7e519c775e35
@@ -32157,9 +32251,9 @@ paths:
32157
32251
  allOf:
32158
32252
  - title: userAvailability.totalrequest
32159
32253
  type: object
32160
- required: &ref_705
32254
+ required: &ref_707
32161
32255
  - period
32162
- properties: &ref_706
32256
+ properties: &ref_708
32163
32257
  period:
32164
32258
  allOf:
32165
32259
  - title: Period
@@ -32216,7 +32310,7 @@ paths:
32216
32310
  allOf:
32217
32311
  - title: userAvailability.totalresponse
32218
32312
  type: object
32219
- properties: &ref_707
32313
+ properties: &ref_709
32220
32314
  data:
32221
32315
  type: array
32222
32316
  items:
@@ -32311,9 +32405,9 @@ paths:
32311
32405
  allOf:
32312
32406
  - title: userAvailability.dailyrequest
32313
32407
  type: object
32314
- required: &ref_708
32408
+ required: &ref_710
32315
32409
  - period
32316
- properties: &ref_709
32410
+ properties: &ref_711
32317
32411
  period:
32318
32412
  allOf:
32319
32413
  - title: Period
@@ -32364,7 +32458,7 @@ paths:
32364
32458
  allOf:
32365
32459
  - title: userAvailability.dailyresponse
32366
32460
  type: object
32367
- properties: &ref_710
32461
+ properties: &ref_712
32368
32462
  data:
32369
32463
  type: array
32370
32464
  items:
@@ -33711,18 +33805,24 @@ components:
33711
33805
  title: paymentMethods.listresponse
33712
33806
  type: object
33713
33807
  properties: *ref_439
33808
+ expenses.listrequest:
33809
+ type: object
33810
+ properties: *ref_440
33811
+ expenses.listresponse:
33812
+ type: object
33813
+ properties: *ref_441
33714
33814
  productCategories.listrequest:
33715
33815
  title: productCategories.listrequest
33716
33816
  type: object
33717
- properties: *ref_440
33817
+ properties: *ref_442
33718
33818
  productCategories.listresponse:
33719
33819
  title: productCategories.listresponse
33720
33820
  type: object
33721
- properties: *ref_441
33821
+ properties: *ref_443
33722
33822
  products.listrequest:
33723
33823
  title: products.listrequest
33724
33824
  type: object
33725
- properties: *ref_442
33825
+ properties: *ref_444
33726
33826
  Stock:
33727
33827
  title: Stock
33728
33828
  type: object
@@ -33735,26 +33835,26 @@ components:
33735
33835
  products.listresponse:
33736
33836
  title: products.listresponse
33737
33837
  type: object
33738
- properties: *ref_443
33838
+ properties: *ref_445
33739
33839
  products.inforequest:
33740
33840
  title: products.inforequest
33741
- required: *ref_444
33841
+ required: *ref_446
33742
33842
  type: object
33743
- properties: *ref_445
33843
+ properties: *ref_447
33744
33844
  products.inforesponse:
33745
33845
  title: products.inforesponse
33746
33846
  type: object
33747
- properties: *ref_446
33847
+ properties: *ref_448
33748
33848
  ProductPriceWrite:
33749
33849
  title: ProductPriceWrite
33750
- required: *ref_447
33850
+ required: *ref_449
33751
33851
  type: object
33752
- properties: *ref_448
33852
+ properties: *ref_450
33753
33853
  StockThreshold:
33754
33854
  title: StockThreshold
33755
- required: *ref_449
33855
+ required: *ref_451
33756
33856
  type: object
33757
- properties: *ref_450
33857
+ properties: *ref_452
33758
33858
  description: Only available when stock management feature is enabled
33759
33859
  ProductConfigurationWrite:
33760
33860
  title: ProductConfigurationWrite
@@ -33767,33 +33867,33 @@ components:
33767
33867
  products.addresponse:
33768
33868
  title: products.addresponse
33769
33869
  type: object
33770
- properties: *ref_451
33870
+ properties: *ref_453
33771
33871
  products.updaterequest:
33772
33872
  title: products.updaterequest
33773
- required: *ref_452
33873
+ required: *ref_454
33774
33874
  type: object
33775
- properties: *ref_453
33875
+ properties: *ref_455
33776
33876
  products.deleterequest:
33777
33877
  title: products.deleterequest
33778
- required: *ref_454
33878
+ required: *ref_456
33779
33879
  type: object
33780
- properties: *ref_455
33880
+ properties: *ref_457
33781
33881
  unitsOfMeasure.listresponse:
33782
33882
  title: unitsOfMeasure.listresponse
33783
33883
  type: object
33784
- properties: *ref_456
33884
+ properties: *ref_458
33785
33885
  priceLists.listrequest:
33786
33886
  title: priceLists.listrequest
33787
33887
  type: object
33788
- properties: *ref_457
33888
+ properties: *ref_459
33789
33889
  priceLists.listresponse:
33790
33890
  title: priceLists.listresponse
33791
33891
  type: object
33792
- properties: *ref_458
33892
+ properties: *ref_460
33793
33893
  projects.listrequest:
33794
33894
  title: projects.listrequest
33795
33895
  type: object
33796
- properties: *ref_459
33896
+ properties: *ref_461
33797
33897
  ProjectsActuals:
33798
33898
  title: ProjectsActuals
33799
33899
  type: object
@@ -33807,12 +33907,12 @@ components:
33807
33907
  projects.listresponse:
33808
33908
  title: projects.listresponse
33809
33909
  type: object
33810
- properties: *ref_460
33910
+ properties: *ref_462
33811
33911
  projects.inforequest:
33812
33912
  title: projects.inforequest
33813
- required: *ref_461
33913
+ required: *ref_463
33814
33914
  type: object
33815
- properties: *ref_462
33915
+ properties: *ref_464
33816
33916
  Role:
33817
33917
  title: Role
33818
33918
  enum: *ref_89
@@ -33824,26 +33924,26 @@ components:
33824
33924
  projects.inforesponse:
33825
33925
  title: projects.inforesponse
33826
33926
  type: object
33827
- properties: *ref_463
33927
+ properties: *ref_465
33828
33928
  projects.createrequest:
33829
33929
  title: projects.createrequest
33830
- required: *ref_464
33930
+ required: *ref_466
33831
33931
  type: object
33832
- properties: *ref_465
33932
+ properties: *ref_467
33833
33933
  projects.createresponse:
33834
33934
  title: projects.createresponse
33835
33935
  type: object
33836
33936
  properties: *ref_94
33837
33937
  projects.updaterequest:
33838
33938
  title: projects.updaterequest
33839
- required: *ref_466
33939
+ required: *ref_468
33840
33940
  type: object
33841
- properties: *ref_467
33941
+ properties: *ref_469
33842
33942
  projects.closerequest:
33843
33943
  title: projects.closerequest
33844
- required: *ref_468
33944
+ required: *ref_470
33845
33945
  type: object
33846
- properties: *ref_469
33946
+ properties: *ref_471
33847
33947
  projects.reopenrequest:
33848
33948
  title: projects.reopenrequest
33849
33949
  required: *ref_95
@@ -33851,23 +33951,23 @@ components:
33851
33951
  properties: *ref_96
33852
33952
  projects.deleterequest:
33853
33953
  title: projects.deleterequest
33854
- required: *ref_470
33954
+ required: *ref_472
33855
33955
  type: object
33856
- properties: *ref_471
33956
+ properties: *ref_473
33857
33957
  projects.addParticipantrequest:
33858
33958
  title: projects.addParticipantrequest
33859
- required: *ref_472
33959
+ required: *ref_474
33860
33960
  type: object
33861
- properties: *ref_473
33961
+ properties: *ref_475
33862
33962
  projects.updateParticipantrequest:
33863
33963
  title: projects.updateParticipantrequest
33864
- required: *ref_474
33964
+ required: *ref_476
33865
33965
  type: object
33866
- properties: *ref_475
33966
+ properties: *ref_477
33867
33967
  milestones.listrequest:
33868
33968
  title: milestones.listrequest
33869
33969
  type: object
33870
- properties: *ref_476
33970
+ properties: *ref_478
33871
33971
  MilestonesActuals:
33872
33972
  title: MilestonesActuals
33873
33973
  type: object
@@ -33881,50 +33981,50 @@ components:
33881
33981
  milestones.listresponse:
33882
33982
  title: milestones.listresponse
33883
33983
  type: object
33884
- properties: *ref_477
33984
+ properties: *ref_479
33885
33985
  milestones.inforequest:
33886
33986
  title: milestones.inforequest
33887
- required: *ref_478
33987
+ required: *ref_480
33888
33988
  type: object
33889
- properties: *ref_479
33989
+ properties: *ref_481
33890
33990
  milestones.inforesponse:
33891
33991
  title: milestones.inforesponse
33892
33992
  type: object
33893
- properties: *ref_480
33993
+ properties: *ref_482
33894
33994
  milestones.createrequest:
33895
33995
  title: milestones.createrequest
33896
- required: *ref_481
33996
+ required: *ref_483
33897
33997
  type: object
33898
- properties: *ref_482
33899
- oneOf: *ref_483
33998
+ properties: *ref_484
33999
+ oneOf: *ref_485
33900
34000
  milestones.createresponse:
33901
34001
  title: milestones.createresponse
33902
34002
  type: object
33903
- properties: *ref_484
34003
+ properties: *ref_486
33904
34004
  milestones.updaterequest:
33905
34005
  title: milestones.updaterequest
33906
- required: *ref_485
34006
+ required: *ref_487
33907
34007
  type: object
33908
- properties: *ref_486
34008
+ properties: *ref_488
33909
34009
  milestones.deleterequest:
33910
34010
  title: milestones.deleterequest
33911
- required: *ref_487
34011
+ required: *ref_489
33912
34012
  type: object
33913
- properties: *ref_488
34013
+ properties: *ref_490
33914
34014
  milestones.closerequest:
33915
34015
  title: milestones.closerequest
33916
- required: *ref_489
34016
+ required: *ref_491
33917
34017
  type: object
33918
- properties: *ref_490
34018
+ properties: *ref_492
33919
34019
  milestones.openrequest:
33920
34020
  title: milestones.openrequest
33921
- required: *ref_491
34021
+ required: *ref_493
33922
34022
  type: object
33923
- properties: *ref_492
34023
+ properties: *ref_494
33924
34024
  projects-v2.listrequest:
33925
34025
  title: projects-v2.listrequest
33926
34026
  type: object
33927
- properties: *ref_493
34027
+ properties: *ref_495
33928
34028
  Color:
33929
34029
  title: Color
33930
34030
  enum: *ref_92
@@ -33937,21 +34037,21 @@ components:
33937
34037
  projects-v2.listresponse:
33938
34038
  title: projects-v2.listresponse
33939
34039
  type: object
33940
- properties: *ref_494
34040
+ properties: *ref_496
33941
34041
  projects-v2.inforequest:
33942
34042
  title: projects-v2.inforequest
33943
- required: *ref_495
34043
+ required: *ref_497
33944
34044
  type: object
33945
- properties: *ref_496
34045
+ properties: *ref_498
33946
34046
  projects-v2.inforesponse:
33947
34047
  title: projects.inforesponse1
33948
34048
  type: object
33949
- properties: *ref_497
34049
+ properties: *ref_499
33950
34050
  projects-v2.createrequest:
33951
34051
  title: projects-v2.createrequest
33952
- required: *ref_498
34052
+ required: *ref_500
33953
34053
  type: object
33954
- properties: *ref_499
34054
+ properties: *ref_501
33955
34055
  BillingMethod:
33956
34056
  title: BillingMethod
33957
34057
  required: *ref_98
@@ -33959,116 +34059,116 @@ components:
33959
34059
  properties: *ref_99
33960
34060
  projects-v2.updaterequest:
33961
34061
  title: projects-v2.updaterequest
33962
- required: *ref_500
34062
+ required: *ref_502
33963
34063
  type: object
33964
- properties: *ref_501
34064
+ properties: *ref_503
33965
34065
  projects-v2.closerequest:
33966
34066
  title: projects-v2.closerequest
33967
- required: *ref_502
34067
+ required: *ref_504
33968
34068
  type: object
33969
- properties: *ref_503
34069
+ properties: *ref_505
33970
34070
  projects-v2.duplicaterequest:
33971
34071
  title: projects-v2.duplicaterequest
33972
- required: *ref_504
34072
+ required: *ref_506
33973
34073
  type: object
33974
- properties: *ref_505
34074
+ properties: *ref_507
33975
34075
  projects-v2.duplicateresponse:
33976
34076
  title: projects-v2.duplicateresponse
33977
34077
  type: object
33978
- properties: *ref_506
34078
+ properties: *ref_508
33979
34079
  projects-v2.deleterequest:
33980
34080
  title: projects-v2.deleterequest
33981
- required: *ref_507
34081
+ required: *ref_509
33982
34082
  type: object
33983
- properties: *ref_508
34083
+ properties: *ref_510
33984
34084
  projects-v2.addOwnerrequest:
33985
34085
  title: projects-v2.addOwnerrequest
33986
- required: *ref_509
34086
+ required: *ref_511
33987
34087
  type: object
33988
- properties: *ref_510
34088
+ properties: *ref_512
33989
34089
  projects-v2.removeOwnerrequest:
33990
34090
  title: projects-v2.removeOwnerrequest
33991
- required: *ref_511
34091
+ required: *ref_513
33992
34092
  type: object
33993
- properties: *ref_512
34093
+ properties: *ref_514
33994
34094
  projects-v2.assignrequest:
33995
34095
  title: projects-v2.assignrequest
33996
- required: *ref_513
34096
+ required: *ref_515
33997
34097
  type: object
33998
- properties: *ref_514
34098
+ properties: *ref_516
33999
34099
  projects-v2.unassignrequest:
34000
34100
  title: projects-v2.unassignrequest
34001
- required: *ref_515
34101
+ required: *ref_517
34002
34102
  type: object
34003
- properties: *ref_516
34103
+ properties: *ref_518
34004
34104
  projects-v2.addCustomerrequest:
34005
34105
  title: projects-v2.addCustomerrequest
34006
- required: *ref_517
34106
+ required: *ref_519
34007
34107
  type: object
34008
- properties: *ref_518
34108
+ properties: *ref_520
34009
34109
  projects-v2.removeCustomerrequest:
34010
34110
  title: projects-v2.removeCustomerrequest
34011
- required: *ref_519
34111
+ required: *ref_521
34012
34112
  type: object
34013
- properties: *ref_520
34113
+ properties: *ref_522
34014
34114
  projects-v2.addDealrequest:
34015
34115
  title: projects-v2.addDealrequest
34016
- required: *ref_521
34116
+ required: *ref_523
34017
34117
  type: object
34018
- properties: *ref_522
34118
+ properties: *ref_524
34019
34119
  projects-v2.removeDealrequest:
34020
34120
  title: projects-v2.removeDealrequest
34021
- required: *ref_523
34121
+ required: *ref_525
34022
34122
  type: object
34023
- properties: *ref_524
34123
+ properties: *ref_526
34024
34124
  projects-v2.addQuotationrequest:
34025
34125
  title: projects-v2.addQuotationrequest
34026
- required: *ref_525
34126
+ required: *ref_527
34027
34127
  type: object
34028
- properties: *ref_526
34128
+ properties: *ref_528
34029
34129
  projects-v2.removeQuotationrequest:
34030
34130
  title: projects-v2.removeQuotationrequest
34031
- required: *ref_527
34131
+ required: *ref_529
34032
34132
  type: object
34033
- properties: *ref_528
34133
+ properties: *ref_530
34034
34134
  projects-v2_externalParties.addToProjectrequest:
34035
34135
  title: projects-v2_externalParties.addToProjectrequest
34036
- required: *ref_529
34136
+ required: *ref_531
34037
34137
  type: object
34038
- properties: *ref_530
34138
+ properties: *ref_532
34039
34139
  projects-v2_externalParties.updaterequest:
34040
34140
  title: projects-v2_externalParties.updaterequest
34041
- required: *ref_531
34141
+ required: *ref_533
34042
34142
  type: object
34043
- properties: *ref_532
34143
+ properties: *ref_534
34044
34144
  projects-v2_externalParties.deleterequest:
34045
34145
  title: projects-v2_externalParties.deleterequest
34046
- required: *ref_533
34146
+ required: *ref_535
34047
34147
  type: object
34048
- properties: *ref_534
34148
+ properties: *ref_536
34049
34149
  projects-v2_projectLines.listrequest:
34050
34150
  title: projects-v2_projectLines.listrequest
34051
- required: *ref_535
34151
+ required: *ref_537
34052
34152
  type: object
34053
- properties: *ref_536
34153
+ properties: *ref_538
34054
34154
  projects-v2_projectLines.listresponse:
34055
34155
  title: projects-v2_projectLines.listresponse
34056
34156
  type: object
34057
- properties: *ref_537
34157
+ properties: *ref_539
34058
34158
  projects-v2_projectLines.addToGrouprequest:
34059
34159
  title: projects-v2_projectLines.addToGrouprequest
34060
- required: *ref_538
34160
+ required: *ref_540
34061
34161
  type: object
34062
- properties: *ref_539
34162
+ properties: *ref_541
34063
34163
  projects-v2_projectLines.removeFromGrouprequest:
34064
34164
  title: projects-v2_projectLines.removeFromGrouprequest
34065
- required: *ref_540
34165
+ required: *ref_542
34066
34166
  type: object
34067
- properties: *ref_541
34167
+ properties: *ref_543
34068
34168
  projects-v2_projectGroups.listrequest:
34069
34169
  title: projects-v2_projectGroups.listrequest
34070
34170
  type: object
34071
- properties: *ref_542
34171
+ properties: *ref_544
34072
34172
  BillingStatus:
34073
34173
  title: BillingStatus
34074
34174
  enum: *ref_97
@@ -34077,62 +34177,62 @@ components:
34077
34177
  projects-v2_projectGroups.listresponse:
34078
34178
  title: projects-v2_projectGroups.listresponse
34079
34179
  type: object
34080
- properties: *ref_543
34180
+ properties: *ref_545
34081
34181
  projects-v2_projectGroups.inforequest:
34082
34182
  title: projects-v2_projectGroups.inforequest
34083
- required: *ref_544
34183
+ required: *ref_546
34084
34184
  type: object
34085
- properties: *ref_545
34185
+ properties: *ref_547
34086
34186
  projects-v2_projectGroups.inforesponse:
34087
34187
  title: projects-v2_projectGroups.inforesponse
34088
34188
  type: object
34089
- properties: *ref_546
34189
+ properties: *ref_548
34090
34190
  projects-v2_projectGroups.createrequest:
34091
34191
  title: projects-v2_projectGroups.createrequest
34092
- required: *ref_547
34192
+ required: *ref_549
34093
34193
  type: object
34094
- properties: *ref_548
34194
+ properties: *ref_550
34095
34195
  projects-v2_projectGroups.createresponse:
34096
34196
  title: projects-v2_projectGroups.createresponse
34097
34197
  type: object
34098
- properties: *ref_549
34198
+ properties: *ref_551
34099
34199
  projects-v2_projectGroups.updaterequest:
34100
34200
  title: projects-v2_projectGroups.updaterequest
34101
- required: *ref_550
34201
+ required: *ref_552
34102
34202
  type: object
34103
- properties: *ref_551
34203
+ properties: *ref_553
34104
34204
  projects-v2_projectGroups.duplicaterequest:
34105
34205
  title: projects-v2_projectGroups.duplicaterequest
34106
- required: *ref_552
34206
+ required: *ref_554
34107
34207
  type: object
34108
- properties: *ref_553
34208
+ properties: *ref_555
34109
34209
  projects-v2_projectGroups.duplicateresponse:
34110
34210
  title: projects-v2_projectGroups.duplicateresponse
34111
34211
  type: object
34112
- properties: *ref_554
34212
+ properties: *ref_556
34113
34213
  projects-v2_projectGroups.deleterequest:
34114
34214
  title: projects-v2_projectGroups.deleterequest
34115
- required: *ref_555
34215
+ required: *ref_557
34116
34216
  type: object
34117
- properties: *ref_556
34217
+ properties: *ref_558
34118
34218
  projects-v2_projectGroups.assignrequest:
34119
34219
  title: projects-v2_projectGroups.assignrequest
34120
- required: *ref_557
34220
+ required: *ref_559
34121
34221
  type: object
34122
- properties: *ref_558
34222
+ properties: *ref_560
34123
34223
  projects-v2_projectGroups.unassignrequest:
34124
34224
  title: projects-v2_projectGroups.unassignrequest
34125
- required: *ref_559
34225
+ required: *ref_561
34126
34226
  type: object
34127
- properties: *ref_560
34227
+ properties: *ref_562
34128
34228
  projects-v2_tasks.listrequest:
34129
34229
  title: projects-v2_tasks.listrequest
34130
34230
  type: object
34131
- properties: *ref_561
34231
+ properties: *ref_563
34132
34232
  projects-v2_tasks.listresponse:
34133
34233
  title: projects-v2_tasks.listresponse
34134
34234
  type: object
34135
- properties: *ref_562
34235
+ properties: *ref_564
34136
34236
  tasks.inforequest:
34137
34237
  title: tasks.inforequest
34138
34238
  required: *ref_100
@@ -34141,104 +34241,104 @@ components:
34141
34241
  projects-v2_tasks.inforesponse:
34142
34242
  title: projects-v2_tasks.inforesponse
34143
34243
  type: object
34144
- properties: *ref_563
34244
+ properties: *ref_565
34145
34245
  projects-v2_tasks.createrequest:
34146
34246
  title: projects-v2_tasks.createrequest
34147
- required: *ref_564
34247
+ required: *ref_566
34148
34248
  type: object
34149
- properties: *ref_565
34249
+ properties: *ref_567
34150
34250
  tasks.createresponse:
34151
34251
  title: tasks.createresponse
34152
34252
  type: object
34153
34253
  properties: *ref_103
34154
34254
  projects-v2_tasks.updaterequest:
34155
34255
  title: projects-v2_tasks.updaterequest
34156
- required: *ref_566
34256
+ required: *ref_568
34157
34257
  type: object
34158
- properties: *ref_567
34258
+ properties: *ref_569
34159
34259
  projects-v2_tasks.duplicaterequest:
34160
34260
  title: projects-v2_tasks.duplicaterequest
34161
- required: *ref_568
34261
+ required: *ref_570
34162
34262
  type: object
34163
- properties: *ref_569
34263
+ properties: *ref_571
34164
34264
  projects-v2_tasks.duplicateresponse:
34165
34265
  title: projects-v2_tasks.duplicateresponse
34166
34266
  type: object
34167
- properties: *ref_570
34267
+ properties: *ref_572
34168
34268
  projects-v2_tasks.deleterequest:
34169
34269
  title: projects-v2_tasks.deleterequest
34170
- required: *ref_571
34270
+ required: *ref_573
34171
34271
  type: object
34172
- properties: *ref_572
34272
+ properties: *ref_574
34173
34273
  projects-v2_tasks.assignrequest:
34174
34274
  title: projects-v2_tasks.assignrequest
34175
- required: *ref_573
34275
+ required: *ref_575
34176
34276
  type: object
34177
- properties: *ref_574
34277
+ properties: *ref_576
34178
34278
  projects-v2_tasks.unassignrequest:
34179
34279
  title: projects-v2_tasks.unassignrequest
34180
- required: *ref_575
34280
+ required: *ref_577
34181
34281
  type: object
34182
- properties: *ref_576
34282
+ properties: *ref_578
34183
34283
  projects-v2_materials.listrequest:
34184
34284
  title: projects-v2_materials.listrequest
34185
34285
  type: object
34186
- properties: *ref_577
34286
+ properties: *ref_579
34187
34287
  projects-v2_materials.listresponse:
34188
34288
  title: projects-v2_materials.listresponse
34189
34289
  type: object
34190
- properties: *ref_578
34290
+ properties: *ref_580
34191
34291
  projects-v2_materials.inforequest:
34192
34292
  title: projects-v2_materials.inforequest
34193
- required: *ref_579
34293
+ required: *ref_581
34194
34294
  type: object
34195
- properties: *ref_580
34295
+ properties: *ref_582
34196
34296
  projects-v2_materials.inforesponse:
34197
34297
  title: projects-v2_materials.inforesponse
34198
34298
  type: object
34199
- properties: *ref_581
34299
+ properties: *ref_583
34200
34300
  projects-v2_materials.createrequest:
34201
34301
  title: projects-v2_materials.createrequest
34202
- required: *ref_582
34302
+ required: *ref_584
34203
34303
  type: object
34204
- properties: *ref_583
34304
+ properties: *ref_585
34205
34305
  projects-v2_materials.createresponse:
34206
34306
  title: projects-v2_materials.createresponse
34207
34307
  type: object
34208
- properties: *ref_584
34308
+ properties: *ref_586
34209
34309
  projects-v2_materials.updaterequest:
34210
34310
  title: projects-v2_materials.updaterequest
34211
- required: *ref_585
34311
+ required: *ref_587
34212
34312
  type: object
34213
- properties: *ref_586
34313
+ properties: *ref_588
34214
34314
  projects-v2_materials.duplicaterequest:
34215
34315
  title: projects-v2_materials.duplicaterequest
34216
- required: *ref_587
34316
+ required: *ref_589
34217
34317
  type: object
34218
- properties: *ref_588
34318
+ properties: *ref_590
34219
34319
  projects-v2_materials.duplicateresponse:
34220
34320
  title: projects-v2_materials.duplicateresponse
34221
34321
  type: object
34222
- properties: *ref_589
34322
+ properties: *ref_591
34223
34323
  projects-v2_materials.deleterequest:
34224
34324
  title: projects-v2_materials.deleterequest
34225
- required: *ref_590
34325
+ required: *ref_592
34226
34326
  type: object
34227
- properties: *ref_591
34327
+ properties: *ref_593
34228
34328
  projects-v2_materials.assignrequest:
34229
34329
  title: projects-v2_materials.assignrequest
34230
- required: *ref_592
34330
+ required: *ref_594
34231
34331
  type: object
34232
- properties: *ref_593
34332
+ properties: *ref_595
34233
34333
  projects-v2_materials.unassignrequest:
34234
34334
  title: projects-v2_materials.unassignrequest
34235
- required: *ref_594
34335
+ required: *ref_596
34236
34336
  type: object
34237
- properties: *ref_595
34337
+ properties: *ref_597
34238
34338
  tasks.listrequest:
34239
34339
  title: tasks.listrequest1
34240
34340
  type: object
34241
- properties: *ref_596
34341
+ properties: *ref_598
34242
34342
  Priority:
34243
34343
  title: Priority
34244
34344
  enum: *ref_102
@@ -34246,49 +34346,49 @@ components:
34246
34346
  tasks.listresponse:
34247
34347
  title: tasks.listresponse1
34248
34348
  type: object
34249
- properties: *ref_597
34349
+ properties: *ref_599
34250
34350
  tasks.inforesponse:
34251
34351
  title: tasks.inforesponse1
34252
34352
  type: object
34253
- properties: *ref_598
34353
+ properties: *ref_600
34254
34354
  tasks.createrequest:
34255
34355
  title: tasks.createrequest1
34256
- required: *ref_599
34356
+ required: *ref_601
34257
34357
  type: object
34258
- properties: *ref_600
34358
+ properties: *ref_602
34259
34359
  tasks.updaterequest:
34260
34360
  title: tasks.updaterequest1
34261
- required: *ref_601
34361
+ required: *ref_603
34262
34362
  type: object
34263
- properties: *ref_602
34363
+ properties: *ref_604
34264
34364
  tasks.completerequest:
34265
34365
  title: tasks.completerequest
34266
- required: *ref_603
34366
+ required: *ref_605
34267
34367
  type: object
34268
- properties: *ref_604
34368
+ properties: *ref_606
34269
34369
  tasks.reopenrequest:
34270
34370
  title: tasks.reopenrequest
34271
- required: *ref_605
34371
+ required: *ref_607
34272
34372
  type: object
34273
- properties: *ref_606
34373
+ properties: *ref_608
34274
34374
  tasks.deleterequest:
34275
34375
  title: tasks.deleterequest1
34276
- required: *ref_607
34376
+ required: *ref_609
34277
34377
  type: object
34278
- properties: *ref_608
34378
+ properties: *ref_610
34279
34379
  tasks.schedulerequest:
34280
34380
  title: tasks.schedulerequest
34281
- required: *ref_609
34381
+ required: *ref_611
34282
34382
  type: object
34283
- properties: *ref_610
34383
+ properties: *ref_612
34284
34384
  tasks.scheduleresponse:
34285
34385
  title: tasks.scheduleresponse
34286
34386
  type: object
34287
- properties: *ref_611
34387
+ properties: *ref_613
34288
34388
  timeTracking.listrequest:
34289
34389
  title: timeTracking.listrequest
34290
34390
  type: object
34291
- properties: *ref_612
34391
+ properties: *ref_614
34292
34392
  BillingInfo:
34293
34393
  title: BillingInfo
34294
34394
  type: object
@@ -34304,82 +34404,82 @@ components:
34304
34404
  timeTracking.listresponse:
34305
34405
  title: timeTracking.listresponse
34306
34406
  type: object
34307
- properties: *ref_613
34407
+ properties: *ref_615
34308
34408
  timeTracking.inforequest:
34309
34409
  title: timeTracking.inforequest
34310
- required: *ref_614
34410
+ required: *ref_616
34311
34411
  type: object
34312
- properties: *ref_615
34412
+ properties: *ref_617
34313
34413
  timeTracking.inforesponse:
34314
34414
  title: timeTracking.inforesponse
34315
34415
  type: object
34316
- properties: *ref_616
34416
+ properties: *ref_618
34317
34417
  timeTracking.addrequest:
34318
34418
  title: timeTracking.addrequest
34319
34419
  type: object
34320
- properties: *ref_617
34321
- oneOf: *ref_618
34420
+ properties: *ref_619
34421
+ oneOf: *ref_620
34322
34422
  timeTracking.addresponse:
34323
34423
  title: timeTracking.addresponse
34324
34424
  type: object
34325
- properties: *ref_619
34425
+ properties: *ref_621
34326
34426
  timeTracking.updaterequest:
34327
34427
  title: timeTracking.updaterequest
34328
- required: *ref_620
34428
+ required: *ref_622
34329
34429
  type: object
34330
- properties: *ref_621
34331
- oneOf: *ref_622
34430
+ properties: *ref_623
34431
+ oneOf: *ref_624
34332
34432
  timeTracking.resumerequest:
34333
34433
  title: timeTracking.resumerequest
34334
- required: *ref_623
34434
+ required: *ref_625
34335
34435
  type: object
34336
- properties: *ref_624
34436
+ properties: *ref_626
34337
34437
  timeTracking.resumeresponse:
34338
34438
  title: timeTracking.resumeresponse
34339
34439
  type: object
34340
- properties: *ref_625
34440
+ properties: *ref_627
34341
34441
  timeTracking.deleterequest:
34342
34442
  title: timeTracking.deleterequest
34343
- required: *ref_626
34443
+ required: *ref_628
34344
34444
  type: object
34345
- properties: *ref_627
34445
+ properties: *ref_629
34346
34446
  timers.currentresponse:
34347
34447
  title: timers.currentresponse
34348
34448
  type: object
34349
- properties: *ref_628
34449
+ properties: *ref_630
34350
34450
  timers.startrequest:
34351
34451
  title: timers.startrequest
34352
34452
  type: object
34353
- properties: *ref_629
34453
+ properties: *ref_631
34354
34454
  timers.startresponse:
34355
34455
  title: timers.startresponse
34356
34456
  type: object
34357
- properties: *ref_630
34457
+ properties: *ref_632
34358
34458
  timers.stopresponse:
34359
34459
  title: timers.stopresponse
34360
34460
  type: object
34361
- properties: *ref_631
34461
+ properties: *ref_633
34362
34462
  timers.updaterequest:
34363
34463
  title: timers.updaterequest
34364
34464
  type: object
34365
- properties: *ref_632
34465
+ properties: *ref_634
34366
34466
  tickets.listrequest:
34367
34467
  title: tickets.listrequest
34368
34468
  type: object
34369
- properties: *ref_633
34469
+ properties: *ref_635
34370
34470
  tickets.listresponse:
34371
34471
  title: tickets.listresponse
34372
34472
  type: object
34373
- properties: *ref_634
34473
+ properties: *ref_636
34374
34474
  tickets.inforequest:
34375
34475
  title: tickets.inforequest
34376
- required: *ref_635
34476
+ required: *ref_637
34377
34477
  type: object
34378
- properties: *ref_636
34478
+ properties: *ref_638
34379
34479
  tickets.inforesponse:
34380
34480
  title: tickets.inforesponse
34381
34481
  type: object
34382
- properties: *ref_637
34482
+ properties: *ref_639
34383
34483
  CompanyCustomer:
34384
34484
  title: CompanyCustomer
34385
34485
  required: *ref_107
@@ -34387,22 +34487,22 @@ components:
34387
34487
  properties: *ref_108
34388
34488
  tickets.createrequest:
34389
34489
  title: tickets.createrequest
34390
- required: *ref_638
34490
+ required: *ref_640
34391
34491
  type: object
34392
- properties: *ref_639
34492
+ properties: *ref_641
34393
34493
  tickets.createresponse:
34394
34494
  title: tickets.createresponse
34395
34495
  type: object
34396
- properties: *ref_640
34496
+ properties: *ref_642
34397
34497
  tickets.updaterequest:
34398
34498
  title: tickets.updaterequest
34399
- required: *ref_641
34499
+ required: *ref_643
34400
34500
  type: object
34401
- properties: *ref_642
34501
+ properties: *ref_644
34402
34502
  tickets.listMessagesrequest:
34403
34503
  title: tickets.listMessagesrequest
34404
34504
  type: object
34405
- properties: *ref_643
34505
+ properties: *ref_645
34406
34506
  SentBy:
34407
34507
  title: SentBy
34408
34508
  type: object
@@ -34410,55 +34510,55 @@ components:
34410
34510
  tickets.listMessagesresponse:
34411
34511
  title: tickets.listMessagesresponse
34412
34512
  type: object
34413
- properties: *ref_644
34513
+ properties: *ref_646
34414
34514
  tickets.getMessagerequest:
34415
34515
  title: tickets.getMessagerequest
34416
34516
  type: object
34417
- properties: *ref_645
34517
+ properties: *ref_647
34418
34518
  tickets.getMessageresponse:
34419
34519
  title: tickets.getMessageresponse
34420
34520
  type: object
34421
- properties: *ref_646
34521
+ properties: *ref_648
34422
34522
  tickets.importMessagerequest:
34423
34523
  title: tickets.importMessagerequest
34424
- required: *ref_647
34524
+ required: *ref_649
34425
34525
  type: object
34426
- properties: *ref_648
34526
+ properties: *ref_650
34427
34527
  tickets.importMessageresponse:
34428
34528
  title: tickets.importMessageresponse
34429
34529
  type: object
34430
- properties: *ref_649
34530
+ properties: *ref_651
34431
34531
  tickets.addReplyrequest:
34432
34532
  title: tickets.addReplyrequest
34433
- required: *ref_650
34533
+ required: *ref_652
34434
34534
  type: object
34435
- properties: *ref_651
34535
+ properties: *ref_653
34436
34536
  tickets.addReplyresponse:
34437
34537
  title: tickets.addReplyresponse
34438
34538
  type: object
34439
- properties: *ref_652
34539
+ properties: *ref_654
34440
34540
  tickets.addInternalMessagerequest:
34441
34541
  title: tickets.addInternalMessagerequest
34442
- required: *ref_653
34542
+ required: *ref_655
34443
34543
  type: object
34444
- properties: *ref_654
34544
+ properties: *ref_656
34445
34545
  tickets.addInternalMessageresponse:
34446
34546
  title: tickets.addInternalMessageresponse
34447
34547
  type: object
34448
- properties: *ref_655
34548
+ properties: *ref_657
34449
34549
  ticketStatus.listrequest:
34450
34550
  title: ticketStatus.listrequest
34451
34551
  type: object
34452
- properties: *ref_656
34552
+ properties: *ref_658
34453
34553
  ticketStatus.listresponse:
34454
34554
  title: ticketStatus.listresponse
34455
34555
  type: object
34456
- properties: *ref_657
34556
+ properties: *ref_659
34457
34557
  files.listrequest:
34458
34558
  title: files.listrequest
34459
- required: *ref_658
34559
+ required: *ref_660
34460
34560
  type: object
34461
- properties: *ref_659
34561
+ properties: *ref_661
34462
34562
  MimeType:
34463
34563
  title: MimeType
34464
34564
  enum: *ref_110
@@ -34466,93 +34566,93 @@ components:
34466
34566
  files.listresponse:
34467
34567
  title: files.listresponse
34468
34568
  type: object
34469
- properties: *ref_660
34569
+ properties: *ref_662
34470
34570
  files.inforequest:
34471
34571
  title: files.inforequest
34472
- required: *ref_661
34572
+ required: *ref_663
34473
34573
  type: object
34474
- properties: *ref_662
34574
+ properties: *ref_664
34475
34575
  files.inforesponse:
34476
34576
  title: files.inforesponse
34477
34577
  type: object
34478
- properties: *ref_663
34578
+ properties: *ref_665
34479
34579
  files.downloadrequest:
34480
34580
  title: files.downloadrequest
34481
- required: *ref_664
34581
+ required: *ref_666
34482
34582
  type: object
34483
- properties: *ref_665
34583
+ properties: *ref_667
34484
34584
  files.downloadresponse:
34485
34585
  title: files.downloadresponse
34486
34586
  type: object
34487
- properties: *ref_666
34587
+ properties: *ref_668
34488
34588
  files.uploadrequest:
34489
34589
  title: files.uploadrequest
34490
- required: *ref_667
34590
+ required: *ref_669
34491
34591
  type: object
34492
- properties: *ref_668
34592
+ properties: *ref_670
34493
34593
  files.uploadresponse:
34494
34594
  title: files.uploadresponse
34495
34595
  type: object
34496
- properties: *ref_669
34596
+ properties: *ref_671
34497
34597
  files.deleterequest:
34498
34598
  title: files.deleterequest
34499
- required: *ref_670
34599
+ required: *ref_672
34500
34600
  type: object
34501
- properties: *ref_671
34601
+ properties: *ref_673
34502
34602
  mailTemplates.listrequest:
34503
34603
  title: mailTemplates.listrequest
34504
- required: *ref_672
34604
+ required: *ref_674
34505
34605
  type: object
34506
- properties: *ref_673
34606
+ properties: *ref_675
34507
34607
  mailTemplates.listresponse:
34508
34608
  title: mailTemplates.listresponse
34509
34609
  type: object
34510
- properties: *ref_674
34610
+ properties: *ref_676
34511
34611
  migrate.idrequest:
34512
34612
  title: migrate.idrequest
34513
34613
  type: object
34514
- properties: *ref_675
34614
+ properties: *ref_677
34515
34615
  migrate.idresponse:
34516
34616
  title: migrate.idresponse
34517
34617
  type: object
34518
- properties: *ref_676
34618
+ properties: *ref_678
34519
34619
  migrate.taxRaterequest:
34520
34620
  title: migrate.taxRaterequest
34521
34621
  type: object
34522
- properties: *ref_677
34622
+ properties: *ref_679
34523
34623
  migrate.taxRateresponse:
34524
34624
  title: migrate.taxRateresponse
34525
34625
  type: object
34526
- properties: *ref_678
34626
+ properties: *ref_680
34527
34627
  migrate.activityTyperequest:
34528
34628
  title: migrate.activityTyperequest
34529
34629
  type: object
34530
- properties: *ref_679
34630
+ properties: *ref_681
34531
34631
  migrate.activityTyperesponse:
34532
34632
  title: migrate.activityTyperesponse
34533
34633
  type: object
34534
- properties: *ref_680
34634
+ properties: *ref_682
34535
34635
  orders.inforequest:
34536
34636
  title: orders.inforequest
34537
- required: *ref_681
34637
+ required: *ref_683
34538
34638
  type: object
34539
- properties: *ref_682
34639
+ properties: *ref_684
34540
34640
  OrdersGroupedLinesResponse:
34541
34641
  title: OrdersGroupedLinesResponse
34542
34642
  type: object
34543
- properties: *ref_683
34643
+ properties: *ref_685
34544
34644
  orders.inforesponse:
34545
34645
  title: orders.inforesponse
34546
34646
  type: object
34547
- properties: *ref_684
34647
+ properties: *ref_686
34548
34648
  orders.listrequest:
34549
34649
  title: orders.listrequest
34550
34650
  type: object
34551
- properties: *ref_685
34651
+ properties: *ref_687
34552
34652
  orders.listresponse:
34553
34653
  title: orders.listresponse
34554
34654
  type: object
34555
- properties: *ref_686
34655
+ properties: *ref_688
34556
34656
  WebHook:
34557
34657
  title: WebHook
34558
34658
  required: *ref_111
@@ -34561,24 +34661,24 @@ components:
34561
34661
  webhooks.listresponse:
34562
34662
  title: webhooks.listresponse
34563
34663
  type: object
34564
- properties: *ref_687
34664
+ properties: *ref_689
34565
34665
  cloudPlatforms.urlrequest:
34566
34666
  title: cloudPlatforms.urlrequest
34567
- required: *ref_688
34667
+ required: *ref_690
34568
34668
  type: object
34569
- properties: *ref_689
34669
+ properties: *ref_691
34570
34670
  cloudPlatforms.urlresponse:
34571
34671
  title: cloudPlatforms.urlresponse
34572
34672
  type: object
34573
- properties: *ref_690
34673
+ properties: *ref_692
34574
34674
  accounts.projects-v2-statusresponse:
34575
34675
  title: accounts.projects-v2-statusresponse
34576
34676
  type: object
34577
- properties: *ref_691
34677
+ properties: *ref_693
34578
34678
  plannableItems.listrequest:
34579
34679
  title: plannableItems.listrequest
34580
34680
  type: object
34581
- properties: *ref_692
34681
+ properties: *ref_694
34582
34682
  DurationInMinutesFull:
34583
34683
  title: DurationInMinutesFull
34584
34684
  type: object
@@ -34586,15 +34686,15 @@ components:
34586
34686
  plannableItems.listresponse:
34587
34687
  title: plannableItems.listresponse
34588
34688
  type: object
34589
- properties: *ref_693
34689
+ properties: *ref_695
34590
34690
  plannableItems.inforequest:
34591
34691
  title: plannableItems.inforequest
34592
34692
  type: object
34593
- properties: *ref_694
34693
+ properties: *ref_696
34594
34694
  plannableItems.inforesponse:
34595
34695
  title: plannableItems.inforesponse
34596
34696
  type: object
34597
- properties: *ref_695
34697
+ properties: *ref_697
34598
34698
  SourceType:
34599
34699
  title: SourceType
34600
34700
  enum: *ref_114
@@ -34602,30 +34702,30 @@ components:
34602
34702
  reservations.listrequest:
34603
34703
  title: reservations.listrequest
34604
34704
  type: object
34605
- properties: *ref_696
34705
+ properties: *ref_698
34606
34706
  reservations.listresponse:
34607
34707
  title: reservations.listresponse
34608
34708
  type: object
34609
- properties: *ref_697
34709
+ properties: *ref_699
34610
34710
  reservations.createrequest:
34611
34711
  title: reservations.createrequest
34612
34712
  type: object
34613
- required: *ref_698
34614
- properties: *ref_699
34713
+ required: *ref_700
34714
+ properties: *ref_701
34615
34715
  reservations.createresponse:
34616
34716
  title: reservations.createresponse
34617
34717
  type: object
34618
- properties: *ref_700
34718
+ properties: *ref_702
34619
34719
  reservations.updaterequest:
34620
34720
  title: reservations.updaterequest
34621
34721
  type: object
34622
- required: *ref_701
34623
- properties: *ref_702
34722
+ required: *ref_703
34723
+ properties: *ref_704
34624
34724
  reservations.deleterequest:
34625
34725
  title: reservations.deleterequest
34626
34726
  type: object
34627
- required: *ref_703
34628
- properties: *ref_704
34727
+ required: *ref_705
34728
+ properties: *ref_706
34629
34729
  Period:
34630
34730
  title: Period
34631
34731
  type: object
@@ -34633,8 +34733,8 @@ components:
34633
34733
  userAvailability.totalrequest:
34634
34734
  title: userAvailability.totalrequest
34635
34735
  type: object
34636
- required: *ref_705
34637
- properties: *ref_706
34736
+ required: *ref_707
34737
+ properties: *ref_708
34638
34738
  UserAvailability:
34639
34739
  title: UserAvailability
34640
34740
  type: object
@@ -34642,16 +34742,16 @@ components:
34642
34742
  userAvailability.totalresponse:
34643
34743
  title: userAvailability.totalresponse
34644
34744
  type: object
34645
- properties: *ref_707
34745
+ properties: *ref_709
34646
34746
  userAvailability.dailyrequest:
34647
34747
  title: userAvailability.dailyrequest
34648
34748
  type: object
34649
- required: *ref_708
34650
- properties: *ref_709
34749
+ required: *ref_710
34750
+ properties: *ref_711
34651
34751
  userAvailability.dailyresponse:
34652
34752
  title: userAvailability.dailyresponse
34653
34753
  type: object
34654
- properties: *ref_710
34754
+ properties: *ref_712
34655
34755
  x-tagGroups:
34656
34756
  - name: General
34657
34757
  tags: