@@ -14222,8 +14222,8 @@ components:
14222
14222
operator:
14223
14223
$ref: '#/components/schemas/SyntheticsAssertionBodyHashOperator'
14224
14224
target:
14225
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14225
14226
description: Value used by the operator.
14226
- example: 123456
14227
14227
type:
14228
14228
$ref: '#/components/schemas/SyntheticsAssertionBodyHashType'
14229
14229
required:
@@ -14279,6 +14279,7 @@ components:
14279
14279
description: The specific operator to use on the path.
14280
14280
type: string
14281
14281
targetValue:
14282
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14282
14283
description: The path target value to compare to.
14283
14284
type: object
14284
14285
SyntheticsAssertionJSONSchemaMetaSchema:
@@ -14386,8 +14387,8 @@ components:
14386
14387
description: The associated assertion property.
14387
14388
type: string
14388
14389
target:
14390
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14389
14391
description: Value used by the operator.
14390
- example: 123456
14391
14392
timingsScope:
14392
14393
$ref: '#/components/schemas/SyntheticsAssertionTimingsScope'
14393
14394
type:
@@ -14397,6 +14398,19 @@ components:
14397
14398
- operator
14398
14399
- target
14399
14400
type: object
14401
+ SyntheticsAssertionTargetValue:
14402
+ description: Value used by the operator in assertions. Can be either a number
14403
+ or string.
14404
+ oneOf:
14405
+ - $ref: '#/components/schemas/SyntheticsAssertionTargetValueNumber'
14406
+ - $ref: '#/components/schemas/SyntheticsAssertionTargetValueString'
14407
+ SyntheticsAssertionTargetValueNumber:
14408
+ description: Numeric value used by the operator in assertions.
14409
+ format: int64
14410
+ type: integer
14411
+ SyntheticsAssertionTargetValueString:
14412
+ description: String value used by the operator in assertions.
14413
+ type: string
14400
14414
SyntheticsAssertionTimingsScope:
14401
14415
description: Timings scope for response time assertions.
14402
14416
enum:
@@ -14481,6 +14495,7 @@ components:
14481
14495
description: The specific operator to use on the path.
14482
14496
type: string
14483
14497
targetValue:
14498
+ $ref: '#/components/schemas/SyntheticsAssertionTargetValue'
14484
14499
description: The path target value to compare to.
14485
14500
xPath:
14486
14501
description: The X path to assert.
0 commit comments