removedOutput schema / properties / advisories / items / properties / altitude_high_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / advisories / items / properties / altitude_high_ft / type
Added value: +[
+ "number",
+ "null"
+]
removedOutput schema / properties / advisories / items / properties / altitude_low_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / advisories / items / properties / altitude_low_ft / type
Added value: +[
+ "number",
+ "null"
+]
changedOutput schema / properties / advisories / items / properties / movement / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "properties": {
- "direction_deg": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "description": "Movement direction in degrees true, or null if stationary."
- },
- "speed_kt": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "description": "Movement speed in knots, or null if stationary."
- }
- },
- "required": [
- "direction_deg",
- "speed_kt"
- ],
- "type": "object"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "properties": {
+ "direction_deg": {
+ "description": "Movement direction in degrees true, or null if stationary.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "speed_kt": {
+ "description": "Movement speed in knots, or null if stationary.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "direction_deg",
+ "speed_kt"
+ ],
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+]
removedOutput schema / properties / advisories / items / properties / severity / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / advisories / items / properties / severity / type
Added value: +[
+ "number",
+ "null"
+]