@opusdns/api 0.138.0 → 0.140.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.
package/src/openapi.yaml CHANGED
@@ -1571,12 +1571,8 @@ components:
1571
1571
  format: date-time
1572
1572
  title: Updated On
1573
1573
  type: string
1574
- wildcard:
1575
- title: Wildcard
1576
- type: boolean
1577
1574
  required:
1578
1575
  - hostname
1579
- - wildcard
1580
1576
  - enabled
1581
1577
  - updated_on
1582
1578
  - created_on
@@ -1637,11 +1633,6 @@ components:
1637
1633
  - $ref: '#/components/schemas/WildcardHttpRedirectRequest'
1638
1634
  title: Redirects
1639
1635
  type: array
1640
- wildcard:
1641
- anyOf:
1642
- - type: boolean
1643
- - type: 'null'
1644
- title: Wildcard
1645
1636
  required:
1646
1637
  - redirects
1647
1638
  title: DomainForwardProtocolSetRequest
@@ -1661,36 +1652,27 @@ components:
1661
1652
  format: date-time
1662
1653
  title: Updated On
1663
1654
  type: string
1664
- wildcard:
1665
- title: Wildcard
1666
- type: boolean
1667
1655
  required:
1668
- - wildcard
1669
1656
  - redirects
1670
1657
  - updated_on
1671
1658
  - created_on
1672
1659
  title: DomainForwardProtocolSetResponse
1673
1660
  type: object
1674
- DomainForwardRequest:
1661
+ DomainForwardSetCreateRequest:
1675
1662
  properties:
1676
- enabled:
1677
- default: false
1678
- title: Enabled
1679
- type: boolean
1680
- http:
1681
- anyOf:
1682
- - $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
1683
- - type: 'null'
1684
- https:
1685
- anyOf:
1686
- - $ref: '#/components/schemas/DomainForwardProtocolSetRequest'
1687
- - type: 'null'
1688
- wildcard:
1689
- anyOf:
1690
- - type: boolean
1691
- - type: 'null'
1692
- title: Wildcard
1693
- title: DomainForwardRequest
1663
+ protocol:
1664
+ $ref: '#/components/schemas/HttpProtocol'
1665
+ redirects:
1666
+ items:
1667
+ anyOf:
1668
+ - $ref: '#/components/schemas/HttpRedirectRequest'
1669
+ - $ref: '#/components/schemas/WildcardHttpRedirectRequest'
1670
+ title: Redirects
1671
+ type: array
1672
+ required:
1673
+ - protocol
1674
+ - redirects
1675
+ title: DomainForwardSetCreateRequest
1694
1676
  type: object
1695
1677
  DomainForwardSetRequest:
1696
1678
  properties:
@@ -1725,13 +1707,9 @@ components:
1725
1707
  format: date-time
1726
1708
  title: Updated On
1727
1709
  type: string
1728
- wildcard:
1729
- title: Wildcard
1730
- type: boolean
1731
1710
  required:
1732
1711
  - hostname
1733
1712
  - protocol
1734
- - wildcard
1735
1713
  - redirects
1736
1714
  - updated_on
1737
1715
  - created_on
@@ -4569,19 +4547,19 @@ components:
4569
4547
  - pagination
4570
4548
  title: Pagination[RequestHistory]
4571
4549
  type: object
4572
- Pagination_User_:
4550
+ Pagination_UserPublic_:
4573
4551
  properties:
4574
4552
  pagination:
4575
4553
  $ref: '#/components/schemas/PaginationMetadata'
4576
4554
  results:
4577
4555
  items:
4578
- $ref: '#/components/schemas/User'
4556
+ $ref: '#/components/schemas/UserPublic'
4579
4557
  title: Results
4580
4558
  type: array
4581
4559
  required:
4582
4560
  - results
4583
4561
  - pagination
4584
- title: Pagination[User]
4562
+ title: Pagination[UserPublic]
4585
4563
  type: object
4586
4564
  PasswordUpdate:
4587
4565
  properties:
@@ -5472,6 +5450,12 @@ components:
5472
5450
  minLength: 1
5473
5451
  title: First Name
5474
5452
  type: string
5453
+ keycloak_user_id:
5454
+ anyOf:
5455
+ - type: string
5456
+ - type: 'null'
5457
+ description: Keycloak user id
5458
+ title: Keycloak User Id
5475
5459
  last_name:
5476
5460
  description: The user's last name
5477
5461
  minLength: 1
@@ -5626,93 +5610,92 @@ components:
5626
5610
  - password
5627
5611
  title: UserCreate
5628
5612
  type: object
5629
- UserStatus:
5630
- enum:
5631
- - active
5632
- - inactive
5633
- title: UserStatus
5634
- type: string
5635
- UserTokenResponse:
5613
+ UserPublic:
5636
5614
  properties:
5637
- access_token:
5638
- title: Access Token
5639
- type: string
5640
- expires_in:
5641
- title: Expires In
5642
- type: integer
5643
- refresh_expires_in:
5644
- title: Refresh Expires In
5645
- type: integer
5646
- refresh_token:
5647
- title: Refresh Token
5648
- type: string
5649
- token_type:
5650
- default: Bearer
5651
- title: Token Type
5615
+ created_on:
5616
+ description: The date/time the entry was created on
5617
+ format: date-time
5618
+ title: Created On
5652
5619
  type: string
5653
- required:
5654
- - access_token
5655
- - expires_in
5656
- - refresh_token
5657
- - refresh_expires_in
5658
- title: UserTokenResponse
5659
- type: object
5660
- UserUpdate:
5661
- properties:
5662
- email:
5620
+ deleted_on:
5663
5621
  anyOf:
5664
- - format: email
5622
+ - format: date-time
5665
5623
  type: string
5666
5624
  - type: 'null'
5625
+ description: The date/time the entry was deleted on
5626
+ title: Deleted On
5627
+ email:
5667
5628
  description: The user's email address
5629
+ format: email
5668
5630
  title: Email
5631
+ type: string
5669
5632
  first_name:
5670
- anyOf:
5671
- - minLength: 1
5672
- type: string
5673
- - type: 'null'
5674
5633
  description: The user's first name
5634
+ minLength: 1
5675
5635
  title: First Name
5636
+ type: string
5676
5637
  last_name:
5677
- anyOf:
5678
- - minLength: 1
5679
- type: string
5680
- - type: 'null'
5681
5638
  description: The user's last name
5639
+ minLength: 1
5682
5640
  title: Last Name
5641
+ type: string
5683
5642
  locale:
5684
- anyOf:
5685
- - examples:
5686
- - en_US
5687
- type: string
5688
- - type: 'null'
5689
- description: The user's locale
5643
+ examples:
5644
+ - en_US
5690
5645
  title: Locale
5646
+ type: string
5647
+ organization_id:
5648
+ default: None
5649
+ description: The user's organization id
5650
+ examples:
5651
+ - organization_01h45ytscbebyvny4gc8cr8ma2
5652
+ format: typeid
5653
+ pattern: ^organization_[0-7][0-9a-hjkmnpq-tv-z]{25}$
5654
+ title: Organization Id
5655
+ type: string
5656
+ x-typeid-prefix: organization
5691
5657
  phone:
5692
5658
  anyOf:
5693
5659
  - format: phone
5694
5660
  type: string
5695
5661
  - type: 'null'
5696
5662
  description: The user's phone number
5663
+ examples:
5664
+ - '+1.2125552368'
5697
5665
  title: Phone
5698
- user_attributes:
5699
- anyOf:
5700
- - items:
5701
- $ref: '#/components/schemas/UserAttributeBase'
5702
- type: array
5703
- - type: 'null'
5704
- description: User attributes
5705
- title: User Attributes
5666
+ status:
5667
+ $ref: '#/components/schemas/UserStatus'
5668
+ readOnly: true
5669
+ updated_on:
5670
+ description: The date/time the entry was last updated on
5671
+ format: date-time
5672
+ title: Updated On
5673
+ type: string
5674
+ user_id:
5675
+ examples:
5676
+ - user_01h45ytscbebyvny4gc8cr8ma2
5677
+ format: typeid
5678
+ pattern: ^user_[0-7][0-9a-hjkmnpq-tv-z]{25}$
5679
+ title: User Id
5680
+ type: string
5681
+ x-typeid-prefix: user
5706
5682
  username:
5707
- anyOf:
5708
- - minLength: 1
5709
- type: string
5710
- - type: 'null'
5711
5683
  description: The user's unique username
5684
+ maxLength: 128
5685
+ minLength: 3
5686
+ pattern: ^[a-zA-Z0-9\-+_@.]+$
5712
5687
  title: Username
5713
- title: UserUpdate
5688
+ type: string
5689
+ required:
5690
+ - username
5691
+ - first_name
5692
+ - last_name
5693
+ - email
5694
+ - locale
5695
+ - status
5696
+ title: UserPublic
5714
5697
  type: object
5715
- UserWithAttributes:
5698
+ UserPublicWithAttributes:
5716
5699
  properties:
5717
5700
  created_on:
5718
5701
  description: The date/time the entry was created on
@@ -5809,7 +5792,93 @@ components:
5809
5792
  - email
5810
5793
  - locale
5811
5794
  - status
5812
- title: UserWithAttributes
5795
+ title: UserPublicWithAttributes
5796
+ type: object
5797
+ UserStatus:
5798
+ enum:
5799
+ - active
5800
+ - inactive
5801
+ title: UserStatus
5802
+ type: string
5803
+ UserTokenResponse:
5804
+ properties:
5805
+ access_token:
5806
+ title: Access Token
5807
+ type: string
5808
+ expires_in:
5809
+ title: Expires In
5810
+ type: integer
5811
+ refresh_expires_in:
5812
+ title: Refresh Expires In
5813
+ type: integer
5814
+ refresh_token:
5815
+ title: Refresh Token
5816
+ type: string
5817
+ token_type:
5818
+ default: Bearer
5819
+ title: Token Type
5820
+ type: string
5821
+ required:
5822
+ - access_token
5823
+ - expires_in
5824
+ - refresh_token
5825
+ - refresh_expires_in
5826
+ title: UserTokenResponse
5827
+ type: object
5828
+ UserUpdate:
5829
+ properties:
5830
+ email:
5831
+ anyOf:
5832
+ - format: email
5833
+ type: string
5834
+ - type: 'null'
5835
+ description: The user's email address
5836
+ title: Email
5837
+ first_name:
5838
+ anyOf:
5839
+ - minLength: 1
5840
+ type: string
5841
+ - type: 'null'
5842
+ description: The user's first name
5843
+ title: First Name
5844
+ last_name:
5845
+ anyOf:
5846
+ - minLength: 1
5847
+ type: string
5848
+ - type: 'null'
5849
+ description: The user's last name
5850
+ title: Last Name
5851
+ locale:
5852
+ anyOf:
5853
+ - examples:
5854
+ - en_US
5855
+ type: string
5856
+ - type: 'null'
5857
+ description: The user's locale
5858
+ title: Locale
5859
+ phone:
5860
+ anyOf:
5861
+ - format: phone
5862
+ type: string
5863
+ - type: 'null'
5864
+ description: The user's phone number
5865
+ title: Phone
5866
+ user_attributes:
5867
+ anyOf:
5868
+ - items:
5869
+ $ref: '#/components/schemas/UserAttributeBase'
5870
+ type: array
5871
+ - type: 'null'
5872
+ description: User attributes
5873
+ title: User Attributes
5874
+ username:
5875
+ anyOf:
5876
+ - minLength: 1
5877
+ type: string
5878
+ - type: 'null'
5879
+ description: The user's unique username
5880
+ title: Username
5881
+ title: UserUpdate
5813
5882
  type: object
5814
5883
  UserWithRelationPermissions:
5815
5884
  properties:
@@ -6162,7 +6231,7 @@ info:
6162
6231
  '
6163
6232
  summary: OpusDNS - your gateway to a seamless domain management experience.
6164
6233
  title: OpusDNS API
6165
- version: 2025-12-30-174755
6234
+ version: 2026-01-05-134959
6166
6235
  x-logo:
6167
6236
  altText: OpusDNS API Reference
6168
6237
  url: https://d24lr4zqs1tgqh.cloudfront.net/c9505a20-5ae1-406c-b060-d392569caebf.jpg
@@ -8078,9 +8147,7 @@ paths:
8078
8147
  target_path: /
8079
8148
  target_protocol: https
8080
8149
  updated_on: '2025-11-18T12:59:57Z'
8081
- wildcard: false
8082
8150
  updated_on: '2025-11-18T12:59:57Z'
8083
- wildcard: false
8084
8151
  zone_id: zone_01kabfvtysfqwv4dn89r3jepym
8085
8152
  zone_name: example.com.
8086
8153
  schema:
@@ -8499,9 +8566,7 @@ paths:
8499
8566
  target_path: /
8500
8567
  target_protocol: https
8501
8568
  updated_on: '2025-11-18T12:59:57Z'
8502
- wildcard: false
8503
8569
  updated_on: '2025-11-18T12:59:57Z'
8504
- wildcard: false
8505
8570
  zone_id: zone_01kabfvtysfqwv4dn89r3jepym
8506
8571
  zone_name: example.com.
8507
8572
  schema:
@@ -9059,6 +9124,7 @@ paths:
9059
9124
  summary: HTTP domain forward
9060
9125
  value:
9061
9126
  enabled: false
9127
+ hostname: example.com.
9062
9128
  http:
9063
9129
  redirects:
9064
9130
  - redirect_code: 301
@@ -9066,7 +9132,6 @@ paths:
9066
9132
  target_hostname: example.com
9067
9133
  target_path: /
9068
9134
  target_protocol: https
9069
- wildcard: false
9070
9135
  https:
9071
9136
  redirects:
9072
9137
  - redirect_code: 302
@@ -9074,14 +9139,13 @@ paths:
9074
9139
  target_hostname: auth.example.com
9075
9140
  target_path: /
9076
9141
  target_protocol: https
9077
- wildcard: false
9078
- wildcard: false
9079
9142
  http_to_https:
9080
9143
  description: Create a HTTP domain forward with redirect from HTTP
9081
9144
  to HTTPS
9082
9145
  summary: HTTP to HTTPS
9083
9146
  value:
9084
9147
  enabled: false
9148
+ hostname: example.com.
9085
9149
  https:
9086
9150
  redirects:
9087
9151
  - redirect_code: 301
@@ -9089,8 +9153,6 @@ paths:
9089
9153
  target_hostname: example.com
9090
9154
  target_path: /
9091
9155
  target_protocol: https
9092
- wildcard: false
9093
- wildcard: false
9094
9156
  schema:
9095
9157
  $ref: '#/components/schemas/DomainForwardCreateRequest'
9096
9158
  required: true
@@ -9118,7 +9180,6 @@ paths:
9118
9180
  target_path: /
9119
9181
  target_protocol: https
9120
9182
  updated_on: '2025-11-14T09:01:38'
9121
- wildcard: false
9122
9183
  https:
9123
9184
  created_on: '2025-11-14T09:01:38'
9124
9185
  redirects:
@@ -9130,9 +9191,7 @@ paths:
9130
9191
  target_path: /
9131
9192
  target_protocol: https
9132
9193
  updated_on: '2025-11-14T09:01:38'
9133
- wildcard: false
9134
9194
  updated_on: '2025-11-14T09:01:38'
9135
- wildcard: false
9136
9195
  http_to_https_response:
9137
9196
  description: Response when creating a HTTP to HTTPS domain forward
9138
9197
  summary: Response for HTTP to HTTPS
@@ -9151,9 +9210,7 @@ paths:
9151
9210
  target_path: /
9152
9211
  target_protocol: https
9153
9212
  updated_on: '2025-11-14T09:01:38'
9154
- wildcard: false
9155
9213
  updated_on: '2025-11-14T09:01:38'
9156
- wildcard: false
9157
9214
  schema:
9158
9215
  $ref: '#/components/schemas/DomainForward'
9159
9216
  description: Domain forward created successfully
@@ -9347,10 +9404,9 @@ paths:
9347
9404
  tags:
9348
9405
  - domain_forward
9349
9406
  post:
9350
- deprecated: true
9351
- description: '**DEPRECATED**: Use POST /v1/domain-forwards instead. Creates
9352
- a new domain forward configuration for the specified hostname.'
9353
- operationId: create_domain_forward_v1_domain_forwards__hostname__post
9407
+ description: Creates a new domain forward set for a specific protocol (HTTP
9408
+ or HTTPS). Raises an error if the set already exists.
9409
+ operationId: create_domain_forward_set_v1_domain_forwards__hostname__post
9354
9410
  parameters:
9355
9411
  - description: Hostname
9356
9412
  in: path
@@ -9363,111 +9419,16 @@ paths:
9363
9419
  requestBody:
9364
9420
  content:
9365
9421
  application/json:
9366
- examples:
9367
- domain_forward:
9368
- description: Create a HTTP domain forward with redirect from HTTP
9369
- to HTTPS and HTTPS to auth.example.com
9370
- summary: HTTP domain forward
9371
- value:
9372
- enabled: false
9373
- http:
9374
- redirects:
9375
- - redirect_code: 301
9376
- request_path: /
9377
- target_hostname: example.com
9378
- target_path: /
9379
- target_protocol: https
9380
- wildcard: false
9381
- https:
9382
- redirects:
9383
- - redirect_code: 302
9384
- request_path: /
9385
- target_hostname: auth.example.com
9386
- target_path: /
9387
- target_protocol: https
9388
- wildcard: false
9389
- wildcard: false
9390
- http_to_https:
9391
- description: Create a HTTP domain forward with redirect from HTTP
9392
- to HTTPS
9393
- summary: HTTP to HTTPS
9394
- value:
9395
- enabled: false
9396
- https:
9397
- redirects:
9398
- - redirect_code: 301
9399
- request_path: /
9400
- target_hostname: example.com
9401
- target_path: /
9402
- target_protocol: https
9403
- wildcard: false
9404
- wildcard: false
9405
9422
  schema:
9406
- $ref: '#/components/schemas/DomainForwardRequest'
9423
+ $ref: '#/components/schemas/DomainForwardSetCreateRequest'
9407
9424
  required: true
9408
9425
  responses:
9409
9426
  '201':
9410
9427
  content:
9411
9428
  application/json:
9412
- examples:
9413
- http_domain_forward_response:
9414
- description: Response when creating a HTTP domain forward with redirect
9415
- from HTTP to HTTPS and HTTPS to auth.example.com
9416
- summary: Response for HTTP domain forward
9417
- value:
9418
- created_on: '2025-11-14T09:01:38'
9419
- enabled: false
9420
- hostname: example.com.
9421
- http:
9422
- created_on: '2025-11-14T09:01:38'
9423
- redirects:
9424
- - redirect_code: 301
9425
- request_hostname: example.com.
9426
- request_path: /
9427
- request_protocol: http
9428
- target_hostname: example.com
9429
- target_path: /
9430
- target_protocol: https
9431
- updated_on: '2025-11-14T09:01:38'
9432
- wildcard: false
9433
- https:
9434
- created_on: '2025-11-14T09:01:38'
9435
- redirects:
9436
- - redirect_code: 302
9437
- request_hostname: example.com.
9438
- request_path: /
9439
- request_protocol: https
9440
- target_hostname: auth.example.com
9441
- target_path: /
9442
- target_protocol: https
9443
- updated_on: '2025-11-14T09:01:38'
9444
- wildcard: false
9445
- updated_on: '2025-11-14T09:01:38'
9446
- wildcard: false
9447
- http_to_https_response:
9448
- description: Response when creating a HTTP to HTTPS domain forward
9449
- summary: Response for HTTP to HTTPS
9450
- value:
9451
- created_on: '2025-11-14T09:01:38'
9452
- enabled: false
9453
- hostname: example.com.
9454
- http:
9455
- created_on: '2025-11-14T09:01:38'
9456
- redirects:
9457
- - redirect_code: 301
9458
- request_hostname: example.com.
9459
- request_path: /
9460
- request_protocol: http
9461
- target_hostname: example.com
9462
- target_path: /
9463
- target_protocol: https
9464
- updated_on: '2025-11-14T09:01:38'
9465
- wildcard: false
9466
- updated_on: '2025-11-14T09:01:38'
9467
- wildcard: false
9468
9429
  schema:
9469
- $ref: '#/components/schemas/DomainForward'
9470
- description: Domain forward created successfully
9430
+ $ref: '#/components/schemas/DomainForwardSetResponse'
9431
+ description: Successful Response
9471
9432
  '401':
9472
9433
  content:
9473
9434
  application/problem+json:
@@ -9496,27 +9457,26 @@ paths:
9496
9457
  content:
9497
9458
  application/problem+json:
9498
9459
  example:
9499
- code: ERROR_ZONE_NOT_FOUND
9500
- detail: Zone not found
9460
+ code: ERROR_DOMAIN_FORWARD_NOT_EXISTS
9461
+ detail: Domain forward not found for Additional error context.
9501
9462
  status: 404
9502
- title: DNS Error
9503
- type: dns-zone-not-found
9504
- zone_name: Zone example.com. not found
9463
+ title: Domain Forward Error
9464
+ type: domain-forward-not-found
9505
9465
  schema:
9506
9466
  $ref: '#/components/schemas/Problem'
9507
- description: DNS zone was not found
9467
+ description: Not Found
9508
9468
  '409':
9509
9469
  content:
9510
9470
  application/problem+json:
9511
9471
  example:
9512
9472
  code: ERROR_DOMAIN_FORWARD_ALREADY_EXISTS
9513
- detail: Domain forward already exists for example.com.
9473
+ detail: Domain forward already exists for Additional error context.
9514
9474
  status: 409
9515
9475
  title: Domain Forward Error
9516
9476
  type: domain-forward-already-exists
9517
9477
  schema:
9518
9478
  $ref: '#/components/schemas/Problem'
9519
- description: Domain forward already exists
9479
+ description: Conflict
9520
9480
  '422':
9521
9481
  content:
9522
9482
  application/problem+json:
@@ -9525,7 +9485,7 @@ paths:
9525
9485
  description: Validation Error
9526
9486
  security:
9527
9487
  - OAuth2PasswordBearer: []
9528
- summary: Create a domain forward (deprecated)
9488
+ summary: Create domain forward set
9529
9489
  tags:
9530
9490
  - domain_forward
9531
9491
  /v1/domain-forwards/{hostname}/disable:
@@ -9784,9 +9744,10 @@ paths:
9784
9744
  tags:
9785
9745
  - domain_forward
9786
9746
  post:
9787
- description: Creates a new domain forward set for a specific protocol (HTTP
9788
- or HTTPS). Raises an error if the set already exists.
9789
- operationId: create_domain_forward_set_v1_domain_forwards__hostname___protocol__post
9747
+ deprecated: true
9748
+ description: 'Deprecated: Use POST /{hostname} with protocol in body instead.
9749
+ Creates a new domain forward set for a specific protocol (HTTP or HTTPS).'
9750
+ operationId: create_domain_forward_set_deprecated_v1_domain_forwards__hostname___protocol__post
9790
9751
  parameters:
9791
9752
  - in: path
9792
9753
  name: protocol
@@ -9870,7 +9831,7 @@ paths:
9870
9831
  description: Validation Error
9871
9832
  security:
9872
9833
  - OAuth2PasswordBearer: []
9873
- summary: Create domain forward set
9834
+ summary: Create domain forward set (deprecated)
9874
9835
  tags:
9875
9836
  - domain_forward
9876
9837
  put:
@@ -12962,7 +12923,7 @@ paths:
12962
12923
  content:
12963
12924
  application/json:
12964
12925
  schema:
12965
- $ref: '#/components/schemas/Pagination_User_'
12926
+ $ref: '#/components/schemas/Pagination_UserPublic_'
12966
12927
  description: Successful Response
12967
12928
  '401':
12968
12929
  content:
@@ -13655,7 +13616,7 @@ paths:
13655
13616
  content:
13656
13617
  application/json:
13657
13618
  schema:
13658
- $ref: '#/components/schemas/User'
13619
+ $ref: '#/components/schemas/UserPublic'
13659
13620
  description: Successful Response
13660
13621
  '422':
13661
13622
  content:
@@ -13808,7 +13769,7 @@ paths:
13808
13769
  content:
13809
13770
  application/json:
13810
13771
  schema:
13811
- $ref: '#/components/schemas/UserWithAttributes'
13772
+ $ref: '#/components/schemas/UserPublicWithAttributes'
13812
13773
  description: Successful Response
13813
13774
  '422':
13814
13775
  content:
@@ -13847,7 +13808,7 @@ paths:
13847
13808
  content:
13848
13809
  application/json:
13849
13810
  schema:
13850
- $ref: '#/components/schemas/UserWithAttributes'
13811
+ $ref: '#/components/schemas/UserPublicWithAttributes'
13851
13812
  description: Successful Response
13852
13813
  '422':
13853
13814
  content: