@@ -2436,6 +2436,7 @@ components:
24362436 - media
24372437 rbmCardContent :
24382438 type : object
2439+ description : Must contain at least one of title, description, or media to be valid.
24392440 properties :
24402441 title :
24412442 type : string
@@ -2478,7 +2479,6 @@ components:
24782479 $ref : ' #/components/schemas/multiChannelFullActions'
24792480 required :
24802481 - orientation
2481- - thumbnailImageAlignment
24822482 - cardContent
24832483 standaloneCardOrientationEnum :
24842484 type : string
@@ -2489,8 +2489,8 @@ components:
24892489 thumbnailAlignmentEnum :
24902490 type : string
24912491 description : >-
2492- The alignment of the thumbnail image in the card. Only applicable if the
2493- card using horizontal orientation .
2492+ The alignment of the thumbnail image in the card. Required when
2493+ orientation is HORIZONTAL .
24942494 enum :
24952495 - LEFT
24962496 - RIGHT
@@ -2505,6 +2505,7 @@ components:
25052505 type : array
25062506 items :
25072507 $ref : ' #/components/schemas/rbmCardContent'
2508+ minItems : 2
25082509 maxItems : 10
25092510 suggestions :
25102511 $ref : ' #/components/schemas/multiChannelFullActions'
@@ -2568,7 +2569,11 @@ components:
25682569 type : string
25692570 description : >-
25702571 Defines the layout of the WebView on a mobile device. It must be defined
2571- when application is set to `WEBVIEW`
2572+
2573+ when application is set to `WEBVIEW` and must not be set when
2574+ application
2575+
2576+ is set to `BROWSER`.
25722577
25732578 - `FULL` WebView takes the full screen.
25742579
@@ -2626,12 +2631,16 @@ components:
26262631 latitude :
26272632 type : string
26282633 format : double
2629- description : The latitude of the location.
2634+ description : >-
2635+ The latitude of the location. Must be in range [-90.000000,
2636+ 90.000000].
26302637 example : ' 37.7749'
26312638 longitude :
26322639 type : string
26332640 format : double
2634- description : The longitude of the location.
2641+ description : >-
2642+ The longitude of the location. Must be in range [-180.000000,
2643+ 180.000000].
26352644 example : ' -122.4194'
26362645 label :
26372646 type : string
@@ -2655,12 +2664,16 @@ components:
26552664 startTime :
26562665 type : string
26572666 format : date-time
2658- description : The start time of the event.
2667+ description : >-
2668+ The start time of the event. Must be a valid RFC-3339 value,
2669+ e.g., 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00.
26592670 example : 2022-09-14T18:20:16.000Z
26602671 endTime :
26612672 type : string
26622673 format : date-time
2663- description : The end time of the event.
2674+ description : >-
2675+ The end time of the event. Must be a valid RFC-3339 value, e.g.,
2676+ 2021-03-14T01:59:26Z or 2021-03-13T20:59:26-05:00.
26642677 example : 2022-09-14T18:20:16.000Z
26652678 description :
26662679 type : string
@@ -2680,7 +2693,7 @@ components:
26802693 url :
26812694 type : string
26822695 format : uri
2683- description : The URL to open in browser.
2696+ description : The URL to open in browser. Must use http:// or https:// scheme.
26842697 example : https://dev.bandwidth.com
26852698 maxLength : 2048
26862699 application :
@@ -6021,12 +6034,30 @@ components:
60216034 description : Reason code for denial.
60226035 type : integer
60236036 example : 511
6037+ denialStatusCodeNullable :
6038+ description : Reason code for denial.
6039+ nullable : true
6040+ type : integer
6041+ example : 511
60246042 resubmitAllowed :
60256043 description : >-
60266044 Whether a Toll-Free Verification request qualifies for resubmission via
60276045 PUT.
60286046 example : true
60296047 type : boolean
6048+ additionalDenialReason :
6049+ type : object
6050+ properties :
6051+ statusCode :
6052+ $ref : ' #/components/schemas/denialStatusCode'
6053+ reason :
6054+ $ref : ' #/components/schemas/declineReasonDescription'
6055+ resubmitAllowed :
6056+ $ref : ' #/components/schemas/resubmitAllowed'
6057+ required :
6058+ - statusCode
6059+ - reason
6060+ - resubmitAllowed
60306061 blocked :
60316062 description : >-
60326063 Whether a Toll-Free Verification is blocked. This attribute will only be
@@ -6181,19 +6212,6 @@ components:
61816212 type : boolean
61826213 description : Indicates whether the content is age-gated.
61836214 example : false
6184- additionalDenialReason :
6185- properties :
6186- statusCode :
6187- $ref : ' #/components/schemas/denialStatusCode'
6188- reason :
6189- $ref : ' #/components/schemas/declineReasonDescription'
6190- resubmitAllowed :
6191- $ref : ' #/components/schemas/resubmitAllowed'
6192- required :
6193- - statusCode
6194- - reason
6195- - resubmitAllowed
6196- type : object
61976215 internalTicketNumber :
61986216 type : string
61996217 description : >-
@@ -6389,6 +6407,7 @@ components:
63896407 description : >-
63906408 An optional list of denial reasons in addition to
63916409 declineReasonDescription when multiple reasons apply.
6410+ type : array
63926411 items :
63936412 $ref : ' #/components/schemas/additionalDenialReason'
63946413 example :
@@ -6398,7 +6417,6 @@ components:
63986417 - statusCode : 513
63996418 reason : Reason B
64006419 resubmitAllowed : true
6401- type : array
64026420 declineReasonDescription :
64036421 $ref : ' #/components/schemas/declineReasonDescription'
64046422 denialStatusCode :
@@ -6766,6 +6784,23 @@ components:
67666784 $ref : ' #/components/schemas/internalTicketNumber'
67676785 declineReasonDescription :
67686786 $ref : ' #/components/schemas/declineReasonDescription'
6787+ denialStatusCode :
6788+ $ref : ' #/components/schemas/denialStatusCodeNullable'
6789+ additionalDenialReasons :
6790+ description : >-
6791+ An optional list of denial reasons in addition to
6792+ declineReasonDescription when multiple reasons apply.
6793+ nullable : true
6794+ type : array
6795+ items :
6796+ $ref : ' #/components/schemas/additionalDenialReason'
6797+ example :
6798+ - statusCode : 512
6799+ reason : Reason A
6800+ resubmitAllowed : true
6801+ - statusCode : 513
6802+ reason : Reason B
6803+ resubmitAllowed : true
67696804 resubmitAllowed :
67706805 $ref : ' #/components/schemas/resubmitAllowed'
67716806 createdDateTime :
0 commit comments