changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "advisories": {
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "description": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "expires": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "posted": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "smsText": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "station": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "type": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id",
+ "station",
+ "type",
+ "description",
+ "smsText",
+ "posted",
+ "expires"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "advisoryCount": {
+ "type": "number"
+ },
+ "types": {
+ "additionalProperties": {
+ "type": "number"
+ },
+ "type": "object"
+ }
+ },
+ "required": [
+ "advisoryCount",
+ "types",
+ "advisories"
+ ],
+ "type": "object"
+}