All Downloads are FREE. Search and download functionalities are using the official Maven repository.

schema.error.errordef.json Maven / Gradle / Ivy

There is a newer version: 7.0.0-alpha2
Show newest version
{
  "type": "object",
  "javaType": "io.serverlessworkflow.api.error.ErrorDefinition",
  "properties": {
    "name": {
      "type": "string",
      "description": "Domain-specific error name",
      "minLength": 1
    },
    "code": {
      "type": "string",
      "description": "Error code. Can be used in addition to the name to help runtimes resolve to technical errors/exceptions. Should not be defined if error is set to '*'",
      "minLength": 1
    },
    "description": {
      "type": "string",
      "description": "Error description"
    }
  },
  "required": [
    "name"
  ]
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy