addedInput schema / properties / aircraft / anyOf
Added value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / aircraft / default
Added value: +null
removedInput schema / properties / aircraft / properties
Removed value: -{
- "cruise_altitude": {
- "default": 35000,
- "description": "Cruise altitude in feet",
- "maximum": 45000,
- "minimum": 8000,
- "type": "integer"
- },
- "mass_kg": {
- "description": "Aircraft mass in kg (optional, uses 85% MTOW if not specified)",
- "type": "number"
- },
- "type": {
- "description": "ICAO aircraft type (e.g., 'A320', 'B738', 'A359')",
- "type": "string"
- }
-}
removedInput schema / properties / aircraft / required
Removed value: -[
- "type"
-]
addedInput schema / properties / aircraft / title
Added value: +"Aircraft"
removedInput schema / properties / aircraft / type
Removed value: -"object"
addedInput schema / properties / arrival / additionalProperties
Added value: +true
removedInput schema / properties / arrival / properties
Removed value: -{
- "city": {
- "description": "Arrival city name",
- "type": "string"
- },
- "country": {
- "description": "Arrival country code (optional)",
- "type": "string"
- },
- "iata": {
- "description": "Preferred arrival IATA code (optional)",
- "type": "string"
- }
-}
removedInput schema / properties / arrival / required
Removed value: -[
- "city"
-]
addedInput schema / properties / arrival / title
Added value: +"Arrival"
addedInput schema / properties / departure / additionalProperties
Added value: +true
removedInput schema / properties / departure / properties
Removed value: -{
- "city": {
- "description": "Departure city name",
- "type": "string"
- },
- "country": {
- "description": "Departure country code (optional)",
- "type": "string"
- },
- "iata": {
- "description": "Preferred departure IATA code (optional)",
- "type": "string"
- }
-}
removedInput schema / properties / departure / required
Removed value: -[
- "city"
-]
addedInput schema / properties / departure / title
Added value: +"Departure"
addedInput schema / properties / route_options / anyOf
Added value: +[
+ {
+ "additionalProperties": true,
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / route_options / default
Added value: +null
removedInput schema / properties / route_options / properties
Removed value: -{
- "step_km": {
- "default": 25,
- "description": "Distance between polyline points in km",
- "minimum": 1,
- "type": "number"
- }
-}
addedInput schema / properties / route_options / title
Added value: +"Route Options"
removedInput schema / properties / route_options / type
Removed value: -"object"
changedInput schema / required
Previous value: -[
- "departure",
- "arrival",
- "aircraft"
-]New value: +[
+ "departure",
+ "arrival"
+]
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "result": {
+ "title": "Result",
+ "type": "string"
+ }
+ },
+ "required": [
+ "result"
+ ],
+ "title": "_WrappedResult",
+ "type": "object",
+ "x-fastmcp-wrap-result": true
+}