schema.auth.basicauthdef.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.auth.BasicAuthDefinition",
"properties": {
"username": {
"type": "string",
"description": "String or a workflow expression. Contains the user name",
"minLength": 1
},
"password": {
"type": "string",
"description": "String or a workflow expression. Contains the user password",
"minLength": 1
},
"metadata": {
"$ref": "../metadata/metadata.json"
}
},
"required": [
"username",
"password"
]
}