action collegefootballdata_get_fbs_teams { label: "FBS team list" description: "Information on major division teams" provider: collegefootballdata method: GET path: "/teams/fbs" encoding: json input: { type: "object" properties: { year: { type: "integer" } } additionalProperties: false } output: { type: "array" items: { type: "object" properties: { abbreviation: { type: "string" } alt_color: { type: "string" } alt_name_1: { type: "string" } alt_name_2: { type: "string" } alt_name_3: { type: "string" } classification: { type: "string" } color: { type: "string" } conference: { type: "string" } division: { type: "string" } id: { type: "integer" } location: { type: "object" properties: { capacity: { type: "number" } city: { type: "string" } country_code: { type: "string" } dome: { type: "boolean" } elevation: { type: "number" } grass: { type: "boolean" } latitude: { type: "number" } longitude: { type: "number" } name: { type: "string" } state: { type: "string" } timezone: { type: "string" } venue_id: { type: "integer" } year_constructed: { type: "number" } zip: { type: "string" } } } logos: { type: "array" items: { type: "string" } } mascot: { type: "string" } school: { type: "string" } twitter: { type: "string" } } } } }