changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "players": {
+ "description": "List of matching players",
+ "items": {
+ "properties": {
+ "college": {
+ "description": "College attended",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "country": {
+ "description": "Country of origin",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "draft_number": {
+ "description": "Draft pick number",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "draft_round": {
+ "description": "Draft round",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "draft_year": {
+ "description": "Year drafted",
+ "type": [
+ "number",
+ "null"
+ ]
+ },
+ "height": {
+ "description": "Player height",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "id": {
+ "description": "Player ID",
+ "type": "number"
+ },
+ "jersey_number": {
+ "description": "Jersey number",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "name": {
+ "description": "Full name (first + last)",
+ "type": "string"
+ },
+ "position": {
+ "description": "Player position",
+ "type": [
+ "string",
+ "null"
+ ]
+ },
+ "team": {
+ "description": "Current team information",
+ "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",
+ "null"
+ ]
+ },
+ "weight": {
+ "description": "Player weight",
+ "type": [
+ "string",
+ "null"
+ ]
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "query": {
+ "description": "Search query for player names",
+ "type": "string"
+ },
+ "returned": {
+ "description": "Number of players returned in this response",
+ "type": "number"
+ },
+ "total": {
+ "description": "Total count of matching players",
+ "type": "number"
+ }
+ },
+ "required": [
+ "query",
+ "total",
+ "returned",
+ "players"
+ ],
+ "type": "object"
+}