schema.functions.functionref.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.functions.FunctionRef",
"properties": {
"refName": {
"type": "string",
"description": "Name of the referenced function",
"minLength": 1
},
"arguments": {
"type": "object",
"description": "Function arguments",
"existingJavaType": "com.fasterxml.jackson.databind.JsonNode"
},
"selectionSet": {
"type": "string",
"description": "Only used if function type is 'graphql'. A string containing a valid GraphQL selection set"
},
"invoke": {
"type": "string",
"enum": [
"sync",
"async"
],
"description": "Specifies if the function should be invoked sync or async. Default is sync.",
"default": "sync"
}
},
"required": [
"refName"
]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy