Hugging Face · Schema

Error

Properties

Name Type Description
error string Error message
cause_exception string Underlying exception type
cause_message string Underlying exception message
cause_traceback array Stack trace (only in development)
View JSON Schema on GitHub

JSON Schema

hugging-face-dataset-viewer-error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Error",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message"
    },
    "cause_exception": {
      "type": "string",
      "description": "Underlying exception type"
    },
    "cause_message": {
      "type": "string",
      "description": "Underlying exception message"
    },
    "cause_traceback": {
      "type": "array",
      "description": "Stack trace (only in development)"
    }
  }
}