action maif_get_snow_monkey_outages { label: "Get all current Snow Monkey ourages" description: "Get all current Snow Monkey ourages" provider: maif method: GET path: "/api/snowmonkey/outages" encoding: json output: { type: "array" items: { type: "object" description: "An outage by the Snow Monkey on a service" required: ["descriptorId", "descriptorName", "until", "duration"] properties: { descriptorId: { type: "string" description: "The service impacted by outage" } descriptorName: { type: "string" description: "The name of service impacted by outage" } duration: { type: "integer" format: "int32" description: "The duration of the outage" } until: { type: "string" format: "time" description: "The end of the outage" } } } } }