fly-io · Schema

ErrorResponse

A standard error response.

Properties

Name Type Description
error string Human-readable error message.
status integer HTTP status code.
View JSON Schema on GitHub

JSON Schema

fly-io-errorresponse-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorResponse",
  "title": "ErrorResponse",
  "type": "object",
  "description": "A standard error response.",
  "properties": {
    "error": {
      "type": "string",
      "description": "Human-readable error message."
    },
    "status": {
      "type": "integer",
      "description": "HTTP status code."
    }
  }
}