{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://openwebcomics.comicopia.app/schema/error.schema.json",
  "title": "Error",
  "description": "Standard error response body returned with 4xx and 5xx HTTP status codes.",
  "type": "object",
  "required": ["error"],
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable description of the error.",
      "example": "Comic not found"
    }
  },
  "additionalProperties": false
}
