addedInput schema / properties / min_intensity
Added value: +{
+ "description": "Return only reports carrying at least one turbulence or icing layer at this intensity or above. The filter selects reports, not layers — a matching report still carries its lighter layers, so a result may include NEG, TRC, or LGT entries alongside the layer that matched. Optional.",
+ "enum": [
+ "lgt",
+ "mod",
+ "sev"
+ ],
+ "type": "string"
+}
removedOutput schema / properties / pireps / items / properties / aircraft_type / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / aircraft_type / type
Added value: +[
+ "string",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / altitude_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
changedOutput schema / properties / pireps / items / properties / altitude_ft / description
Previous value: -"Reported altitude in feet MSL, or null when the pilot gave no flight level (raw /FLUNKN/, /FLDURC/, or /FLDURD/). A raw /FL000/ is a reported flight level of zero and returns 0."New value: +"Reported altitude in feet MSL, or null when the raw flight-level group carries no usable altitude. That covers /FLUNKN/ and the during-climb and during-descent markers, and equally any other group AWC could not read — including one made only of digits, such as /FL2130/. A raw /FL000/ is a reported flight level of zero and returns 0."
addedOutput schema / properties / pireps / items / properties / altitude_ft / type
Added value: +[
+ "number",
+ "null"
+]
changedOutput schema / properties / pireps / items / properties / clouds / anyOf
Previous value: -[
- {
- "items": {
- "additionalProperties": false,
- "description": "A cloud layer, whose base and top are each present only if reported.",
- "properties": {
- "base_ft": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "description": "Cloud base altitude in feet MSL, or null if the pilot reported no base."
- },
- "cover": {
- "description": "Cloud cover code: FEW, SCT, BKN, OVC, SKC, or CLR. The field also carries the flight-condition markers VMC and IMC, which describe the flight environment rather than a cloud layer and arrive with no base or top.",
- "type": "string"
- },
- "top_ft": {
- "anyOf": [
- {
- "type": "number"
- },
- {
- "type": "null"
- }
- ],
- "description": "Cloud top altitude in feet MSL, or null if the pilot reported no top."
- }
- },
- "required": [
- "cover",
- "base_ft",
- "top_ft"
- ],
- "type": "object"
- },
- "type": "array"
- },
- {
- "type": "null"
- }
-]New value: +[
+ {
+ "items": {
+ "additionalProperties": false,
+ "description": "A cloud layer, whose base and top are each present only if reported.",
+ "properties": {
+ "base_ft": {
+ "description": "Cloud base altitude in feet MSL, or null if the pilot reported no base.",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "cover": {
+ "description": "Cloud cover code: FEW, SCT, BKN, OVC, SKC, or CLR. The field also carries the flight-condition markers VMC and IMC, which describe the flight environment rather than a cloud layer and arrive with no base or top.",
+ "type": "string"
+ },
+ "top_ft": {
+ "description": "Cloud top altitude in feet MSL, or null if the pilot reported no top.",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "cover",
+ "base_ft",
+ "top_ft"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+]
changedOutput schema / properties / pireps / items / properties / icing / description
Previous value: -"Icing layers reported. An explicit negative report is a layer with intensity NEG; an empty array means the PIREP carried no icing group, so the pilot said nothing either way."New value: +"Icing layers the raw report carried. An explicit negative report is a layer with intensity NEG; an empty array means the PIREP carried no icing group, so the pilot said nothing either way. Layers AWC synthesized for a report that never mentioned ice are omitted rather than published."
removedOutput schema / properties / pireps / items / properties / icing / items / properties / base_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / icing / items / properties / base_ft / type
Added value: +[
+ "number",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / icing / items / properties / top_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / icing / items / properties / top_ft / type
Added value: +[
+ "number",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / icing / items / properties / type / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / icing / items / properties / type / type
Added value: +[
+ "string",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / remarks / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / remarks / type
Added value: +[
+ "string",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / turbulence / items / properties / base_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / turbulence / items / properties / base_ft / type
Added value: +[
+ "number",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / turbulence / items / properties / frequency / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / turbulence / items / properties / frequency / type
Added value: +[
+ "string",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / turbulence / items / properties / top_ft / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / turbulence / items / properties / top_ft / type
Added value: +[
+ "number",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / turbulence / items / properties / type / anyOf
Removed value: -[
- {
- "type": "string"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / turbulence / items / properties / type / type
Added value: +[
+ "string",
+ "null"
+]
removedOutput schema / properties / pireps / items / properties / visibility_sm / anyOf
Removed value: -[
- {
- "type": "number"
- },
- {
- "type": "null"
- }
-]
addedOutput schema / properties / pireps / items / properties / visibility_sm / type
Added value: +[
+ "number",
+ "null"
+]