action bigoven_review_post { label: "Add a new review. Only one review can be provided per {userId, recipeId} pair. Otherwise your review will be updated." provider: bigoven method: POST path: "/recipe/{recipeId}/review" 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." } recipeId: { type: "integer" format: "int32" } } required: ["recipeId"] additionalProperties: false } output: { type: "object" properties: {} } }