changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "teams": {
+ "description": "List of all NBA teams",
+ "items": {
+ "properties": {
+ "abbreviation": {
+ "description": "Team abbreviation",
+ "type": "string"
+ },
+ "city": {
+ "description": "Team city",
+ "type": "string"
+ },
+ "conference": {
+ "description": "Conference (East/West)",
+ "type": "string"
+ },
+ "division": {
+ "description": "Division name",
+ "type": "string"
+ },
+ "full_name": {
+ "description": "Full team name",
+ "type": "string"
+ },
+ "id": {
+ "description": "Team ID",
+ "type": "number"
+ },
+ "name": {
+ "description": "Team name",
+ "type": "string"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "total": {
+ "description": "Total number of NBA teams",
+ "type": "number"
+ }
+ },
+ "required": [
+ "total",
+ "teams"
+ ],
+ "type": "object"
+}