changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "$schema": "http://json-schema.org/draft-07/schema#",
+ "additionalProperties": true,
+ "properties": {
+ "attribution": {
+ "description": "Cite as \"Data by football-charts.com\"",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "count": {},
+ "current_season": {
+ "$ref": "#/properties/league"
+ },
+ "league": {},
+ "matches": {
+ "anyOf": [
+ {
+ "items": {
+ "additionalProperties": true,
+ "properties": {
+ "awayTeam": {
+ "type": "string"
+ },
+ "date": {
+ "$ref": "#/properties/league"
+ },
+ "first_goal_time": {
+ "$ref": "#/properties/count",
+ "description": "Minute of the first goal; null when goalless"
+ },
+ "first_goal_time_extra": {
+ "$ref": "#/properties/count",
+ "description": "Stoppage-time minutes added to first_goal_time"
+ },
+ "goalless": {
+ "type": [
+ "boolean",
+ "null"
+ ]
+ },
+ "homeTeam": {
+ "type": "string"
+ },
+ "ht_result": {
+ "$ref": "#/properties/league",
+ "description": "Half-time 'home:away'"
+ },
+ "score": {
+ "$ref": "#/properties/league",
+ "description": "Full-time 'home:away', e.g. '3:0'"
+ },
+ "time": {
+ "$ref": "#/properties/league"
+ }
+ },
+ "required": [
+ "homeTeam",
+ "awayTeam"
+ ],
+ "type": "object"
+ },
+ "type": "array"
+ },
+ {
+ "type": "null"
+ }
+ ]
+ },
+ "note": {
+ "$ref": "#/properties/league"
+ },
+ "season": {
+ "$ref": "#/properties/league"
+ },
+ "season_state": {
+ "$ref": "#/properties/league",
+ "description": "'in_season' or 'finished'"
+ }
+ },
+ "type": "object"
+}