You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: The HTTP endpoint to send the request to.
253
254
oneOf:
254
255
- $ref: '#/$defs/endpoint'
255
-
- type: string
256
+
- $ref: '#/$defs/runtimeExpression'
257
+
- title: LiteralEndpoint
258
+
type: string
256
259
format: uri-template
257
260
headers:
258
261
type: object
@@ -360,23 +363,32 @@ $defs:
360
363
type: string
361
364
description: The event's unique identifier
362
365
source:
363
-
type: string
364
-
format: uri
365
366
description: Identifies the context in which an event happened
367
+
oneOf:
368
+
- title: LiteralSource
369
+
type: string
370
+
format: uri-template
371
+
- $ref: '#/$defs/runtimeExpression'
366
372
type:
367
373
type: string
368
374
description: This attribute contains a value describing the type of event related to the originating occurrence.
369
375
time:
370
-
type: string
371
-
format: date-time
376
+
oneOf:
377
+
- title: LiteralTime
378
+
type: string
379
+
format: date-time
380
+
- $ref: '#/$defs/runtimeExpression'
372
381
subject:
373
382
type: string
374
383
datacontenttype:
375
384
type: string
376
385
description: Content type of data value. This attribute enables data to carry any type of content, whereby format and encoding might differ from that of the chosen event format.
377
386
dataschema:
378
-
type: string
379
-
format: uri
387
+
oneOf:
388
+
- title: LiteralDataSchema
389
+
type: string
390
+
format: uri-template
391
+
- $ref: '#/$defs/runtimeExpression'
380
392
required: [ source, type ]
381
393
additionalProperties: true
382
394
required: [ event ]
@@ -772,16 +784,22 @@ $defs:
772
784
type: object
773
785
properties:
774
786
type:
775
-
type: string
776
-
format: uri
777
787
description: A URI reference that identifies the error type.
788
+
oneOf:
789
+
- title: LiteralErrorType
790
+
type: string
791
+
format: uri-template
792
+
- $ref: '#/$defs/runtimeExpression'
778
793
status:
779
794
type: integer
780
795
description: The status code generated by the origin for this occurrence of the error.
781
796
instance:
782
-
type: string
783
-
format: json-pointer
784
797
description: A JSON Pointer used to reference the component the error originates from.
798
+
oneOf:
799
+
- title: LiteralErrorInstance
800
+
type: string
801
+
format: json-pointer
802
+
- $ref: '#/$defs/runtimeExpression'
785
803
title:
786
804
type: string
787
805
description: A short, human-readable summary of the error.
0 commit comments