changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
+ "additionalProperties": false,
+ "properties": {
+ "accuracy_url": {
+ "type": "string"
+ },
+ "applies_today_count": {
+ "type": "number"
+ },
+ "attribution": {
+ "type": "string"
+ },
+ "data_as_of": {
+ "type": "string"
+ },
+ "today_dow": {
+ "type": "number"
+ },
+ "today_name": {
+ "type": "string"
+ },
+ "venues": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "discounts": {
+ "items": {
+ "additionalProperties": {},
+ "properties": {
+ "applies_today": {
+ "type": "boolean"
+ },
+ "day": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "detail": {
+ "type": "string"
+ },
+ "kind": {
+ "type": "string"
+ },
+ "label": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "label",
+ "kind",
+ "day",
+ "detail",
+ "applies_today"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "name": {
+ "type": "string"
+ },
+ "neighborhood": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "short": {
+ "type": "string"
+ },
+ "venue_id": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "venue_id",
+ "name",
+ "short",
+ "neighborhood",
+ "discounts"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ }
+ },
+ "required": [
+ "data_as_of",
+ "attribution",
+ "accuracy_url",
+ "today_dow",
+ "today_name",
+ "applies_today_count",
+ "venues"
+ ],
+ "type": "object"
+}