Stability AI · Schema

ErrorResponse

3D GenerationAIGenerative AIImage GenerationImage EditingMachine LearningStable DiffusionText to ImageVideo Generation

Properties

Name Type Description
id string A unique identifier for the error instance.
name string The error type name.
message string A human-readable description of the error.
View JSON Schema on GitHub

JSON Schema

stability-ai-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "A unique identifier for the error instance."
    },
    "name": {
      "type": "string",
      "description": "The error type name."
    },
    "message": {
      "type": "string",
      "description": "A human-readable description of the error."
    }
  }
}