changedOutput schema / (root)
Previous value: -{
- "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"
- ]
- }
- },
- "required": [
- "id",
- "name",
- "position",
- "height",
- "weight",
- "jersey_number",
- "college",
- "country",
- "draft_year",
- "draft_round",
- "draft_number",
- "team"
- ],
- "type": "object"
-}New value: +null