SignWell · Schema

ValidationErrorResponse

Validation error response. The errors object contains field-specific error details with dynamic keys.

E-SignatureElectronic SignatureDocumentsPDFSigningTemplatesWorkflowsHIPAASOC2

Properties

Name Type Description
errors object Field-specific validation errors. Keys are field names (e.g., recipients, fields, files). Values can be strings, arrays of strings, or nested objects with further field-specific errors.
View JSON Schema on GitHub

JSON Schema

ValidationErrorResponse.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/signwell/main/json-schema/ValidationErrorResponse.json",
  "title": "ValidationErrorResponse",
  "type": "object",
  "description": "Validation error response. The errors object contains field-specific error details with dynamic keys.",
  "properties": {
    "errors": {
      "type": "object",
      "additionalProperties": true,
      "description": "Field-specific validation errors. Keys are field names (e.g., recipients, fields, files). Values can be strings, arrays of strings, or nested objects with further field-specific errors."
    }
  },
  "required": [
    "errors"
  ]
}