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
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@
9
9
-[About](#about)
10
10
-[Ecosystem](#ecosystem)
11
11
+[DSL](dsl.md)
12
-
+[CTK](/ctk/readme.md)
12
+
+[CTK](/ctk/README.md)
13
13
+[SDKs](#sdks)
14
14
+[Runtimes](#runtimes)
15
15
+[Tooling](#Tooling)
@@ -177,4 +177,4 @@ By becoming a sponsor, you'll not only demonstrate your commitment to advancing
177
177
178
178
Sponsorship opportunities range from financial contributions to in-kind support, and every sponsorship makes a meaningful impact on the project's success and sustainability.
179
179
180
-
Support our project by [becoming a Sponsor](https://crowdfunding.lfx.linuxfoundation.org/projects/serverless-workflow).
180
+
Support our project by [becoming a Sponsor](https://crowdfunding.lfx.linuxfoundation.org/projects/serverless-workflow).
description: The HTTP endpoint to send the request to.
257
258
oneOf:
258
259
- $ref: '#/$defs/endpoint'
259
-
- type: string
260
+
- $ref: '#/$defs/runtimeExpression'
261
+
- title: LiteralEndpoint
262
+
type: string
260
263
format: uri-template
261
264
headers:
262
265
type: object
@@ -366,23 +369,32 @@ $defs:
366
369
type: string
367
370
description: The event's unique identifier
368
371
source:
369
-
type: string
370
-
format: uri
371
372
description: Identifies the context in which an event happened
373
+
oneOf:
374
+
- title: LiteralSource
375
+
type: string
376
+
format: uri-template
377
+
- $ref: '#/$defs/runtimeExpression'
372
378
type:
373
379
type: string
374
380
description: This attribute contains a value describing the type of event related to the originating occurrence.
375
381
time:
376
-
type: string
377
-
format: date-time
382
+
oneOf:
383
+
- title: LiteralTime
384
+
type: string
385
+
format: date-time
386
+
- $ref: '#/$defs/runtimeExpression'
378
387
subject:
379
388
type: string
380
389
datacontenttype:
381
390
type: string
382
391
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.
383
392
dataschema:
384
-
type: string
385
-
format: uri
393
+
oneOf:
394
+
- title: LiteralDataSchema
395
+
type: string
396
+
format: uri-template
397
+
- $ref: '#/$defs/runtimeExpression'
386
398
required: [ source, type ]
387
399
additionalProperties: true
388
400
required: [ event ]
@@ -535,7 +547,7 @@ $defs:
535
547
required: [ command ]
536
548
required: [ shell ]
537
549
description: Enables the execution of shell commands within a workflow, enabling workflows to interact with the underlying operating system and perform system-level operations, such as file manipulation, environment configuration, or system administration tasks.
538
-
- title: RunWokflow
550
+
- title: RunWorkflow
539
551
properties:
540
552
workflow:
541
553
title: RunWorkflowDescriptor
@@ -681,7 +693,8 @@ $defs:
681
693
type: object
682
694
unevaluatedProperties: false
683
695
oneOf:
684
-
- properties:
696
+
- title: BasicAuthenticationData
697
+
properties:
685
698
username:
686
699
type: string
687
700
description: The username to use.
@@ -698,7 +711,8 @@ $defs:
698
711
type: object
699
712
unevaluatedProperties: false
700
713
oneOf:
701
-
- properties:
714
+
- title: BearerAuthenticationData
715
+
properties:
702
716
token:
703
717
type: string
704
718
description: The bearer token to use.
@@ -712,7 +726,8 @@ $defs:
712
726
type: object
713
727
unevaluatedProperties: false
714
728
oneOf:
715
-
- properties:
729
+
- title: OAuth2AutenthicationData
730
+
properties:
716
731
authority:
717
732
type: string
718
733
format: uri
@@ -795,16 +810,22 @@ $defs:
795
810
unevaluatedProperties: false
796
811
properties:
797
812
type:
798
-
type: string
799
-
format: uri
800
813
description: A URI reference that identifies the error type.
814
+
oneOf:
815
+
- title: LiteralErrorType
816
+
type: string
817
+
format: uri-template
818
+
- $ref: '#/$defs/runtimeExpression'
801
819
status:
802
820
type: integer
803
821
description: The status code generated by the origin for this occurrence of the error.
804
822
instance:
805
-
type: string
806
-
format: json-pointer
807
823
description: A JSON Pointer used to reference the component the error originates from.
824
+
oneOf:
825
+
- title: LiteralErrorInstance
826
+
type: string
827
+
format: json-pointer
828
+
- $ref: '#/$defs/runtimeExpression'
808
829
title:
809
830
type: string
810
831
description: A short, human-readable summary of the error.
0 commit comments