action sportsdata_stadiums { label: "Stadiums" provider: sportsdata method: GET path: "/{format}/Stadiums" encoding: json input: { type: "object" properties: { format: { type: "string" enum: ["XML", "JSON"] } } required: ["format"] additionalProperties: false } output: { type: "array" items: { properties: { Active: { type: "boolean" } Address: { type: "string" } Capacity: { type: "integer" } City: { type: "string" } Country: { type: "string" } GeoLat: { type: "number" } GeoLong: { type: "number" } Name: { type: "string" } StadiumID: { type: "integer" } State: { type: "string" } Zip: { type: "string" } } } } }