changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "standings": {
+ "items": {
+ "properties": {
+ "abbrev": {
+ "description": "Team abbreviation",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "conference": {
+ "description": "Conference name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "division": {
+ "description": "Division name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "games_played": {
+ "description": "Games played",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "goals_against": {
+ "description": "Goals allowed",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "goals_for": {
+ "description": "Goals scored",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "losses": {
+ "description": "Losses",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Team name",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "ot_losses": {
+ "description": "Overtime losses",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "points": {
+ "description": "Standing points",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "streak": {
+ "description": "Current win/loss streak (e.g., W5, L2)",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "wins": {
+ "description": "Wins",
+ "type": [
+ "number",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of teams in standings",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "standings"
+ ],
+ "type": "object"
+}