schema.datainputschema.datainputschema.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.datainputschema.DataInputSchema",
"description": "Workflow data input schema",
"properties": {
"schema": {
"type": "string",
"description": "URI of the JSON Schema used to validate the workflow data input",
"minLength": 1
},
"failOnValidationErrors": {
"type": "boolean",
"default": true,
"description": "Determines if workfow execution should continue if there are validation errors"
}
},
"required": [
"schema",
"failOnValidationErrors"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy