Unexpected Error

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string The [URI reference](https://www.rfc-editor.org/rfc/rfc3986) that identifies the type of problem.
title string A short summary of the problem.
detail string Information about the error.
status integer The error's HTTP status code.
instance string The URI reference that identifies the specific occurrence of the problem.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-tag500error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tag500Error",
  "title": "Unexpected Error",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "format": "uri-reference",
      "description": "The [URI reference](https://www.rfc-editor.org/rfc/rfc3986) that identifies the type of problem.",
      "example": "https://api.postman.com/problems/internal-server-error"
    },
    "title": {
      "type": "string",
      "description": "A short summary of the problem.",
      "example": "Something went wrong"
    },
    "detail": {
      "type": "string",
      "description": "Information about the error.",
      "example": "Something went wrong while fetching entities having the provided slug."
    },
    "status": {
      "type": "integer",
      "format": "http-status-code",
      "description": "The error's HTTP status code.",
      "example": 500
    },
    "instance": {
      "type": "string",
      "example": "/tags/hello-world/entities",
      "description": "The URI reference that identifies the specific occurrence of the problem."
    }
  }
}