@ampeco/public-api-mcp 3.99.2 → 3.100.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.
@@ -9159,6 +9159,17 @@
9159
9159
  "type": "string"
9160
9160
  }
9161
9161
  },
9162
+ "uptimeTrackingEnabled": {
9163
+ "type": "boolean",
9164
+ "default": false,
9165
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period.\nWhen set to false or omitted, Uptime tracking remains disabled.\n\n**Requirements:**\n- Charge point must be commercial type (public or private)\n- Operator must have operational availability enabled\n\n**Validation Errors:**\n- Returns HTTP 422 if charge point is personal type\n- Returns HTTP 422 if operator has operational availability disabled\n\n**Examples:**\n```json\n{\n \"name\": \"CP-001\",\n \"accessType\": \"public\",\n \"uptimeTrackingEnabled\": true\n}\n```\n\n**Validation Error Examples:**\n\nPersonal charge point error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Uptime tracking can only be enabled for commercial charge points\"\n ]\n }\n}\n```\n\nOperator settings error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Operator must have operational availability enabled to track uptime\"\n ]\n }\n}\n```\n"
9166
+ },
9167
+ "uptimeTrackingActivatedAt": {
9168
+ "type": "string",
9169
+ "format": "date-time",
9170
+ "description": "The timestamp when Uptime tracking was activated (start of current open operational period).\nOmitted from response if Uptime tracking is not enabled or has never been activated.\nFormat: ISO 8601 with timezone offset.\n\n**Example:**\n`\"2025-10-14T08:30:00+00:00\"` - When uptime tracking is enabled\n\n**Note:** This field is omitted from the response when uptime tracking is disabled or never activated.\n",
9171
+ "example": "2025-10-14T08:30:00+00:00"
9172
+ },
9162
9173
  "name": {
9163
9174
  "type": "string"
9164
9175
  },
@@ -9695,6 +9706,17 @@
9695
9706
  "type": "string"
9696
9707
  }
9697
9708
  },
9709
+ "uptimeTrackingEnabled": {
9710
+ "type": "boolean",
9711
+ "default": false,
9712
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period.\nWhen set to false or omitted, Uptime tracking remains disabled.\n\n**Requirements:**\n- Charge point must be commercial type (public or private)\n- Operator must have operational availability enabled\n\n**Validation Errors:**\n- Returns HTTP 422 if charge point is personal type\n- Returns HTTP 422 if operator has operational availability disabled\n\n**Examples:**\n```json\n{\n \"name\": \"CP-001\",\n \"accessType\": \"public\",\n \"uptimeTrackingEnabled\": true\n}\n```\n\n**Validation Error Examples:**\n\nPersonal charge point error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Uptime tracking can only be enabled for commercial charge points\"\n ]\n }\n}\n```\n\nOperator settings error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Operator must have operational availability enabled to track uptime\"\n ]\n }\n}\n```\n"
9713
+ },
9714
+ "uptimeTrackingActivatedAt": {
9715
+ "type": "string",
9716
+ "format": "date-time",
9717
+ "description": "The timestamp when Uptime tracking was activated (start of current open operational period).\nOmitted from response if Uptime tracking is not enabled or has never been activated.\nFormat: ISO 8601 with timezone offset.\n\n**Example:**\n`\"2025-10-14T08:30:00+00:00\"` - When uptime tracking is enabled\n\n**Note:** This field is omitted from the response when uptime tracking is disabled or never activated.\n",
9718
+ "example": "2025-10-14T08:30:00+00:00"
9719
+ },
9698
9720
  "name": {
9699
9721
  "type": "string"
9700
9722
  },
@@ -10117,6 +10139,17 @@
10117
10139
  "type": "string"
10118
10140
  }
10119
10141
  },
10142
+ "uptimeTrackingEnabled": {
10143
+ "type": "boolean",
10144
+ "default": false,
10145
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period.\nWhen set to false or omitted, Uptime tracking remains disabled.\n\n**Requirements:**\n- Charge point must be commercial type (public or private)\n- Operator must have operational availability enabled\n\n**Validation Errors:**\n- Returns HTTP 422 if charge point is personal type\n- Returns HTTP 422 if operator has operational availability disabled\n\n**Examples:**\n```json\n{\n \"name\": \"CP-001\",\n \"accessType\": \"public\",\n \"uptimeTrackingEnabled\": true\n}\n```\n\n**Validation Error Examples:**\n\nPersonal charge point error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Uptime tracking can only be enabled for commercial charge points\"\n ]\n }\n}\n```\n\nOperator settings error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Operator must have operational availability enabled to track uptime\"\n ]\n }\n}\n```\n"
10146
+ },
10147
+ "uptimeTrackingActivatedAt": {
10148
+ "type": "string",
10149
+ "format": "date-time",
10150
+ "description": "The timestamp when Uptime tracking was activated (start of current open operational period).\nOmitted from response if Uptime tracking is not enabled or has never been activated.\nFormat: ISO 8601 with timezone offset.\n\n**Example:**\n`\"2025-10-14T08:30:00+00:00\"` - When uptime tracking is enabled\n\n**Note:** This field is omitted from the response when uptime tracking is disabled or never activated.\n",
10151
+ "example": "2025-10-14T08:30:00+00:00"
10152
+ },
10120
10153
  "name": {
10121
10154
  "type": "string"
10122
10155
  },
@@ -10589,6 +10622,17 @@
10589
10622
  "type": "string"
10590
10623
  }
10591
10624
  },
10625
+ "uptimeTrackingEnabled": {
10626
+ "type": "boolean",
10627
+ "default": false,
10628
+ "description": "When set to true, enables Uptime tracking for the charge point by creating an operational period.\nWhen set to false or omitted, Uptime tracking remains disabled.\n\n**Requirements:**\n- Charge point must be commercial type (public or private)\n- Operator must have operational availability enabled\n\n**Validation Errors:**\n- Returns HTTP 422 if charge point is personal type\n- Returns HTTP 422 if operator has operational availability disabled\n\n**Examples:**\n```json\n{\n \"name\": \"CP-001\",\n \"accessType\": \"public\",\n \"uptimeTrackingEnabled\": true\n}\n```\n\n**Validation Error Examples:**\n\nPersonal charge point error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Uptime tracking can only be enabled for commercial charge points\"\n ]\n }\n}\n```\n\nOperator settings error:\n```json\n{\n \"message\": \"The given data was invalid.\",\n \"errors\": {\n \"uptimeTrackingEnabled\": [\n \"Operator must have operational availability enabled to track uptime\"\n ]\n }\n}\n```\n"
10629
+ },
10630
+ "uptimeTrackingActivatedAt": {
10631
+ "type": "string",
10632
+ "format": "date-time",
10633
+ "description": "The timestamp when Uptime tracking was activated (start of current open operational period).\nOmitted from response if Uptime tracking is not enabled or has never been activated.\nFormat: ISO 8601 with timezone offset.\n\n**Example:**\n`\"2025-10-14T08:30:00+00:00\"` - When uptime tracking is enabled\n\n**Note:** This field is omitted from the response when uptime tracking is disabled or never activated.\n",
10634
+ "example": "2025-10-14T08:30:00+00:00"
10635
+ },
10592
10636
  "name": {
10593
10637
  "type": "string"
10594
10638
  },
@@ -11656,8 +11700,13 @@
11656
11700
  },
11657
11701
  "electricityCostReimbursementIntegrationId": {
11658
11702
  "type": "integer",
11659
- "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points.\n",
11703
+ "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points. When not set, this property is omitted from the response.\n",
11660
11704
  "example": 123
11705
+ },
11706
+ "installationAndMaintenanceCompanyId": {
11707
+ "type": "integer",
11708
+ "description": "The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. When not set, this property is omitted from the response.\n",
11709
+ "example": 456
11661
11710
  }
11662
11711
  }
11663
11712
  }
@@ -12249,8 +12298,13 @@
12249
12298
  },
12250
12299
  "electricityCostReimbursementIntegrationId": {
12251
12300
  "type": "integer",
12252
- "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points.\n",
12301
+ "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points. When not set, this property is omitted from the response.\n",
12253
12302
  "example": 123
12303
+ },
12304
+ "installationAndMaintenanceCompanyId": {
12305
+ "type": "integer",
12306
+ "description": "The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. When not set, this property is omitted from the response.\n",
12307
+ "example": 456
12254
12308
  }
12255
12309
  }
12256
12310
  }
@@ -12793,8 +12847,13 @@
12793
12847
  },
12794
12848
  "electricityCostReimbursementIntegrationId": {
12795
12849
  "type": "integer",
12796
- "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points.\n",
12850
+ "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points. When not set, this property is omitted from the response.\n",
12797
12851
  "example": 123
12852
+ },
12853
+ "installationAndMaintenanceCompanyId": {
12854
+ "type": "integer",
12855
+ "description": "The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. When not set, this property is omitted from the response.\n",
12856
+ "example": 456
12798
12857
  }
12799
12858
  }
12800
12859
  }
@@ -13380,8 +13439,13 @@
13380
13439
  },
13381
13440
  "electricityCostReimbursementIntegrationId": {
13382
13441
  "type": "integer",
13383
- "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points.\n",
13442
+ "description": "The ID of the third-party electricity cost reimbursement integration to use for processing reimbursements for charging sessions at this charge point. Only applicable to personal (home) charge points - ignored for public and private charge points. When not set, this property is omitted from the response.\n",
13384
13443
  "example": 123
13444
+ },
13445
+ "installationAndMaintenanceCompanyId": {
13446
+ "type": "integer",
13447
+ "description": "The ID of the Installation & Maintenance company associated with this charge point. Must be owned by the same operator. When not set, this property is omitted from the response.\n",
13448
+ "example": 456
13385
13449
  }
13386
13450
  }
13387
13451
  }
@@ -13554,55 +13618,6 @@
13554
13618
  }
13555
13619
  }
13556
13620
  },
13557
- {
13558
- "type": "object",
13559
- "properties": {
13560
- "name": {
13561
- "type": "string",
13562
- "example": "Energi Elspot"
13563
- },
13564
- "integrationId": {
13565
- "type": "integer",
13566
- "nullable": true,
13567
- "example": 150
13568
- },
13569
- "type": {
13570
- "type": "string",
13571
- "enum": [
13572
- "energi_elspot"
13573
- ]
13574
- },
13575
- "defaults": {
13576
- "type": "object",
13577
- "properties": {
13578
- "target_charge": {
13579
- "type": "object",
13580
- "properties": {
13581
- "departure_time": {
13582
- "type": "string",
13583
- "format": "time",
13584
- "example": "01:00",
13585
- "description": "The 24-hour format should be used.</br>\nExample `00:00`\n"
13586
- }
13587
- }
13588
- }
13589
- }
13590
- },
13591
- "locations": {
13592
- "type": "object",
13593
- "properties": {
13594
- "key": {
13595
- "type": "string",
13596
- "example": "DK1"
13597
- },
13598
- "label": {
13599
- "type": "string",
13600
- "example": "West Denmark"
13601
- }
13602
- }
13603
- }
13604
- }
13605
- },
13606
13621
  {
13607
13622
  "type": "object",
13608
13623
  "properties": {
@@ -17071,66 +17086,6 @@
17071
17086
  }
17072
17087
  }
17073
17088
  },
17074
- {
17075
- "title": "Energi Elspot",
17076
- "type": "object",
17077
- "required": [
17078
- "type"
17079
- ],
17080
- "properties": {
17081
- "enabled": {
17082
- "type": "boolean",
17083
- "default": true,
17084
- "description": "Enable or disable the smart charging from owner preferences\n"
17085
- },
17086
- "type": {
17087
- "type": "string",
17088
- "enum": [
17089
- "energi_elspot"
17090
- ]
17091
- },
17092
- "integrationId": {
17093
- "type": "integer"
17094
- },
17095
- "preferences": {
17096
- "type": "object",
17097
- "required": [
17098
- "location",
17099
- "targetCharge"
17100
- ],
17101
- "properties": {
17102
- "location": {
17103
- "type": "string",
17104
- "enum": [
17105
- "GB1"
17106
- ],
17107
- "description": "The price region based on energi elspot prices api"
17108
- },
17109
- "targetCharge": {
17110
- "type": "object",
17111
- "required": [
17112
- "departureTime",
17113
- "targetChargeKwh"
17114
- ],
17115
- "properties": {
17116
- "departureTime": {
17117
- "type": "string",
17118
- "format": "time"
17119
- },
17120
- "preconditioningTime": {
17121
- "type": "integer",
17122
- "description": "The time in minutes before departure when the charging will be performed with full power."
17123
- },
17124
- "targetChargeKwh": {
17125
- "type": "number",
17126
- "example": 10
17127
- }
17128
- }
17129
- }
17130
- }
17131
- }
17132
- }
17133
- },
17134
17089
  {
17135
17090
  "title": "NordPool",
17136
17091
  "type": "object",
@@ -17164,7 +17119,7 @@
17164
17119
  "enum": [
17165
17120
  "GB1"
17166
17121
  ],
17167
- "description": "The price region based on energi elspot prices api"
17122
+ "description": "The price region based on NordPool prices"
17168
17123
  },
17169
17124
  "targetCharge": {
17170
17125
  "type": "object",
@@ -17312,7 +17267,6 @@
17312
17267
  "solar": "#/components/schemas/PersonalSmartChargingPreferencesSolar",
17313
17268
  "octopus_agile": "#/components/schemas/PersonalSmartChargingPreferencesOctopusAgile",
17314
17269
  "octopus_go": "#/components/schemas/PersonalSmartChargingPreferencesOctopusGo",
17315
- "energi_elspot": "#/components/schemas/PersonalSmartChargingPreferencesEnergiElspot",
17316
17270
  "nordpool": "#/components/schemas/PersonalSmartChargingPreferencesNordPool",
17317
17271
  "charger_electricity_rate": "#/components/schemas/PersonalSmartChargingPreferencesChargerElectricityRate"
17318
17272
  }
@@ -17654,66 +17608,6 @@
17654
17608
  }
17655
17609
  }
17656
17610
  },
17657
- {
17658
- "title": "Energi Elspot",
17659
- "type": "object",
17660
- "required": [
17661
- "type"
17662
- ],
17663
- "properties": {
17664
- "enabled": {
17665
- "type": "boolean",
17666
- "default": true,
17667
- "description": "Enable or disable the smart charging from owner preferences\n"
17668
- },
17669
- "type": {
17670
- "type": "string",
17671
- "enum": [
17672
- "energi_elspot"
17673
- ]
17674
- },
17675
- "integrationId": {
17676
- "type": "integer"
17677
- },
17678
- "preferences": {
17679
- "type": "object",
17680
- "required": [
17681
- "location",
17682
- "targetCharge"
17683
- ],
17684
- "properties": {
17685
- "location": {
17686
- "type": "string",
17687
- "enum": [
17688
- "GB1"
17689
- ],
17690
- "description": "The price region based on energi elspot prices api"
17691
- },
17692
- "targetCharge": {
17693
- "type": "object",
17694
- "required": [
17695
- "departureTime",
17696
- "targetChargeKwh"
17697
- ],
17698
- "properties": {
17699
- "departureTime": {
17700
- "type": "string",
17701
- "format": "time"
17702
- },
17703
- "preconditioningTime": {
17704
- "type": "integer",
17705
- "description": "The time in minutes before departure when the charging will be performed with full power."
17706
- },
17707
- "targetChargeKwh": {
17708
- "type": "number",
17709
- "example": 10
17710
- }
17711
- }
17712
- }
17713
- }
17714
- }
17715
- }
17716
- },
17717
17611
  {
17718
17612
  "title": "NordPool",
17719
17613
  "type": "object",
@@ -17747,7 +17641,7 @@
17747
17641
  "enum": [
17748
17642
  "GB1"
17749
17643
  ],
17750
- "description": "The price region based on energi elspot prices api"
17644
+ "description": "The price region based on NordPool prices"
17751
17645
  },
17752
17646
  "targetCharge": {
17753
17647
  "type": "object",
@@ -26933,7 +26827,6 @@
26933
26827
  "admin_defined",
26934
26828
  "octopus_go",
26935
26829
  "agile_octopus",
26936
- "elspot",
26937
26830
  "nord_pool"
26938
26831
  ]
26939
26832
  }
@@ -27061,7 +26954,6 @@
27061
26954
  "admin_defined",
27062
26955
  "octopus_go",
27063
26956
  "agile_octopus",
27064
- "elspot",
27065
26957
  "nord_pool"
27066
26958
  ]
27067
26959
  }
@@ -27140,7 +27032,6 @@
27140
27032
  "admin_defined",
27141
27033
  "octopus_go",
27142
27034
  "agile_octopus",
27143
- "elspot",
27144
27035
  "nord_pool"
27145
27036
  ]
27146
27037
  }
@@ -27262,7 +27153,6 @@
27262
27153
  "admin_defined",
27263
27154
  "octopus_go",
27264
27155
  "agile_octopus",
27265
- "elspot",
27266
27156
  "nord_pool"
27267
27157
  ]
27268
27158
  }
@@ -34177,19 +34067,7 @@
34177
34067
  "integrationParameters": {
34178
34068
  "type": "object",
34179
34069
  "description": "Flexibility integration parameters.",
34180
- "additionalProperties": {
34181
- "type": "string",
34182
- "nullable": true
34183
- },
34184
- "example": {
34185
- "meterId": "123456789",
34186
- "meterSerialNumber": "123456789",
34187
- "transformerId": "123456789",
34188
- "priceZone": "123456789",
34189
- "latitude": "123.45",
34190
- "longitude": "123.45",
34191
- "dso": "dso"
34192
- }
34070
+ "additionalProperties": true
34193
34071
  },
34194
34072
  "status": {
34195
34073
  "type": "string",
@@ -34351,19 +34229,7 @@
34351
34229
  "integrationParameters": {
34352
34230
  "type": "object",
34353
34231
  "description": "Flexibility integration parameters.",
34354
- "additionalProperties": {
34355
- "type": "string",
34356
- "nullable": true
34357
- },
34358
- "example": {
34359
- "meterId": "123456789",
34360
- "meterSerialNumber": "123456789",
34361
- "transformerId": "123456789",
34362
- "priceZone": "123456789",
34363
- "latitude": "123.45",
34364
- "longitude": "123.45",
34365
- "dso": "dso"
34366
- }
34232
+ "additionalProperties": true
34367
34233
  },
34368
34234
  "status": {
34369
34235
  "type": "string",
@@ -34476,19 +34342,7 @@
34476
34342
  "integrationParameters": {
34477
34343
  "type": "object",
34478
34344
  "description": "Flexibility integration parameters.",
34479
- "additionalProperties": {
34480
- "type": "string",
34481
- "nullable": true
34482
- },
34483
- "example": {
34484
- "meterId": "123456789",
34485
- "meterSerialNumber": "123456789",
34486
- "transformerId": "123456789",
34487
- "priceZone": "123456789",
34488
- "latitude": "123.45",
34489
- "longitude": "123.45",
34490
- "dso": "dso"
34491
- }
34345
+ "additionalProperties": true
34492
34346
  },
34493
34347
  "status": {
34494
34348
  "type": "string",
@@ -34644,19 +34498,7 @@
34644
34498
  "integrationParameters": {
34645
34499
  "type": "object",
34646
34500
  "description": "Flexibility integration parameters.",
34647
- "additionalProperties": {
34648
- "type": "string",
34649
- "nullable": true
34650
- },
34651
- "example": {
34652
- "meterId": "123456789",
34653
- "meterSerialNumber": "123456789",
34654
- "transformerId": "123456789",
34655
- "priceZone": "123456789",
34656
- "latitude": "123.45",
34657
- "longitude": "123.45",
34658
- "dso": "dso"
34659
- }
34501
+ "additionalProperties": true
34660
34502
  },
34661
34503
  "status": {
34662
34504
  "type": "string",
@@ -45988,6 +45830,11 @@
45988
45830
  "autoRenewal": {
45989
45831
  "type": "boolean"
45990
45832
  },
45833
+ "externalId": {
45834
+ "type": "string",
45835
+ "description": "Used to store custom information, usually used for external references or metadata to the resource.",
45836
+ "maxLength": 255
45837
+ },
45991
45838
  "accessAndPermissions": {
45992
45839
  "type": "object",
45993
45840
  "properties": {
@@ -46102,6 +45949,7 @@
46102
45949
  }
46103
45950
  },
46104
45951
  "required": [
45952
+ "id",
46105
45953
  "title",
46106
45954
  "partnerId",
46107
45955
  "startDate"
@@ -46288,6 +46136,11 @@
46288
46136
  "autoRenewal": {
46289
46137
  "type": "boolean"
46290
46138
  },
46139
+ "externalId": {
46140
+ "type": "string",
46141
+ "description": "Used to store custom information, usually used for external references or metadata to the resource.",
46142
+ "maxLength": 255
46143
+ },
46291
46144
  "accessAndPermissions": {
46292
46145
  "type": "object",
46293
46146
  "properties": {
@@ -46402,6 +46255,7 @@
46402
46255
  }
46403
46256
  },
46404
46257
  "required": [
46258
+ "id",
46405
46259
  "title",
46406
46260
  "partnerId",
46407
46261
  "startDate"
@@ -46474,6 +46328,11 @@
46474
46328
  "autoRenewal": {
46475
46329
  "type": "boolean"
46476
46330
  },
46331
+ "externalId": {
46332
+ "type": "string",
46333
+ "description": "Used to store custom information, usually used for external references or metadata to the resource.",
46334
+ "maxLength": 255
46335
+ },
46477
46336
  "accessAndPermissions": {
46478
46337
  "type": "object",
46479
46338
  "properties": {
@@ -46588,6 +46447,7 @@
46588
46447
  }
46589
46448
  },
46590
46449
  "required": [
46450
+ "id",
46591
46451
  "title",
46592
46452
  "partnerId",
46593
46453
  "startDate"
@@ -46670,6 +46530,11 @@
46670
46530
  "autoRenewal": {
46671
46531
  "type": "boolean"
46672
46532
  },
46533
+ "externalId": {
46534
+ "type": "string",
46535
+ "description": "Used to store custom information, usually used for external references or metadata to the resource.",
46536
+ "maxLength": 255
46537
+ },
46673
46538
  "accessAndPermissions": {
46674
46539
  "type": "object",
46675
46540
  "properties": {
@@ -46784,6 +46649,7 @@
46784
46649
  }
46785
46650
  },
46786
46651
  "required": [
46652
+ "id",
46787
46653
  "title",
46788
46654
  "partnerId",
46789
46655
  "startDate"