action bigoven_review_put { label: "Update a given top-level review." provider: bigoven method: PUT path: "/recipe/review/{reviewId}" encoding: form input: { type: "object" properties: { ActiveMinutes: { type: "integer" format: "int32" description: "How many minutes of ACTIVE time (i.e., actively working on the recipe, not waiting for rising, baking, etc.) did it \n demand of the cook? Optional." } Comment: { type: "string" description: "The notes" } MakeAgain: { type: "string" description: "\"yes\" or \"no\"" } StarRating: { type: "integer" format: "int32" description: "1, 2, 3, 4, or 5" } TotalMinutes: { type: "integer" format: "int32" description: "How long, start to finish, in minutes (integer) did it take? Optional." } reviewId: { type: "string" } } required: ["reviewId"] additionalProperties: false } output: { type: "object" } }