AeroDataBox · Schema

ErrorContract

Error response

AviationFlightsAerospaceFlight DataAirport Data

Properties

Name Type Description
message string Error message
View JSON Schema on GitHub

JSON Schema

aerodatabox-errorcontract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/ErrorContract",
  "title": "ErrorContract",
  "required": [
    "message"
  ],
  "type": "object",
  "properties": {
    "message": {
      "minLength": 1,
      "type": "string",
      "description": "Error message"
    }
  },
  "additionalProperties": false,
  "description": "Error response"
}