Not Found

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-tag404error-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/tag404Error",
  "title": "Not Found",
  "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/not-found"
    },
    "title": {
      "type": "string",
      "description": "A short summary of the problem.",
      "example": "Resource Not Found"
    },
    "detail": {
      "type": "string",
      "description": "Information about the error.",
      "example": "Slug 'needs-review' does not exist."
    },
    "status": {
      "type": "integer",
      "format": "http-status-code",
      "description": "The error's HTTP status code.",
      "example": 404
    },
    "instance": {
      "type": "string",
      "description": "The URI reference that identifies the specific occurrence of the problem.",
      "example": "/tags/needs-review/entities"
    }
  }
}