action thebluealliance_get_status { label: "getStatus" description: "Returns API status, and TBA status information." provider: thebluealliance method: GET path: "/status" encoding: json output: { type: "object" required: ["android", "current_season", "down_events", "ios", "is_datafeed_down", "max_season"] properties: { android: { type: "object" required: ["latest_app_version", "min_app_version"] properties: { latest_app_version: { type: "integer" description: "Internal use - Latest application version available." } min_app_version: { type: "integer" description: "Internal use - Minimum application version required to correctly connect and process data." } } } current_season: { type: "integer" description: "Year of the current FRC season." } down_events: { type: "array" description: "An array of strings containing event keys of any active events that are no longer updating." items: { type: "string" } } ios: { type: "object" additionalProperties: true } is_datafeed_down: { type: "boolean" description: "True if the entire FMS API provided by FIRST is down." } max_season: { type: "integer" description: "Maximum FRC season year for valid queries." } } } }