action collegefootballdata_get_venues { label: "Arena and venue information" description: "Venues" provider: collegefootballdata method: GET path: "/venues" encoding: json output: { type: "array" items: { type: "object" properties: { capacity: { type: "integer" } city: { type: "string" } country_code: { type: "string" } dome: { type: "boolean" } elevation: { type: "number" } grass: { type: "boolean" } id: { type: "integer" } location: { type: "object" properties: { x: { type: "number" } y: { type: "number" } } } name: { type: "string" } state: { type: "string" } timezone: { type: "string" } year_constructed: { type: "integer" } zip: { type: "string" } } } } }