changedInput schema / properties / lang / description
Previous value: -"Locale for formatting: en, es, pt, fr (other locales fall back to en)"New value: +"Locale for dates, provider attribution, and commentary: en, es, pt, fr (the summary scaffold stays English; other locales fall back to en)"
changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": false,
+ "properties": {
+ "count": {
+ "type": "number"
+ },
+ "degraded": {
+ "type": "boolean"
+ },
+ "matches": {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "away": {
+ "$ref": "#/properties/matches/items/properties/home"
+ },
+ "group": {
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "home": {
+ "additionalProperties": true,
+ "properties": {
+ "code": {
+ "type": "string"
+ },
+ "flag": {
+ "type": "string"
+ },
+ "name": {
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "id": {
+ "type": "string"
+ },
+ "kickoff": {
+ "type": "string"
+ },
+ "minute": {
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "score": {
+ "anyOf": [
+ {
+ "additionalProperties": true,
+ "properties": {
+ "away": {
+ "type": "number"
+ },
+ "home": {
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "shootout": {
+ "$ref": "#/properties/matches/items/properties/score/anyOf/0"
+ },
+ "stage": {
+ "type": "string"
+ },
+ "status": {
+ "type": "string"
+ },
+ "venue": {
+ "type": "string"
+ },
+ "winnerCode": {
+ "type": "string"
+ }
+ },
+ "required": [
+ "id"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "source": {
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "required": [
+ "degraded",
+ "source",
+ "count",
+ "matches"
+ ],
+ "type": "object"
+}