action signl4_get_teams_team_id_schedules_schedule_id { label: "Returns information of the duty schedule with the specified Id." provider: signl4 method: GET path: "/teams/{teamId}/schedules/{scheduleId}" encoding: json input: { type: "object" properties: { scheduleId: { type: "string" } teamId: { type: "string" } } required: ["scheduleId", "teamId"] additionalProperties: false } output: { type: "object" properties: { end: { type: "string" format: "date-time" } id: { type: "string" } options: { type: "integer" format: "int32" } start: { type: "string" format: "date-time" } userId: { type: "string" } } additionalProperties: false } }