Hugging Face · Schema

ErrorResponse

Properties

Name Type Description
error string Error message
error_type string Error type classification
View JSON Schema on GitHub

JSON Schema

hugging-face-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "error": {
      "type": "string",
      "description": "Error message",
      "example": "example_value"
    },
    "error_type": {
      "type": "string",
      "description": "Error type classification",
      "example": "example_value"
    }
  }
}