Skip to content

Commit 40ad7af

Browse files
committed
Merge branch 'release/1.1.0-RC4' into main
2 parents 9bf17ed + e3c1b46 commit 40ad7af

File tree

1 file changed

+70
-0
lines changed

1 file changed

+70
-0
lines changed

schema.json

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@
3333
{
3434
"$ref": "#/definitions/nodes/starts/webTouchPointStart"
3535
},
36+
{
37+
"$ref": "#/definitions/nodes/starts/permissionStart"
38+
},
3639
{
3740
"$ref": "#/definitions/nodes/actions/copyToWorkflowAction"
3841
},
@@ -508,6 +511,73 @@
508511
"meta",
509512
"connections"
510513
]
514+
},
515+
"permissionStart": {
516+
"title": "permissionStart",
517+
"type": "object",
518+
"properties": {
519+
"id": {
520+
"$ref": "#/definitions/types/uuid"
521+
},
522+
"type": {
523+
"const": "permissionStart"
524+
},
525+
"config": {
526+
"type": "object",
527+
"properties": {
528+
"permission": {
529+
"oneOf": [
530+
{
531+
"enum": [
532+
"confirmed",
533+
"unsubscribed"
534+
]
535+
},
536+
{
537+
"type": "null"
538+
}
539+
]
540+
},
541+
"poolId": {
542+
"$ref": "#/definitions/types/evalancheId"
543+
},
544+
"multipass": {
545+
"$ref": "#/definitions/types/multipass"
546+
},
547+
"startTime": {
548+
"oneOf": [
549+
{
550+
"$ref": "#/definitions/types/dateTime"
551+
},
552+
{
553+
"type": "null"
554+
}
555+
]
556+
}
557+
},
558+
"additionalProperties": false,
559+
"required": [
560+
"permission",
561+
"poolId",
562+
"multipass",
563+
"startTime"
564+
]
565+
},
566+
"meta": {
567+
"$ref": "#/definitions/meta/node"
568+
},
569+
"connections": {
570+
"$ref": "#/definitions/connections/singleOutput"
571+
}
572+
},
573+
"additionalProperties": false,
574+
"required": [
575+
"id",
576+
"type",
577+
"config",
578+
"meta",
579+
"connections"
580+
]
511581
}
512582
},
513583
"actions": {

0 commit comments

Comments
 (0)