true if there is at least one game being played at the time of the request or false if there are none."
provider: sportsdata
method: GET
path: "/{format}/AreAnyGamesInProgress"
encoding: json
input: {
type: "object"
properties: {
format: {
type: "string"
enum: ["XML", "JSON"]
}
}
required: ["format"]
additionalProperties: false
}
output: {
type: "boolean"
}
}