action bigoven_review_get_reviews { label: "Get paged list of reviews for a recipe. Each review will have at most one FeaturedReply, as well as a ReplyCount." provider: bigoven method: GET path: "/recipe/{recipeId}/reviews" encoding: json input: { type: "object" properties: { pg: { type: "integer" format: "int32" } recipeId: { type: "integer" format: "int32" } rpp: { type: "integer" format: "int32" } } required: ["recipeId"] additionalProperties: false } output: { type: "array" } }