AeroDataBox · Schema

ErrorContract

Error response

AviationFlightsAerospaceFlight DataAirport Data

Properties

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

JSON Schema

aerodatabox-error-contract-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/aerodatabox/refs/heads/main/json-schema/aerodatabox-error-contract-schema.json",
  "title": "ErrorContract",
  "description": "Error response",
  "type": "object",
  "properties": {
    "message": {
      "minLength": 1,
      "type": "string",
      "description": "Error message"
    }
  },
  "required": [
    "message"
  ],
  "additionalProperties": false
}