@ampeco/public-api-mcp 3.245.2 → 3.246.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.
@@ -128232,7 +128232,8 @@
128232
128232
  "example": 1
128233
128233
  },
128234
128234
  "name": {
128235
- "type": "string"
128235
+ "type": "string",
128236
+ "description": "Display name of the sub-operator.\n\nThe value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. This matches the resolution used by Sub-operators v2.0, so both versions report the same name for the same sub-operator.\n\nThis version is deprecated and exposes no per-locale access. Use `translatedName` on `resources/sub-operators/v2.0` to read or write a specific language.\n"
128236
128237
  },
128237
128238
  "partner_ids": {
128238
128239
  "type": "array",
@@ -128421,7 +128422,8 @@
128421
128422
  "example": 1
128422
128423
  },
128423
128424
  "name": {
128424
- "type": "string"
128425
+ "type": "string",
128426
+ "description": "Display name of the sub-operator.\n\nThe value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. This matches the resolution used by Sub-operators v2.0, so both versions report the same name for the same sub-operator.\n\nThis version is deprecated and exposes no per-locale access. Use `translatedName` on `resources/sub-operators/v2.0` to read or write a specific language.\n"
128425
128427
  },
128426
128428
  "partner_ids": {
128427
128429
  "type": "array",
@@ -128494,6 +128496,9 @@
128494
128496
  "id",
128495
128497
  "operatorId",
128496
128498
  "name",
128499
+ "translatedName",
128500
+ "translatedAddress",
128501
+ "translatedCity",
128497
128502
  "businessName",
128498
128503
  "capabilities",
128499
128504
  "partnerIds",
@@ -128501,11 +128506,6 @@
128501
128506
  ],
128502
128507
  "type": "object",
128503
128508
  "properties": {
128504
- "name": {
128505
- "type": "string",
128506
- "maxLength": 255,
128507
- "description": "Display name of the sub-operator"
128508
- },
128509
128509
  "businessName": {
128510
128510
  "type": "string",
128511
128511
  "maxLength": 255,
@@ -128782,11 +128782,6 @@
128782
128782
  "ZW"
128783
128783
  ]
128784
128784
  },
128785
- "city": {
128786
- "type": "string",
128787
- "maxLength": 255,
128788
- "description": "City name"
128789
- },
128790
128785
  "state": {
128791
128786
  "description": "When the selected country is one of US, AU, CA, UM or RO",
128792
128787
  "anyOf": [
@@ -128965,21 +128960,11 @@
128965
128960
  }
128966
128961
  ]
128967
128962
  },
128968
- "region": {
128969
- "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
128970
- "type": "string",
128971
- "nullable": true
128972
- },
128973
128963
  "postcode": {
128974
128964
  "type": "string",
128975
128965
  "maxLength": 255,
128976
128966
  "description": "Postal/ZIP code"
128977
128967
  },
128978
- "address": {
128979
- "type": "string",
128980
- "maxLength": 255,
128981
- "description": "Street address"
128982
- },
128983
128968
  "contactPerson": {
128984
128969
  "type": "string",
128985
128970
  "maxLength": 255,
@@ -129047,6 +129032,94 @@
129047
129032
  "readOnly": true,
129048
129033
  "description": "Owning operator ID"
129049
129034
  },
129035
+ "name": {
129036
+ "type": "string",
129037
+ "maxLength": 255,
129038
+ "deprecated": true,
129039
+ "description": "**This property is deprecated. Use `translatedName` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedName`.\n\nNote that `filter[name]` matches the English (`en`) translation only and applies no fallback, so a sub-operator whose value here came from the operator's default locale or from the originally stored value is not matched by filtering on the returned string.\n\nDisplay name of the sub-operator\n"
129040
+ },
129041
+ "city": {
129042
+ "type": "string",
129043
+ "maxLength": 255,
129044
+ "deprecated": true,
129045
+ "description": "**This property is deprecated. Use `translatedCity` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedCity`.\n\nCity name\n"
129046
+ },
129047
+ "region": {
129048
+ "deprecated": true,
129049
+ "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
129050
+ "type": "string",
129051
+ "nullable": true
129052
+ },
129053
+ "address": {
129054
+ "type": "string",
129055
+ "maxLength": 255,
129056
+ "deprecated": true,
129057
+ "description": "**This property is deprecated. Use `translatedAddress` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedAddress`.\n\nStreet address\n"
129058
+ },
129059
+ "translatedName": {
129060
+ "description": "Display name of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129061
+ "type": "array",
129062
+ "items": {
129063
+ "type": "object",
129064
+ "properties": {
129065
+ "locale": {
129066
+ "type": "string",
129067
+ "description": "valid locale"
129068
+ },
129069
+ "translation": {
129070
+ "type": "string"
129071
+ }
129072
+ }
129073
+ }
129074
+ },
129075
+ "translatedAddress": {
129076
+ "description": "Street address of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129077
+ "type": "array",
129078
+ "items": {
129079
+ "type": "object",
129080
+ "properties": {
129081
+ "locale": {
129082
+ "type": "string",
129083
+ "description": "valid locale"
129084
+ },
129085
+ "translation": {
129086
+ "type": "string"
129087
+ }
129088
+ }
129089
+ }
129090
+ },
129091
+ "translatedCity": {
129092
+ "description": "City of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129093
+ "type": "array",
129094
+ "items": {
129095
+ "type": "object",
129096
+ "properties": {
129097
+ "locale": {
129098
+ "type": "string",
129099
+ "description": "valid locale"
129100
+ },
129101
+ "translation": {
129102
+ "type": "string"
129103
+ }
129104
+ }
129105
+ }
129106
+ },
129107
+ "translatedRegion": {
129108
+ "description": "Region of the sub-operator in every locale it has been translated to. Empty when no translations exist.\n\nAbsent from the response when the sub-operator's country supports states (US, CA, AU, UM, RO) — `state` applies instead and is not translatable.\n",
129109
+ "type": "array",
129110
+ "items": {
129111
+ "type": "object",
129112
+ "properties": {
129113
+ "locale": {
129114
+ "type": "string",
129115
+ "description": "valid locale"
129116
+ },
129117
+ "translation": {
129118
+ "type": "string"
129119
+ }
129120
+ }
129121
+ }
129122
+ },
129050
129123
  "lastUpdatedAt": {
129051
129124
  "type": "string",
129052
129125
  "format": "date-time",
@@ -129194,6 +129267,9 @@
129194
129267
  "id",
129195
129268
  "operatorId",
129196
129269
  "name",
129270
+ "translatedName",
129271
+ "translatedAddress",
129272
+ "translatedCity",
129197
129273
  "businessName",
129198
129274
  "capabilities",
129199
129275
  "partnerIds",
@@ -129201,11 +129277,6 @@
129201
129277
  ],
129202
129278
  "type": "object",
129203
129279
  "properties": {
129204
- "name": {
129205
- "type": "string",
129206
- "maxLength": 255,
129207
- "description": "Display name of the sub-operator"
129208
- },
129209
129280
  "businessName": {
129210
129281
  "type": "string",
129211
129282
  "maxLength": 255,
@@ -129482,11 +129553,6 @@
129482
129553
  "ZW"
129483
129554
  ]
129484
129555
  },
129485
- "city": {
129486
- "type": "string",
129487
- "maxLength": 255,
129488
- "description": "City name"
129489
- },
129490
129556
  "state": {
129491
129557
  "description": "When the selected country is one of US, AU, CA, UM or RO",
129492
129558
  "anyOf": [
@@ -129665,21 +129731,11 @@
129665
129731
  }
129666
129732
  ]
129667
129733
  },
129668
- "region": {
129669
- "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
129670
- "type": "string",
129671
- "nullable": true
129672
- },
129673
129734
  "postcode": {
129674
129735
  "type": "string",
129675
129736
  "maxLength": 255,
129676
129737
  "description": "Postal/ZIP code"
129677
129738
  },
129678
- "address": {
129679
- "type": "string",
129680
- "maxLength": 255,
129681
- "description": "Street address"
129682
- },
129683
129739
  "contactPerson": {
129684
129740
  "type": "string",
129685
129741
  "maxLength": 255,
@@ -129747,6 +129803,94 @@
129747
129803
  "readOnly": true,
129748
129804
  "description": "Owning operator ID"
129749
129805
  },
129806
+ "name": {
129807
+ "type": "string",
129808
+ "maxLength": 255,
129809
+ "deprecated": true,
129810
+ "description": "**This property is deprecated. Use `translatedName` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedName`.\n\nNote that `filter[name]` matches the English (`en`) translation only and applies no fallback, so a sub-operator whose value here came from the operator's default locale or from the originally stored value is not matched by filtering on the returned string.\n\nDisplay name of the sub-operator\n"
129811
+ },
129812
+ "city": {
129813
+ "type": "string",
129814
+ "maxLength": 255,
129815
+ "deprecated": true,
129816
+ "description": "**This property is deprecated. Use `translatedCity` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedCity`.\n\nCity name\n"
129817
+ },
129818
+ "region": {
129819
+ "deprecated": true,
129820
+ "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
129821
+ "type": "string",
129822
+ "nullable": true
129823
+ },
129824
+ "address": {
129825
+ "type": "string",
129826
+ "maxLength": 255,
129827
+ "deprecated": true,
129828
+ "description": "**This property is deprecated. Use `translatedAddress` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedAddress`.\n\nStreet address\n"
129829
+ },
129830
+ "translatedName": {
129831
+ "description": "Display name of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129832
+ "type": "array",
129833
+ "items": {
129834
+ "type": "object",
129835
+ "properties": {
129836
+ "locale": {
129837
+ "type": "string",
129838
+ "description": "valid locale"
129839
+ },
129840
+ "translation": {
129841
+ "type": "string"
129842
+ }
129843
+ }
129844
+ }
129845
+ },
129846
+ "translatedAddress": {
129847
+ "description": "Street address of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129848
+ "type": "array",
129849
+ "items": {
129850
+ "type": "object",
129851
+ "properties": {
129852
+ "locale": {
129853
+ "type": "string",
129854
+ "description": "valid locale"
129855
+ },
129856
+ "translation": {
129857
+ "type": "string"
129858
+ }
129859
+ }
129860
+ }
129861
+ },
129862
+ "translatedCity": {
129863
+ "description": "City of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
129864
+ "type": "array",
129865
+ "items": {
129866
+ "type": "object",
129867
+ "properties": {
129868
+ "locale": {
129869
+ "type": "string",
129870
+ "description": "valid locale"
129871
+ },
129872
+ "translation": {
129873
+ "type": "string"
129874
+ }
129875
+ }
129876
+ }
129877
+ },
129878
+ "translatedRegion": {
129879
+ "description": "Region of the sub-operator in every locale it has been translated to. Empty when no translations exist.\n\nAbsent from the response when the sub-operator's country supports states (US, CA, AU, UM, RO) — `state` applies instead and is not translatable.\n",
129880
+ "type": "array",
129881
+ "items": {
129882
+ "type": "object",
129883
+ "properties": {
129884
+ "locale": {
129885
+ "type": "string",
129886
+ "description": "valid locale"
129887
+ },
129888
+ "translation": {
129889
+ "type": "string"
129890
+ }
129891
+ }
129892
+ }
129893
+ },
129750
129894
  "lastUpdatedAt": {
129751
129895
  "type": "string",
129752
129896
  "format": "date-time",
@@ -129867,6 +130011,9 @@
129867
130011
  "id",
129868
130012
  "operatorId",
129869
130013
  "name",
130014
+ "translatedName",
130015
+ "translatedAddress",
130016
+ "translatedCity",
129870
130017
  "businessName",
129871
130018
  "capabilities",
129872
130019
  "partnerIds",
@@ -129874,11 +130021,6 @@
129874
130021
  ],
129875
130022
  "type": "object",
129876
130023
  "properties": {
129877
- "name": {
129878
- "type": "string",
129879
- "maxLength": 255,
129880
- "description": "Display name of the sub-operator"
129881
- },
129882
130024
  "businessName": {
129883
130025
  "type": "string",
129884
130026
  "maxLength": 255,
@@ -130155,11 +130297,6 @@
130155
130297
  "ZW"
130156
130298
  ]
130157
130299
  },
130158
- "city": {
130159
- "type": "string",
130160
- "maxLength": 255,
130161
- "description": "City name"
130162
- },
130163
130300
  "state": {
130164
130301
  "description": "When the selected country is one of US, AU, CA, UM or RO",
130165
130302
  "anyOf": [
@@ -130338,21 +130475,11 @@
130338
130475
  }
130339
130476
  ]
130340
130477
  },
130341
- "region": {
130342
- "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
130343
- "type": "string",
130344
- "nullable": true
130345
- },
130346
130478
  "postcode": {
130347
130479
  "type": "string",
130348
130480
  "maxLength": 255,
130349
130481
  "description": "Postal/ZIP code"
130350
130482
  },
130351
- "address": {
130352
- "type": "string",
130353
- "maxLength": 255,
130354
- "description": "Street address"
130355
- },
130356
130483
  "contactPerson": {
130357
130484
  "type": "string",
130358
130485
  "maxLength": 255,
@@ -130420,6 +130547,94 @@
130420
130547
  "readOnly": true,
130421
130548
  "description": "Owning operator ID"
130422
130549
  },
130550
+ "name": {
130551
+ "type": "string",
130552
+ "maxLength": 255,
130553
+ "deprecated": true,
130554
+ "description": "**This property is deprecated. Use `translatedName` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedName`.\n\nNote that `filter[name]` matches the English (`en`) translation only and applies no fallback, so a sub-operator whose value here came from the operator's default locale or from the originally stored value is not matched by filtering on the returned string.\n\nDisplay name of the sub-operator\n"
130555
+ },
130556
+ "city": {
130557
+ "type": "string",
130558
+ "maxLength": 255,
130559
+ "deprecated": true,
130560
+ "description": "**This property is deprecated. Use `translatedCity` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedCity`.\n\nCity name\n"
130561
+ },
130562
+ "region": {
130563
+ "deprecated": true,
130564
+ "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
130565
+ "type": "string",
130566
+ "nullable": true
130567
+ },
130568
+ "address": {
130569
+ "type": "string",
130570
+ "maxLength": 255,
130571
+ "deprecated": true,
130572
+ "description": "**This property is deprecated. Use `translatedAddress` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedAddress`.\n\nStreet address\n"
130573
+ },
130574
+ "translatedName": {
130575
+ "description": "Display name of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
130576
+ "type": "array",
130577
+ "items": {
130578
+ "type": "object",
130579
+ "properties": {
130580
+ "locale": {
130581
+ "type": "string",
130582
+ "description": "valid locale"
130583
+ },
130584
+ "translation": {
130585
+ "type": "string"
130586
+ }
130587
+ }
130588
+ }
130589
+ },
130590
+ "translatedAddress": {
130591
+ "description": "Street address of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
130592
+ "type": "array",
130593
+ "items": {
130594
+ "type": "object",
130595
+ "properties": {
130596
+ "locale": {
130597
+ "type": "string",
130598
+ "description": "valid locale"
130599
+ },
130600
+ "translation": {
130601
+ "type": "string"
130602
+ }
130603
+ }
130604
+ }
130605
+ },
130606
+ "translatedCity": {
130607
+ "description": "City of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
130608
+ "type": "array",
130609
+ "items": {
130610
+ "type": "object",
130611
+ "properties": {
130612
+ "locale": {
130613
+ "type": "string",
130614
+ "description": "valid locale"
130615
+ },
130616
+ "translation": {
130617
+ "type": "string"
130618
+ }
130619
+ }
130620
+ }
130621
+ },
130622
+ "translatedRegion": {
130623
+ "description": "Region of the sub-operator in every locale it has been translated to. Empty when no translations exist.\n\nAbsent from the response when the sub-operator's country supports states (US, CA, AU, UM, RO) — `state` applies instead and is not translatable.\n",
130624
+ "type": "array",
130625
+ "items": {
130626
+ "type": "object",
130627
+ "properties": {
130628
+ "locale": {
130629
+ "type": "string",
130630
+ "description": "valid locale"
130631
+ },
130632
+ "translation": {
130633
+ "type": "string"
130634
+ }
130635
+ }
130636
+ }
130637
+ },
130423
130638
  "lastUpdatedAt": {
130424
130639
  "type": "string",
130425
130640
  "format": "date-time",
@@ -130571,6 +130786,9 @@
130571
130786
  "id",
130572
130787
  "operatorId",
130573
130788
  "name",
130789
+ "translatedName",
130790
+ "translatedAddress",
130791
+ "translatedCity",
130574
130792
  "businessName",
130575
130793
  "capabilities",
130576
130794
  "partnerIds",
@@ -130578,11 +130796,6 @@
130578
130796
  ],
130579
130797
  "type": "object",
130580
130798
  "properties": {
130581
- "name": {
130582
- "type": "string",
130583
- "maxLength": 255,
130584
- "description": "Display name of the sub-operator"
130585
- },
130586
130799
  "businessName": {
130587
130800
  "type": "string",
130588
130801
  "maxLength": 255,
@@ -130859,11 +131072,6 @@
130859
131072
  "ZW"
130860
131073
  ]
130861
131074
  },
130862
- "city": {
130863
- "type": "string",
130864
- "maxLength": 255,
130865
- "description": "City name"
130866
- },
130867
131075
  "state": {
130868
131076
  "description": "When the selected country is one of US, AU, CA, UM or RO",
130869
131077
  "anyOf": [
@@ -131042,21 +131250,11 @@
131042
131250
  }
131043
131251
  ]
131044
131252
  },
131045
- "region": {
131046
- "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
131047
- "type": "string",
131048
- "nullable": true
131049
- },
131050
131253
  "postcode": {
131051
131254
  "type": "string",
131052
131255
  "maxLength": 255,
131053
131256
  "description": "Postal/ZIP code"
131054
131257
  },
131055
- "address": {
131056
- "type": "string",
131057
- "maxLength": 255,
131058
- "description": "Street address"
131059
- },
131060
131258
  "contactPerson": {
131061
131259
  "type": "string",
131062
131260
  "maxLength": 255,
@@ -131124,6 +131322,94 @@
131124
131322
  "readOnly": true,
131125
131323
  "description": "Owning operator ID"
131126
131324
  },
131325
+ "name": {
131326
+ "type": "string",
131327
+ "maxLength": 255,
131328
+ "deprecated": true,
131329
+ "description": "**This property is deprecated. Use `translatedName` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedName`.\n\nNote that `filter[name]` matches the English (`en`) translation only and applies no fallback, so a sub-operator whose value here came from the operator's default locale or from the originally stored value is not matched by filtering on the returned string.\n\nDisplay name of the sub-operator\n"
131330
+ },
131331
+ "city": {
131332
+ "type": "string",
131333
+ "maxLength": 255,
131334
+ "deprecated": true,
131335
+ "description": "**This property is deprecated. Use `translatedCity` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedCity`.\n\nCity name\n"
131336
+ },
131337
+ "region": {
131338
+ "deprecated": true,
131339
+ "description": "When country is not in US, AU, CA, UM or RO, you can provide the region",
131340
+ "type": "string",
131341
+ "nullable": true
131342
+ },
131343
+ "address": {
131344
+ "type": "string",
131345
+ "maxLength": 255,
131346
+ "deprecated": true,
131347
+ "description": "**This property is deprecated. Use `translatedAddress` instead.**\n\nIn responses the value is resolved in the following order: the English (`en`) locale translation; if that is empty, the translation in the operator's default locale; if that is also empty, the originally stored value. To read this field in a specific locale, use `translatedAddress`.\n\nStreet address\n"
131348
+ },
131349
+ "translatedName": {
131350
+ "description": "Display name of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
131351
+ "type": "array",
131352
+ "items": {
131353
+ "type": "object",
131354
+ "properties": {
131355
+ "locale": {
131356
+ "type": "string",
131357
+ "description": "valid locale"
131358
+ },
131359
+ "translation": {
131360
+ "type": "string"
131361
+ }
131362
+ }
131363
+ }
131364
+ },
131365
+ "translatedAddress": {
131366
+ "description": "Street address of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
131367
+ "type": "array",
131368
+ "items": {
131369
+ "type": "object",
131370
+ "properties": {
131371
+ "locale": {
131372
+ "type": "string",
131373
+ "description": "valid locale"
131374
+ },
131375
+ "translation": {
131376
+ "type": "string"
131377
+ }
131378
+ }
131379
+ }
131380
+ },
131381
+ "translatedCity": {
131382
+ "description": "City of the sub-operator in every locale it has been translated to. Empty when no translations exist.",
131383
+ "type": "array",
131384
+ "items": {
131385
+ "type": "object",
131386
+ "properties": {
131387
+ "locale": {
131388
+ "type": "string",
131389
+ "description": "valid locale"
131390
+ },
131391
+ "translation": {
131392
+ "type": "string"
131393
+ }
131394
+ }
131395
+ }
131396
+ },
131397
+ "translatedRegion": {
131398
+ "description": "Region of the sub-operator in every locale it has been translated to. Empty when no translations exist.\n\nAbsent from the response when the sub-operator's country supports states (US, CA, AU, UM, RO) — `state` applies instead and is not translatable.\n",
131399
+ "type": "array",
131400
+ "items": {
131401
+ "type": "object",
131402
+ "properties": {
131403
+ "locale": {
131404
+ "type": "string",
131405
+ "description": "valid locale"
131406
+ },
131407
+ "translation": {
131408
+ "type": "string"
131409
+ }
131410
+ }
131411
+ }
131412
+ },
131127
131413
  "lastUpdatedAt": {
131128
131414
  "type": "string",
131129
131415
  "format": "date-time",