action sportsdata_current_season { label: "Current Season" provider: sportsdata method: GET path: "/{format}/CurrentSeason" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["XML", "JSON"] } } required: ["format"] additionalProperties: false } output: { properties: { ApiSeason: { type: "string" } Description: { type: "string" } EndYear: { type: "integer" } PostSeasonStartDate: { type: "string" } RegularSeasonStartDate: { type: "string" } Season: { type: "integer" } StartYear: { type: "integer" } } } }