changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "airlines": {
+ "description": "Airline codes operating this deal",
+ "items": {
+ "type": "string"
+ },
+ "type": "array"
+ },
+ "currency": {
+ "description": "Currency code (always AUD)",
+ "type": "string"
+ },
+ "deal_id": {
+ "description": "Unique deal identifier",
+ "type": "integer"
+ },
+ "expiry_date": {
+ "description": "Deal expiry date (YYYY-MM-DD)",
+ "type": "string"
+ },
+ "from_price": {
+ "description": "Starting price in AUD",
+ "type": "integer"
+ },
+ "routes": {
+ "description": "Flight routes available for this deal",
+ "items": {
+ "properties": {
+ "destination": {
+ "description": "Destination airport code",
+ "type": "string"
+ },
+ "origin": {
+ "description": "Origin airport code",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "summary": {
+ "description": "Brief description of the deal",
+ "type": "string"
+ },
+ "title": {
+ "description": "Deal headline",
+ "type": "string"
+ },
+ "url": {
+ "description": "URL to view and book the deal",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}