Schema Not Linked to API

APIs.ioEngineeringPlatform

Properties

Name Type Description
type string The error type.
title string A short summary of the problem.
detail string Details about the error.
View JSON Schema on GitHub

JSON Schema

apis-io-engineering-platform-apischema400errornotlinked-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/apiSchema400ErrorNotLinked",
  "title": "Schema Not Linked to API",
  "type": "object",
  "properties": {
    "type": {
      "type": "string",
      "description": "The error type.",
      "example": "invalidParamError"
    },
    "title": {
      "type": "string",
      "description": "A short summary of the problem.",
      "example": "Invalid param error"
    },
    "detail": {
      "type": "string",
      "description": "Details about the error.",
      "example": "Schema is not linked to the API"
    }
  }
}