changedInput schema / properties / payload / anyOf
Previous value: -[
- {
- "additionalProperties": false,
- "description": "Payload for draft_pick or drop_player.",
- "properties": {
- "player_id": {
- "description": "Exact player ID from the saved snapshot.",
- "title": "Player Id",
- "type": "string"
- }
- },
- "required": [
- "player_id"
- ],
- "title": "PickPayload",
- "type": "object"
- },
- {
- "additionalProperties": false,
- "description": "Payload for set_lineup.",
- "properties": {
- "lineup": {
- "additionalProperties": {
- "type": "string"
- },
- "description": "Every starter slot mapped to a unique active-roster player ID, using slot keys such as QB1, RB1, and FLEX1.",
- "title": "Lineup",
- "type": "object"
- }
- },
- "required": [
- "lineup"
- ],
- "title": "LineupPayload",
- "type": "object"
- },
- {
- "additionalProperties": false,
- "description": "Payload for waiver_claim or free_agent_add.",
- "properties": {
- "bid": {
- "default": 0,
- "description": "Nonnegative integer FAAB bid, subject to user budget limits. free_agent_add requires zero.",
- "minimum": 0,
- "title": "Bid",
- "type": "integer"
- },
- "drop_id": {
- "anyOf": [
- {
- "type": "string"
- },
- {
- "type": "null"
- }
- ],
- "default": null,
- "description": "Optional active-roster player ID to drop. A full roster requires an allowed drop.",
- "title": "Drop Id"
- },
- "player_id": {
- "description": "Exact unrostered player ID to acquire from the saved snapshot.",
- "title": "Player Id",
- "type": "string"
- }
- },
- "required": [
- "player_id"
- ],
- "title": "AddPayload",
- "type": "object"
- }
-]New value: +[
+ {
+ "additionalProperties": false,
+ "description": "Payload for draft_pick or drop_player.",
+ "properties": {
+ "player_id": {
+ "description": "Exact player ID from the saved snapshot.",
+ "title": "Player Id",
+ "type": "string"
+ }
+ },
+ "required": [
+ "player_id"
+ ],
+ "title": "PickPayload",
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "description": "Payload for set_lineup.",
+ "properties": {
+ "lineup": {
+ "additionalProperties": {
+ "type": "string"
+ },
+ "description": "Every starter slot mapped to a unique active-roster player ID, using slot keys such as QB1, RB1, and FLEX1.",
+ "title": "Lineup",
+ "type": "object"
+ },
+ "repair_player_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Repair Player Id"
+ }
+ },
+ "required": [
+ "lineup"
+ ],
+ "title": "LineupPayload",
+ "type": "object"
+ },
+ {
+ "additionalProperties": false,
+ "description": "Payload for waiver_claim or free_agent_add.",
+ "properties": {
+ "bid": {
+ "default": 0,
+ "description": "Nonnegative integer FAAB bid, subject to user budget limits. free_agent_add requires zero.",
+ "minimum": 0,
+ "title": "Bid",
+ "type": "integer"
+ },
+ "drop_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "description": "Optional active-roster player ID to drop. A full roster requires an allowed drop.",
+ "title": "Drop Id"
+ },
+ "player_id": {
+ "description": "Exact unrostered player ID to acquire from the saved snapshot.",
+ "title": "Player Id",
+ "type": "string"
+ },
+ "repair_player_id": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Repair Player Id"
+ }
+ },
+ "required": [
+ "player_id"
+ ],
+ "title": "AddPayload",
+ "type": "object"
+ }
+]