action signl4_post_teams_team_id_schedules { label: "Create/Update given duty schedule." provider: signl4 method: POST path: "/teams/{teamId}/schedules" encoding: json input: { type: "object" properties: { end: { type: "string" format: "date-time" } id: { type: "string" } options: { type: "integer" format: "int32" } start: { type: "string" format: "date-time" } teamId: { type: "string" } userId: { type: "string" } } required: ["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 } }