action wiremock_get_admin_scenarios { label: "Get all scenarios" provider: wiremock method: GET path: "/__admin/scenarios" encoding: json output: { type: "object" properties: { scenarios: { type: "array" items: { type: "object" properties: { id: { type: "string" description: "The scenario ID" } name: { type: "string" description: "The scenario name" } possibleStates: { type: "array" items: { type: "string" description: "All the states this scenario can be in" } } state: { type: "string" description: "The current state of this scenario" } } } } } } }