28 lines
487 B
JSON
28 lines
487 B
JSON
{
|
|
"StartAt": "ChoiceStateX",
|
|
"States": {
|
|
"ChoiceStateX": {
|
|
"Type": "Choice",
|
|
"Choices": [
|
|
{
|
|
"And": [
|
|
{
|
|
"Variable": "$.type",
|
|
"StringEquals": "Public"
|
|
}
|
|
],
|
|
"Next": "Public"
|
|
}
|
|
],
|
|
"Default": "DefaultState"
|
|
},
|
|
"Public": {
|
|
"Type": "Pass",
|
|
"End": true
|
|
},
|
|
"DefaultState": {
|
|
"Type": "Fail",
|
|
"Cause": "No Matches!"
|
|
}
|
|
}
|
|
} |