schema.timeouts.workflowexectimeout.json Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of serverlessworkflow-api Show documentation
Show all versions of serverlessworkflow-api Show documentation
Java SDK for Serverless Workflow Specification
{
"type": "object",
"javaType": "io.serverlessworkflow.api.timeouts.WorkflowExecTimeout",
"properties": {
"duration": {
"type": "string",
"description": "Workflow execution timeout duration (ISO 8601 duration format). If not specified should be 'unlimited'",
"minLength": 1
},
"interrupt": {
"type": "boolean",
"description": "If `false`, workflow instance is allowed to finish current execution. If `true`, current workflow execution is abrupted.",
"default": true
},
"runBefore": {
"type": "string",
"description": "Name of a workflow state to be executed before workflow instance is terminated",
"minLength": 1
}
},
"required": [
"duration"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy