changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "active_fire_count": {
+ "type": "number"
+ },
+ "fires": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "acres": {
+ "type": "number"
+ },
+ "behavior": {
+ "type": "string"
+ },
+ "contained_pct": {
+ "type": "number"
+ },
+ "discovered": {
+ "type": "string"
+ },
+ "dist_mi_from_sedona": {
+ "type": "number"
+ },
+ "lat": {
+ "type": "number"
+ },
+ "lon": {
+ "type": "number"
+ },
+ "name": {
+ "type": "string"
+ },
+ "state": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "name"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "search_area": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "updated": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "updated",
+ "search_area",
+ "active_fire_count",
+ "fires",
+ "source"
+ ],
+ "type": "object"
+}