changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "alert_count": {
+ "type": "number"
+ },
+ "alerts": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "areas": {
+ "type": "string"
+ },
+ "description": {
+ "type": "string"
+ },
+ "effective": {
+ "type": "string"
+ },
+ "event": {
+ "type": "string"
+ },
+ "expires": {
+ "type": "string"
+ },
+ "headline": {
+ "type": "string"
+ },
+ "instruction": {
+ "type": "string"
+ },
+ "severity": {
+ "type": "string"
+ },
+ "urgency": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "event"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "location": {
+ "type": "string"
+ },
+ "source": {
+ "type": "string"
+ },
+ "updated": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "location",
+ "updated",
+ "alert_count",
+ "alerts",
+ "source"
+ ],
+ "type": "object"
+}